@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;1,400;1,600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --teal:        #0D6E6E;
  --teal-mid:    #0F8080;
  --teal-light:  #14A5A5;
  --teal-pale:   #E0F4F4;
  --teal-glow:   rgba(13, 110, 110, 0.15);

  --cream:       #FAF7F2;
  --cream-dark:  #F2EDE4;
  --cream-deep:  #E8E0D4;
  --parchment:   #EDE8DF;

  --warm-brown:  #5C4A3A;
  --warm-mid:    #7A6352;
  --muted:       #9A8A7A;
  --rule:        #DDD6CC;

  --ink:         #1A1A18;
  --ink-soft:    #2C2C28;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-accent:  'Lora', serif;

  --radius:    10px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 24px rgba(90,70,50,0.08);
  --shadow-md:   0 12px 40px rgba(90,70,50,0.12);
  --shadow-teal: 0 8px 32px rgba(13,110,110,0.25);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 10px; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad { padding: 110px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-title .light { font-weight: 400; }

.section-sub {
  font-size: 1.05rem;
  color: var(--warm-mid);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ---------- Organic shape helper ---------- */
.blob {
  position: absolute;
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  border: 2px solid var(--teal);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-teal:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}
.btn-teal svg { transition: transform 0.3s; }
.btn-teal:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 100px;
  border: 2px solid var(--teal);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
}

.btn-soft {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-pale);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-soft:hover { background: var(--cream-deep); transform: translateY(-2px); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 2px 20px rgba(90,70,50,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--teal); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--warm-mid);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--teal); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--teal); }
.mobile-close { position: absolute; top: 22px; right: 28px; font-size: 1.4rem; color: var(--warm-mid); cursor: pointer; transition: color var(--transition); }
.mobile-close:hover { color: var(--teal); }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* Organic background blobs */
.hero-blob-1 {
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, var(--teal-pale) 0%, transparent 70%);
  top: -100px; right: -150px;
  opacity: 0.7;
}
.hero-blob-2 {
  width: 400px; height: 350px;
  background: radial-gradient(ellipse, var(--cream-deep) 0%, transparent 70%);
  bottom: -80px; left: -100px;
  opacity: 0.8;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-breath {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-breath::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--teal);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-title .thin { font-weight: 400; }

.hero-desc {
  font-size: 1.08rem;
  color: var(--warm-mid);
  line-height: 1.85;
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-reassure {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.reassure-icon { color: var(--teal); font-size: 1rem; }

/* Hero right — image card */
.hero-right { position: relative; }
.hero-img-card {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--parchment);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.82rem;
}
.hero-img-placeholder svg { opacity: 0.25; }

/* Floating quote card */
.hero-quote-card {
  position: absolute;
  bottom: -20px; left: -28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  max-width: 230px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
}
.hero-quote-text {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.5;
  margin-bottom: 10px;
}
.hero-quote-name { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* Floating status pill */
.hero-status-pill {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-teal);
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #6EE7B7; box-shadow: 0 0 8px #6EE7B7; }
.status-text { font-size: 0.75rem; font-weight: 600; }

/* ===========================
   RECOGNITION STRIP
   =========================== */
.recognition {
  background: var(--cream-dark);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.recognition-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.recognition-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.recognition-divider { width: 1px; height: 28px; background: var(--rule); }
.recognition-item { display: flex; align-items: center; gap: 8px; }
.recognition-item-text { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--warm-brown); }

/* ===========================
   "DO YOU FEEL THIS?" SECTION
   (Emotional mirror — the conversion engine)
   =========================== */
.mirror { background: var(--teal); position: relative; overflow: hidden; }
.mirror::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.mirror-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mirror-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.mirror-heading em { font-style: italic; color: var(--teal-pale); }
.mirror-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 300; margin-bottom: 36px; }

.feelings-list { display: flex; flex-direction: column; gap: 14px; }
.feeling-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: var(--transition);
}
.feeling-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
.feeling-emoji { font-size: 1.3rem; flex-shrink: 0; }
.feeling-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.4; }
.feeling-text strong { color: var(--white); }

.mirror-cta-text { font-size: 1.05rem; font-family: var(--font-accent); font-style: italic; color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.6; }

