/* ===== Trained By Angelina – Premium Light Theme ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f8fa;
  --color-bg-card: #ffffff;
  --color-surface: #ffffff;
  --color-surface-hover: #f0f4f6;
  --color-text: #1a1d21;
  --color-text-muted: #6b7280;
  --color-accent: #3eabc8;
  --color-accent-hover: #329ab5;
  --color-accent-light: #e8f6fa;
  --color-accent-glow: rgba(62, 171, 200, 0.12);
  --color-border: rgba(0, 0, 0, 0.07);
  --color-border-accent: rgba(62, 171, 200, 0.25);
  --color-header-bg: rgba(10, 10, 10, 1);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --container: min(92vw, 1140px);
  --container-wide: min(94vw, 1200px);
  --container-narrow: min(92vw, 600px);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 4px 30px rgba(62, 171, 200, 0.12);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== HEADER (stays dark for contrast over hero) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-header-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  padding: 0.6rem var(--space-lg);
  background: rgba(10, 10, 10, 1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  height: 76px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  transition: height 0.3s ease;
}

.scrolled .logo img {
  height: 56px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav-cta {
  color: var(--color-accent) !important;
  background: rgba(62, 171, 200, 0.12);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 171, 200, 0.25);
  letter-spacing: 0.06em !important;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--color-accent) !important;
  color: #fff !important;
  border-color: var(--color-accent) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-2xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      rgba(0, 0, 0, 0.1) 55%,
      rgba(255, 255, 255, 0.55) 72%,
      rgba(255, 255, 255, 0.97) 100%),
    url(assets/angelina-hero.jpg) center 20% / cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 700px;
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-lg);
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(62, 171, 200, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-border-accent);
}

.btn-outline-accent:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(62, 171, 200, 0.25);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
}

/* ===== PHOTO SHOWCASE (homepage) ===== */
.photo-showcase {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.photo-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-grid-item:hover img {
  transform: scale(1.05);
}

.photo-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 40%);
  pointer-events: none;
  transition: opacity var(--transition);
}

.photo-grid-item:hover::after {
  opacity: 0.6;
}

/* ===== SPLIT SECTION (image + text) ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  gap: 0;
  background: var(--color-bg-soft);
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, var(--color-bg-soft) 100%);
  pointer-events: none;
}

.split-image--right::after {
  background: linear-gradient(270deg, transparent 70%, var(--color-bg-soft) 100%);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) var(--space-2xl);
}

/* ===== INTRO / ABOUT SECTIONS ===== */
.intro-section {
  background: var(--color-bg);
  text-align: center;
}

.intro-section .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* ===== PAGE HERO (shared by pricing, contact) ===== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(100px + var(--space-xl)) var(--space-xl) var(--space-xl);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  text-align: center;
}

.pricing-hero-bg {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.5) 40%,
      rgba(255, 255, 255, 0.92) 100%),
    url(assets/angelina-bench3.jpg) center 30% / cover no-repeat;
}

.contact-hero-bg {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.5) 40%,
      rgba(255, 255, 255, 0.92) 100%),
    url(assets/angelina-back.jpg) center 30% / cover no-repeat;
}

/* ===== ABOUT PAGE - HERO WITH BACKGROUND ===== */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(100px + var(--space-xl)) var(--space-xl) var(--space-xl);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.5) 40%,
      rgba(255, 255, 255, 0.92) 100%),
    url(assets/angelina-pullup.jpg) center 30% / cover no-repeat;
}

.about-hero-content {
  position: relative;
  text-align: center;
}

/* ===== APPROACH ===== */
.approach {
  background: var(--color-bg);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.approach-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-content .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.approach-content p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.8;
}

.approach-content p:last-child {
  margin-bottom: 0;
}

.approach-content em {
  font-style: italic;
  color: var(--color-text);
}

.approach-content strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* ===== PRINCIPLES ===== */
.principles {
  background: var(--color-bg-soft);
  position: relative;
}

.principles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.principles-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.principle-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(62, 171, 200, 0.2));
  opacity: 0;
  transition: opacity var(--transition);
}

.principle-card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover), var(--shadow-glow);
}

.principle-card:hover::before {
  opacity: 1;
}

.principle-icon {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  padding: 0.35rem 0.85rem;
  background: var(--color-accent-light);
  border-radius: 6px;
}

.principle-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}

.principle-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ===== OFFER ===== */
.offer {
  background: var(--color-bg);
  position: relative;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offer-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.offer-item:last-child {
  border-bottom: none;
}

.offer-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  min-width: 50px;
}

.offer-item h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}

.offer-item p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== BEYOND THE GYM ===== */
.beyond {
  background: var(--color-bg-soft);
  position: relative;
}