/* ===========================
   ABOUT SECTION
   =========================== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-box {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--parchment);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); font-size: 0.82rem; }
.about-img-placeholder svg { opacity: 0.25; }

.about-cert-badge {
  position: absolute;
  top: 28px; right: -20px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-teal);
  min-width: 110px;
}
.cert-icon-wrap { font-size: 1.6rem; margin-bottom: 6px; }
.cert-badge-text { font-size: 0.7rem; font-weight: 600; line-height: 1.3; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.08em; }

.about-story-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  max-width: 200px;
  box-shadow: var(--shadow-soft);
}
.story-card-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--teal); line-height: 1; }
.story-card-text { font-size: 0.75rem; color: var(--muted); margin-top: 4px; line-height: 1.4; }

.about-story-para { font-size: 0.95rem; color: var(--warm-mid); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.about-story-para strong { color: var(--warm-brown); font-weight: 600; }

.about-certs { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.cert-tag {
  font-size: 0.72rem; font-weight: 600;
  color: var(--teal); background: var(--teal-pale);
  border: 1px solid rgba(13,110,110,0.15);
  padding: 5px 12px; border-radius: 100px;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services { background: var(--cream-dark); }
.services-top { text-align: center; margin-bottom: 64px; }
.services-top .section-sub { margin: 0 auto; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--teal); border-color: var(--teal); }
.service-card.featured::after { background: var(--teal-pale); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card.featured .service-icon { background: rgba(255,255,255,0.15); }
.service-card:hover:not(.featured) .service-icon { background: var(--teal); }

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-card.featured .service-name { color: var(--white); }

.service-desc { font-size: 0.86rem; color: var(--warm-mid); line-height: 1.7; margin-bottom: 24px; font-weight: 300; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.7); }

.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--warm-mid); }
.service-list-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.service-card.featured .service-list-item { color: rgba(255,255,255,0.75); }
.service-card.featured .service-list-item::before { background: var(--teal-pale); }

/* ===========================
   PROCESS SECTION
   =========================== */
.process { background: var(--cream); }
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-sub { margin: 0 auto; text-align: center; }

.process-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--teal) 0, var(--teal) 8px, transparent 8px, transparent 16px);
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  margin-bottom: 44px;
  align-items: flex-start;
}
.process-step:last-child { margin-bottom: 0; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step.active .step-num {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.step-body { padding-top: 12px; }
.step-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step-desc { font-size: 0.88rem; color: var(--warm-mid); line-height: 1.7; font-weight: 300; }
.step-tag {
  display: inline-block; margin-top: 10px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--teal); background: var(--teal-pale);
  padding: 4px 12px; border-radius: 100px;
}

/* ===========================
   TRANSFORMATIONS
   =========================== */
.transformations { background: var(--cream-dark); }
.transformations-header { margin-bottom: 56px; }

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.transform-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
}
.transform-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.transform-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
}
.transform-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.transform-role { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.transform-story { font-size: 0.87rem; color: var(--warm-mid); line-height: 1.72; font-style: italic; font-family: var(--font-accent); margin-bottom: 20px; }
.transform-result {
  font-size: 0.78rem; font-weight: 600;
  color: var(--teal); background: var(--teal-pale);
  border: 1px solid rgba(13,110,110,0.15);
  padding: 6px 14px; border-radius: 100px;
  display: inline-block;
}
.transform-weeks { font-size: 0.72rem; color: var(--muted); margin-top: 6px; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--parchment); }
.testimonials-header { text-align: center; margin-bottom: 60px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--teal-pale); box-shadow: var(--shadow-soft); }
.t-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.t-star { color: var(--teal-light); font-size: 0.9rem; }
.t-text {
  font-family: var(--font-accent);
  font-size: 0.93rem;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.78;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.t-role { font-size: 0.73rem; color: var(--muted); margin-top: 2px; }

/* ===========================
   PRICING
   =========================== */
.pricing { background: var(--cream); }
.pricing-header { text-align: center; margin-bottom: 64px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-3px); }

.p-plan { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.pricing-card.featured .p-plan { color: rgba(255,255,255,0.65); }

.p-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.p-currency { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.p-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 600; color: var(--ink); line-height: 1; }
.p-period { font-size: 0.84rem; color: var(--muted); }
.pricing-card.featured .p-currency,
.pricing-card.featured .p-num { color: var(--white); }
.pricing-card.featured .p-period { color: rgba(255,255,255,0.5); }

.p-desc { font-size: 0.84rem; color: var(--warm-mid); margin-bottom: 24px; line-height: 1.6; font-weight: 300; }
.pricing-card.featured .p-desc { color: rgba(255,255,255,0.6); }

.p-divider { height: 1px; background: var(--rule); margin: 20px 0; }
.pricing-card.featured .p-divider { background: rgba(255,255,255,0.15); }

.p-features { display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 28px; }
.p-feature { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--warm-mid); }
.p-feature svg { color: var(--teal); flex-shrink: 0; }
.p-feature.off { color: var(--muted); opacity: 0.5; }
.p-feature.off svg { color: var(--rule); }
.pricing-card.featured .p-feature { color: rgba(255,255,255,0.8); }
.pricing-card.featured .p-feature.off { color: rgba(255,255,255,0.3); }
.pricing-card.featured .p-feature svg { color: rgba(255,255,255,0.7); }

.p-btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.p-btn-white { background: var(--white); color: var(--teal); border: 2px solid var(--white); border-radius: 100px; padding: 14px 28px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.p-btn-white:hover { background: var(--teal-pale); color: var(--teal); }

/* ===========================
   FAQ
   =========================== */
.faq { background: var(--cream-dark); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 90px; align-items: start; }
.faq-left { position: sticky; top: 110px; }
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }

.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; user-select: none; }
.faq-q-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--ink); flex: 1; padding-right: 16px; line-height: 1.3; }
.faq-btn { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--muted); font-size: 1.1rem; transition: var(--transition); }
.faq-item.open .faq-btn { background: var(--teal); border-color: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-item.open .faq-q-text { color: var(--teal); }

.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-ans { max-height: 220px; }
.faq-ans p { padding: 0 0 22px; font-size: 0.88rem; color: var(--warm-mid); line-height: 1.78; font-weight: 300; }

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 90px; align-items: start; }

.contact-warmup {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--warm-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.c-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.c-detail { display: flex; align-items: flex-start; gap: 14px; }
.c-icon { width: 40px; height: 40px; border-radius: var(--radius); background: var(--teal-pale); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.c-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.c-value { font-size: 0.9rem; color: var(--ink); font-weight: 500; }

.social-row { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: var(--radius); border: 1.5px solid var(--rule); display: flex; align-items: center; justify-content: center; color: var(--warm-mid); transition: var(--transition); }
.social-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }

/* Form */
.contact-form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-xl); padding: 48px 40px; box-shadow: var(--shadow-soft); }
.form-headline { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.2; }
.form-subline { font-size: 0.84rem; color: var(--muted); margin-bottom: 32px; font-weight: 300; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-mid); }
.form-input, .form-select, .form-textarea {
  background: var(--cream);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); font-weight: 300; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-error { display: none; background: #FEF2F2; border: 1px solid #FECACA; border-radius: var(--radius); padding: 12px 16px; font-size: 0.84rem; color: #DC2626; margin-bottom: 14px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 0.92rem; margin-top: 4px; }

.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }
.success-heading { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.success-body { font-size: 0.87rem; color: var(--warm-mid); line-height: 1.7; font-weight: 300; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--ink); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer-logo span { font-style: italic; color: var(--teal-light); }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.38); line-height: 1.7; font-weight: 300; max-width: 250px; }
.footer-col-title { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }
.footer-copy span { color: var(--teal-light); }

/* ===========================
   ANIMATIONS
   =========================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.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; }

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

.hero-breath  { animation: fadeUp 0.6s ease both 0.1s; }
.hero-title   { animation: fadeUp 0.6s ease both 0.25s; }
.hero-desc    { animation: fadeUp 0.6s ease both 0.38s; }
.hero-actions { animation: fadeUp 0.6s ease both 0.5s; }
.hero-reassure { animation: fadeUp 0.6s ease both 0.6s; }
.hero-right   { animation: fadeIn 0.9s ease both 0.3s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-quote-card { left: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { max-width: 420px; }
  .mirror-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .transform-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .nav-links { display: none; }
  .navbar .btn-teal { display: none; }
  .hamburger { display: flex; }
  .recognition-inner { gap: 24px; }
  .recognition-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-status-pill { right: 0; }
  .process-timeline::before { left: 27px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .btn-teal, .btn-outline { width: 100%; justify-content: center; }
  .hero-quote-card { display: none; }
}