.beyond::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.beyond-intro {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.beyond-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.beyond-list li {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.beyond-list li:hover {
  border-left-color: var(--color-accent-hover);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.beyond-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.beyond-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--color-bg-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 171, 200, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
}

.cta-banner .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ===== INSTAGRAM LINK ===== */
.instagram-strip {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-bg);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.instagram-link:hover {
  color: var(--color-accent);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== PRICING PAGE ===== */
/* old pricing-hero overrides removed - now uses .page-hero */

.pricing-section {
  background: var(--color-bg);
  padding: var(--space-2xl) var(--space-xl);
}

.pricing-section .section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

.pricing-section .pricing-location {
  margin-bottom: var(--space-lg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.pricing-cards:last-of-type {
  margin-bottom: 0;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(62, 171, 200, 0.15));
  transition: height 0.3s ease;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(62, 171, 200, 0.03) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pricing-card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(62, 171, 200, 0.1);
}

.pricing-card:hover::before {
  height: 4px;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card--featured {
  border-color: var(--color-border-accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(62, 171, 200, 0.12);
  background: linear-gradient(180deg, var(--color-accent-light) 0%, var(--color-bg-card) 50%);
  transform: scale(1.02);
}

.pricing-card--featured::before {
  height: 4px;
  background: var(--color-accent);
}

.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(62, 171, 200, 0.15);
}

.pricing-card__badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-accent-light);
  border-radius: 6px;
  width: fit-content;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-xs);
}

.pricing-card__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.25rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__price-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  flex-grow: 1;
}

.pricing-card__list li {
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* ===== TIP HERO BANNER ===== */
.tip-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
}

.tip-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(163, 220, 240, 0.06) 0%, transparent 50%),
              #000000;
}

.tip-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 600px;
  width: 100%;
}

.tip-hero-logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== ONLINE COACHING SECTION (The Innovate Project) ===== */
.online-coaching-section {
  background: #050508;
  padding: var(--space-2xl) var(--space-xl) var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.online-coaching-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(163, 220, 240, 0.3) 50%, transparent 90%);
  z-index: 3;
}

.online-coaching-section::after {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(37, 167, 210, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tip-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 90vw;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.tip-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.tip-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.tip-inline-logo {
  display: block;
  margin: 0 auto var(--space-md);
  max-width: 380px;
  width: 100%;
  height: auto;
}

.online-coaching-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.75rem;
}

/* ===== ONLINE COACHING CARDS (split header/body) ===== */
.oc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: start;
}

.oc-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.oc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* --- Card header (coloured gradient) --- */
.oc-card__header {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  position: relative;
}

.oc-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: var(--space-xs);
}

.oc-card__name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.oc-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.oc-card__price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0;
  margin-left: 0.35rem;
}

.oc-card__desc {
  font-size: 0.8125rem;
  opacity: 0.6;
  margin: 0;
  font-weight: 500;
}

/* --- Card body (dark) --- */
.oc-card__body {
  background: #0c0c10;
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.oc-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  flex-grow: 1;
}

.oc-card__list li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  line-height: 1.5;
}

.oc-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* --- CTA button (base) --- */
.oc-card__btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  border-radius: var(--radius) !important;
  font-size: 0.8rem !important;
  padding: 0.85rem 1.5rem !important;
  letter-spacing: 0.08em !important;
}

/* ===== GOLD ===== */
.oc-header--gold {
  background: linear-gradient(135deg, #D4A030 0%, #E8B84A 30%, #FFD700 60%, #FFF1A8 100%);
  color: #1a1200;
}

.oc-card--gold .oc-card__list li::before {
  background: #FFD700;
  opacity: 0.5;
}

.oc-card--gold:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.06);
}

.oc-btn--gold {
  background: linear-gradient(135deg, #D4A030, #FFD700) !important;
  color: #1a1200 !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
}

.oc-btn--gold:hover {
  background: linear-gradient(135deg, #FFD700, #FFF1A8) !important;
  color: #1a1200 !important;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25) !important;
  transform: translateY(-2px);
}

/* ===== SILVER ===== */
.oc-header--silver {
  background: linear-gradient(135deg, #888 0%, #B0B0B0 30%, #D8D8D8 60%, #F0F0F0 100%);
  color: #1a1a1a;
}

.oc-card--silver .oc-card__list li::before {
  background: #C0C0C0;
  opacity: 0.4;
}

.oc-card--silver:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(192, 192, 192, 0.04);
}

.oc-btn--silver {
  background: transparent !important;
  color: rgba(192, 192, 192, 0.7) !important;
  border: 1px solid rgba(192, 192, 192, 0.2) !important;
  font-weight: 600 !important;
}

.oc-btn--silver:hover {
  background: rgba(192, 192, 192, 0.08) !important;
  color: #E0E0E0 !important;
  border-color: rgba(192, 192, 192, 0.35) !important;
  transform: translateY(-2px);
}

/* ===== BRONZE ===== */
.oc-header--bronze {
  background: linear-gradient(135deg, #8B5E34 0%, #B07840 30%, #CD7F32 60%, #EDCBA0 100%);
  color: #1a1000;
}

.oc-card--bronze .oc-card__list li::before {
  background: #CD7F32;
  opacity: 0.4;
}

.oc-card--bronze:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(205, 127, 50, 0.04);
}

.oc-btn--bronze {
  background: transparent !important;
  color: rgba(205, 127, 50, 0.7) !important;
  border: 1px solid rgba(205, 127, 50, 0.2) !important;
  font-weight: 600 !important;
}

.oc-btn--bronze:hover {
  background: rgba(205, 127, 50, 0.08) !important;
  color: #E8A860 !important;
  border-color: rgba(205, 127, 50, 0.35) !important;
  transform: translateY(-2px);
}

/* bottom note */
.online-coaching-note {
  margin-top: var(--space-xl);
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

.online-coaching-note-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 var(--space-xs);
}

.online-coaching-note p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.7;
}

/* ===== TIP MOBILE ===== */
@media (max-width: 768px) {
  .tip-hero {
    min-height: 30vh;
  }

  .tip-hero-content {
    padding: var(--space-lg) var(--space-md);
  }

  .tip-hero-logo {
    max-width: 300px;
  }

  .online-coaching-section {
    padding: var(--space-xl) var(--space-md) var(--space-2xl);
  }

  .tip-inline-logo {
    max-width: 260px;
  }

  .tip-watermark {
    width: 600px;
  }

  .oc-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tip-hero {
    min-height: 25vh;
  }

  .tip-hero-logo {
    max-width: 240px;
  }

  .tip-inline-logo {
    max-width: 200px;
  }

  .oc-card__price {
    font-size: 2rem;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  background: var(--color-bg-soft);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(100px + var(--space-xl)) var(--space-lg) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.contact-page::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(62, 171, 200, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-page::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 171, 200, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-page .container {
  width: 100%;
  position: relative;
}

.contact-block {
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(62, 171, 200, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.contact-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(62, 171, 200, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.contact-block .section-label {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.contact-block .section-title {
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.contact-intro {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.contact-actions .btn {
  width: 100%;
  text-align: center;
  padding: 1.1rem 1.5rem;
  font-size: 0.8125rem;
}

.contact-actions .btn-primary {
  box-shadow: 0 4px 16px rgba(62, 171, 200, 0.2);
}

.contact-actions .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(62, 171, 200, 0.35);
}

/* ===== TERMS PAGE ===== */
.terms-page {
  background: var(--color-bg-soft);
}

.terms-section {
  background: var(--color-bg);
  padding: var(--space-2xl) var(--space-xl);
}

.terms-content {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  background: var(--color-bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  line-height: 1.7;
}

.terms-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: var(--space-xl) 0 var(--space-sm);
}

.terms-content h3:first-child {
  margin-top: 0;
}

.terms-content ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
  line-height: 1.7;
}

.terms-content li {
  margin-bottom: var(--space-xs);
}

.terms-content li:last-child {
  margin-bottom: 0;
}

.terms-content strong {
  color: var(--color-text);
}

/* ===== FOOTER (stays dark for contrast) ===== */
.site-footer {
  background: #111214;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  border-top: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-logo-link {
  display: block;
  line-height: 0;
}

.footer-logo {
  display: block;
  height: 84px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-heading);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-cta {
  color: var(--color-accent) !important;
  font-weight: 600 !important;
}

.footer-cta:hover {
  color: var(--color-accent-hover) !important;
}

.footer-bottom {
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }

  .logo img {
    height: 54px;
    max-width: 260px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 200;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    padding: 120px var(--space-2xl) var(--space-2xl);
    gap: 0;
    background: rgba(8, 8, 8, 0.98);
    z-index: 99;
    align-items: center;
    justify-content: center;
  }

  .nav.is-open a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
  }

  .nav.is-open a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open a:hover,
  .nav.is-open a.active {
    color: var(--color-accent);
  }

  .nav.is-open .nav-cta {
    margin-top: var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--color-accent);
    color: #ffffff !important;
    padding: var(--space-sm) var(--space-xl);
    border-radius: 100px;
    border: none;
    border-bottom: none;
    width: auto;
  }

  .nav.is-open .nav-cta:hover {
    background: var(--color-accent-hover);
    color: #ffffff !important;
  }

  .hero {
    min-height: 100svh;
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-xl);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: var(--space-2xl) var(--space-md);
  }

  .about-hero,
  .page-hero {
    min-height: 40vh;
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-lg);
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .approach-image {
    max-height: 400px;
  }

  .beyond-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .beyond-image {
    order: -1;
    max-height: 350px;
  }

  .split-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-image {
    height: 350px;
  }

  .split-image::after {
    background: linear-gradient(180deg, transparent 60%, var(--color-bg-soft) 100%);
  }

  .split-image--right::after {
    background: linear-gradient(180deg, transparent 60%, var(--color-bg-soft) 100%);
  }

  .split-content {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    align-items: center;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-item {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .offer-number {
    font-size: 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: center;
  }

  .contact-page {
    padding: calc(80px + var(--space-lg)) var(--space-sm) var(--space-xl);
  }

  .contact-block {
    padding: var(--space-xl) var(--space-md);
  }

  .pricing-section {
    padding: var(--space-xl) var(--space-md);
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .pricing-card {
    padding: var(--space-lg);
  }
}
