/* ==========================================================================
   Hypnotherapy for Nail Biting — Vibha Jain
   Premium custom stylesheet  |  Designed & Managed by Creaa Designs
   Visual language: "Organic Calm" — sage + deep navy + soft gold,
   ivory canvases, lavender accents, blob/leaf masks, glassmorphism.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --ivory:        #FBF9F5;
  --ivory-2:      #F4EEE4;
  --beige:        #E9DEC9;
  --beige-soft:   #F0E9DC;
  --sage:         #8FA68E;
  --sage-deep:    #5E7A66;
  --sage-darker:  #3F5A48;
  --navy:         #16242F;
  --navy-2:       #1E3340;
  --navy-soft:    #2C4656;
  --gold:         #C6A15B;
  --gold-soft:    #DDC089;
  --lavender:     #B7AEDB;
  --lavender-deep:#8C80B8;
  --ink:          #243038;
  --muted:        #66726F;
  --line:         rgba(94,122,102,.18);
  --white:        #ffffff;

  --grad-hero:   linear-gradient(135deg, #16242F 0%, #2C4656 55%, #3F5A48 100%);
  --grad-sage:   linear-gradient(135deg, #5E7A66 0%, #8FA68E 100%);
  --grad-gold:   linear-gradient(135deg, #C6A15B 0%, #DDC089 100%);
  --grad-soft:   linear-gradient(160deg, #FBF9F5 0%, #F0E9DC 100%);

  --shadow-sm:  0 6px 18px rgba(22,36,47,.07);
  --shadow-md:  0 18px 44px rgba(22,36,47,.12);
  --shadow-lg:  0 34px 80px rgba(22,36,47,.18);
  --shadow-gold:0 16px 40px rgba(198,161,91,.30);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-xl: 48px;

  --serif:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --display:"Playfair Display", Georgia, serif;
  --sans:   "Manrope", "Inter", system-ui, sans-serif;

  --ease:  cubic-bezier(.22,.61,.36,1);
  --container: 1200px;
}

/* ---------- Reset / Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1.02rem;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul { list-style: none; }
section { position: relative; }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--navy); letter-spacing: .2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
p { color: var(--muted); }
strong { color: var(--ink); font-weight: 700; }

.container-x { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }

/* ---------- Utility ---------- */
.bg-ivory   { background: var(--ivory); }
.bg-soft    { background: var(--grad-soft); }
.bg-beige   { background: var(--beige-soft); }
.bg-navy    { background: var(--navy); color: #e9eef0; }
.bg-navy h2,.bg-navy h3 { color: #fff; }
.bg-sage    { background: var(--grad-sage); color: #fff; }
.text-center{ text-align: center; }
.mw-720 { max-width: 720px; }
.mw-820 { max-width: 820px; }
.mx-auto2 { margin-left: auto; margin-right: auto; }

/* ---------- Eyebrow / Headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.bg-navy .eyebrow, .bg-sage .eyebrow { color: var(--gold-soft); }

.section-title { margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--sage-deep); }
.bg-navy .section-title em, .bg-sage .section-title em { color: var(--gold-soft); }
.lead { font-size: 1.12rem; color: var(--muted); }
.bg-navy .lead { color: #c4d0cf; }

.divider-leaf { display:flex; align-items:center; justify-content:center; gap:14px; margin: 22px 0; }
.divider-leaf span { height:1px; width:56px; background: var(--line); }
.divider-leaf i { color: var(--gold); font-size: .9rem; }

/* ---------- Buttons ---------- */
.btn-x {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  padding: 15px 32px; border-radius: 60px; border: none; cursor: pointer;
  position: relative; transition: all .4s var(--ease); letter-spacing: .2px;
  text-align: center;
}
.btn-x i { transition: transform .4s var(--ease); }
.btn-primary-x { background: var(--grad-gold); color: #2a2410; box-shadow: var(--shadow-gold); }
.btn-primary-x:hover { transform: translateY(-3px); color:#2a2410; box-shadow: 0 22px 50px rgba(198,161,91,.42); }
.btn-primary-x:hover i { transform: translateX(5px); }
.btn-dark-x { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark-x:hover { background: var(--navy-soft); color:#fff; transform: translateY(-3px); }
.btn-ghost-x { background: transparent; color: var(--navy); border: 1.6px solid rgba(22,36,47,.22); }
.btn-ghost-x:hover { border-color: var(--sage-deep); color: var(--sage-deep); transform: translateY(-3px); }
.bg-navy .btn-ghost-x, .bg-sage .btn-ghost-x { color:#fff; border-color: rgba(255,255,255,.4); }
.bg-navy .btn-ghost-x:hover, .bg-sage .btn-ghost-x:hover { border-color:#fff; color:#fff; background: rgba(255,255,255,.08); }
.btn-sm-x { padding: 11px 22px; font-size: .85rem; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav-x {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: all .45s var(--ease);
}
.nav-x.scrolled {
  padding: 12px 0;
  background: rgba(251,249,245,.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 30px rgba(22,36,47,.08);
  border-bottom: 1px solid rgba(94,122,102,.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand-x { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50% 50% 50% 12px;
  background: var(--grad-sage); display: grid; place-items: center;
  color: #fff; font-family: var(--display); font-size: 1.35rem; font-weight: 700;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease);
}
.brand-x:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-text { line-height: 1.1; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.brand-sub  { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sage-deep); font-weight: 700; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  position: relative; font-weight: 600; font-size: .95rem; color: var(--navy);
  padding: 10px 16px; border-radius: 30px; transition: color .3s var(--ease);
}
.nav-menu a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease); border-radius: 2px;
}
.nav-menu a:hover { color: var(--sage-deep); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--sage-deep); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 46px; height: 46px; border-radius: 12px; position: relative;
  background: rgba(94,122,102,.1);
}
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2.2px; background: var(--navy); border-radius: 2px; transition: all .35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 4000; background: var(--ivory);
  display: grid; place-items: center; transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid rgba(94,122,102,.18); border-top-color: var(--sage-deep);
  animation: spin .9s linear infinite;
}
.loader-text { position:absolute; margin-top: 110px; font-family: var(--serif); font-style: italic; color: var(--sage-deep); letter-spacing: .12em; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   HERO (home + page heroes)
   ========================================================================== */
.hero {
  position: relative; padding: clamp(140px, 18vw, 200px) 0 clamp(80px,10vw,120px);
  background: var(--grad-soft); overflow: hidden;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .4; z-index: 0; }
.hero-blob.b1 { width: 420px; height: 420px; background: var(--sage); top: -100px; right: -80px; }
.hero-blob.b2 { width: 360px; height: 360px; background: var(--lavender); bottom: -120px; left: -80px; opacity:.3; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--sage-deep); }
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--serif); font-size: 1.9rem; color: var(--navy); line-height: 1; }
.hero-trust .ht span { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.hero-trust .sep { width: 1px; height: 38px; background: var(--line); }

.hero-visual { position: relative; }
.hero-img-main {
  border-radius: 46% 54% 48% 52% / 58% 42% 58% 42%;
  overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  border: 6px solid #fff;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-badge {
  position: absolute; background: rgba(251,249,245,.85); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--r-md); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px;
}
.hero-badge i { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-sage); color: #fff; display: grid; place-items: center; font-size: 1.05rem; }
.hero-badge b { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--navy); }
.hero-badge span { font-size: .76rem; color: var(--muted); }
.hero-badge.hb1 { bottom: 30px; left: -28px; animation: floatY 6s ease-in-out infinite; }
.hero-badge.hb2 { top: 36px; right: -24px; animation: floatY 7s ease-in-out infinite .6s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* page hero (interior) */
.page-hero {
  position: relative; padding: clamp(150px,18vw,210px) 0 clamp(60px,8vw,90px);
  background: var(--grad-hero); color: #fff; overflow: hidden; text-align: center;
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background: url("../images/session-clinic-1.jpg") center/cover; opacity: .12; mix-blend-mode: luminosity;
}
.page-hero .container-x { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold-soft); font-style: italic; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto; }
.breadcrumb-x { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 22px; font-size: .85rem; color: rgba(255,255,255,.7); }
.breadcrumb-x a:hover { color: var(--gold-soft); }
.breadcrumb-x i { font-size: .6rem; opacity: .6; }
.breadcrumb-x .cur { color: var(--gold-soft); }

/* ==========================================================================
   CARDS / GRIDS
   ========================================================================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card-x {
  background: #fff; border-radius: var(--r-md); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(94,122,102,.08);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); position: relative; overflow: hidden;
}
.card-x::before {
  content:""; position:absolute; top:0; left:0; width:100%; height:4px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card-x:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.card-x:hover::before { transform: scaleX(1); }
.card-ico {
  width: 60px; height: 60px; border-radius: 18px 18px 18px 6px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(143,166,142,.16), rgba(198,161,91,.16));
  color: var(--sage-deep); font-size: 1.5rem; margin-bottom: 20px; transition: all .5s var(--ease);
}
.card-x:hover .card-ico { background: var(--grad-sage); color: #fff; transform: rotate(-6deg); }
.card-x h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card-x p { font-size: .98rem; }

/* service card with image */
.svc-card {
  background:#fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(94,122,102,.08); transition: all .5s var(--ease); display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.svc-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.08); }
.svc-media .tag { position: absolute; top: 14px; left: 14px; background: rgba(22,36,47,.78); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding: 7px 14px; border-radius: 30px; backdrop-filter: blur(6px); }
.svc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.32rem; margin-bottom: 10px; }
.svc-body p { font-size: .96rem; flex: 1; }
.svc-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--sage-deep); font-weight: 700; font-size: .9rem; }
.svc-link i { transition: transform .4s var(--ease); }
.svc-card:hover .svc-link i { transform: translateX(5px); }

/* benefit chip card */
.benefit {
  display: flex; align-items: flex-start; gap: 16px; background: #fff; border-radius: var(--r-sm);
  padding: 22px 22px; box-shadow: var(--shadow-sm); border: 1px solid rgba(94,122,102,.08);
  transition: all .45s var(--ease);
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit i { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-gold); color: var(--navy); font-size: 1.2rem; }
.benefit h4 { font-size: 1.1rem; margin-bottom: 4px; font-family: var(--serif); }
.benefit p { font-size: .9rem; margin: 0; }

/* ==========================================================================
   ABOUT / SPLIT SECTIONS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--media-right { grid-template-columns: 1fr 1.05fr; }
.media-frame { position: relative; }
.media-frame img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }
.media-frame--blob img { border-radius: 56% 44% 47% 53% / 53% 50% 50% 47%; aspect-ratio: 1/1.05; object-fit: cover; object-position: top; border: 6px solid #fff; }
.media-frame .deco-ring { position: absolute; inset: -18px; border: 1.5px dashed rgba(198,161,91,.5); border-radius: inherit; z-index: -1; animation: spinSlow 38s linear infinite; }
.media-stat {
  position: absolute; bottom: 24px; right: -20px; background: var(--navy); color:#fff;
  border-radius: var(--r-md); padding: 18px 24px; box-shadow: var(--shadow-lg); text-align: center;
}
.media-stat b { font-family: var(--serif); font-size: 2.2rem; display: block; color: var(--gold-soft); line-height:1; }
.media-stat span { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.feature-list { margin-top: 26px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(94,122,102,.12); color: var(--sage-deep); display: grid; place-items: center; font-size: .8rem; margin-top: 3px; }
.feature-list b { font-family: var(--sans); }
.feature-list span { display:block; }
.feature-list .ft-sub { color: var(--muted); font-size: .92rem; }

.prose p { margin-bottom: 18px; }
.prose h3 { margin: 34px 0 12px; }
.prose h2 { margin: 40px 0 16px; }
.prose ul.bullets { margin: 16px 0 22px; display: grid; gap: 12px; }
.prose ul.bullets li { position: relative; padding-left: 30px; color: var(--muted); }
.prose ul.bullets li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--sage-deep); font-size: .85rem; }

/* ==========================================================================
   PROCESS / TIMELINE (How hypnotherapy helps)
   ========================================================================== */
.flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; margin-top: 40px; }
.flow-step { text-align: center; padding: 0 14px; position: relative; }
.flow-step .fnode {
  width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 50% 50% 50% 14px;
  background: #fff; border: 2px solid var(--line); display: grid; place-items: center;
  font-size: 1.7rem; color: var(--sage-deep); box-shadow: var(--shadow-sm); position: relative; z-index: 2;
  transition: all .5s var(--ease);
}
.flow-step:hover .fnode { background: var(--grad-sage); color:#fff; border-color: transparent; transform: translateY(-6px); }
.flow-step h4 { font-size: 1.1rem; margin-bottom: 6px; }
.flow-step p { font-size: .86rem; margin: 0; }
.flow-step:not(:last-child)::after {
  content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 30px; right: -12px; color: var(--gold); font-size: 1rem; z-index: 3;
}
.bg-navy .flow-step .fnode { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--gold-soft); }
.bg-navy .flow-step h4 { color:#fff; }
.bg-navy .flow-step p { color: #c4d0cf; }

/* vertical timeline */
.timeline { position: relative; max-width: 820px; margin: 40px auto 0; }
.timeline::before { content:""; position:absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--sage), var(--gold)); }
.tl-item { position: relative; padding: 0 0 36px 76px; }
.tl-item .tl-dot { position: absolute; left: 12px; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--grad-gold); color: var(--navy); display: grid; place-items: center; font-weight: 800; font-size: .9rem; box-shadow: var(--shadow-sm); z-index: 2; }
.tl-item h4 { font-size: 1.25rem; margin-bottom: 6px; }
.tl-item p { margin: 0; }

/* ==========================================================================
   COUNTERS
   ========================================================================== */
.counters { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.counter { text-align: center; padding: 30px 18px; border-radius: var(--r-md); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.counter b { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.4rem); color: var(--gold-soft); display: block; line-height: 1; }
.counter span { font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; color: #c4d0cf; margin-top: 8px; display: block; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.tcard {
  background: rgba(255,255,255,.55); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--r-md);
  padding: 32px 30px; box-shadow: var(--shadow-sm); transition: all .5s var(--ease); position: relative;
  display: flex; flex-direction: column; height: 100%;
}
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.tcard .quote-mark { font-family: var(--display); font-size: 3.6rem; color: var(--sage); opacity: .35; line-height: .6; }
.tcard .stars { color: var(--gold); font-size: .9rem; margin: 6px 0 14px; letter-spacing: 2px; }
.tcard p { color: var(--ink); font-size: 1rem; flex: 1; font-style: italic; }
.tcard .tperson { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.tcard .tav { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-sage); color:#fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.2rem; flex:none; }
.tcard .tperson b { display: block; font-family: var(--serif); font-size: 1.08rem; color: var(--navy); }
.tcard .tperson span { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   ACCORDION / FAQ
   ========================================================================== */
.acc { max-width: 880px; margin: 0 auto; }
.acc-item { background: #fff; border: 1px solid rgba(94,122,102,.12); border-radius: var(--r-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow .4s var(--ease), border-color .4s; }
.acc-item.open { box-shadow: var(--shadow-md); border-color: rgba(198,161,91,.4); }
.acc-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; gap: 18px; font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--navy); }
.acc-q .qmark { flex: none; width: 34px; height: 34px; border-radius: 50%; background: rgba(94,122,102,.12); color: var(--sage-deep); display: grid; place-items: center; transition: all .4s var(--ease); }
.acc-item.open .qmark { background: var(--grad-gold); color: var(--navy); transform: rotate(135deg); }
.acc-q .qmark i { font-size: .85rem; }
.acc-q span.qtext { flex: 1; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-a-inner { padding: 0 26px 24px 78px; color: var(--muted); }
.acc-a-inner p { margin-bottom: 12px; }

.faq-cat-title { font-size: 1.5rem; margin: 0 0 22px; display: flex; align-items: center; gap: 12px; }
.faq-cat-title i { color: var(--gold); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner { position: relative; background: var(--grad-hero); border-radius: var(--r-xl); padding: clamp(48px,7vw,80px); overflow: hidden; text-align: center; color: #fff; }
.cta-banner::before { content:""; position:absolute; width: 360px; height: 360px; border-radius:50%; background: var(--gold); filter: blur(90px); opacity:.25; top:-120px; right:-80px; }
.cta-banner::after { content:""; position:absolute; width: 320px; height: 320px; border-radius:50%; background: var(--sage); filter: blur(90px); opacity:.3; bottom:-120px; left:-80px; }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner h2 em { color: var(--gold-soft); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-info-card { background: var(--navy); color:#fff; border-radius: var(--r-lg); padding: 42px 38px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.contact-info-card::after { content:""; position:absolute; width:240px; height:240px; border-radius:50%; background: var(--sage); filter: blur(80px); opacity:.3; bottom:-100px; right:-80px; }
.contact-info-card > * { position: relative; z-index: 2; }
.contact-info-card h3 { color:#fff; margin-bottom: 8px; }
.contact-info-card .lead { color: #c4d0cf; margin-bottom: 28px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ci-row:last-of-type { border-bottom: none; }
.ci-row i { flex:none; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.08); color: var(--gold-soft); display: grid; place-items: center; font-size: 1.05rem; }
.ci-row .ci-label { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: #9fb0ae; }
.ci-row a, .ci-row p { color: #fff; font-weight: 600; margin: 0; }
.ci-row a:hover { color: var(--gold-soft); }
.ci-social { display: flex; gap: 12px; margin-top: 28px; }
.ci-social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color:#fff; transition: all .4s var(--ease); }
.ci-social a:hover { background: var(--grad-gold); color: var(--navy); transform: translateY(-4px); }

.form-card { background:#fff; border-radius: var(--r-lg); padding: 42px 38px; box-shadow: var(--shadow-md); border: 1px solid rgba(94,122,102,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: .03em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.4px solid rgba(94,122,102,.2);
  background: var(--ivory); font-family: var(--sans); font-size: .96rem; color: var(--ink); transition: all .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage-deep); background: #fff; box-shadow: 0 0 0 4px rgba(94,122,102,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: rgba(94,122,102,.12); border: 1px solid rgba(94,122,102,.3); color: var(--sage-darker); padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-weight: 600; }
.form-success.show { display: flex; gap: 10px; align-items: center; }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(94,122,102,.1); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.hours-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.hours-list li:last-child { border: none; }
.hours-list b { font-family: var(--sans); color: var(--navy); }
.hours-list span { color: var(--muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy); color: #c4d0cf; padding: 72px 0 0; position: relative; overflow: hidden; }
.footer::before { content:""; position:absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--sage); filter: blur(120px); opacity:.18; top:-160px; left: 10%; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; position: relative; z-index: 2; }
.footer .brand-name { color:#fff; }
.footer-about p { margin: 18px 0; font-size: .94rem; color: #a9b8b6; }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; font-family: var(--serif); }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #a9b8b6; font-size: .94rem; transition: all .3s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .94rem; color: #a9b8b6; }
.footer-contact i { color: var(--gold-soft); margin-top: 4px; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 11px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; color:#fff; transition: all .4s var(--ease); }
.footer-social a:hover { background: var(--grad-gold); color: var(--navy); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 56px; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #8c9b99; }
.footer-bottom a { color: var(--gold-soft); font-weight: 600; }

/* ==========================================================================
   SCROLL TO TOP + WHATSAPP FLOAT
   ========================================================================== */
.to-top { position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color:#fff; border:none; cursor:pointer; display:grid; place-items:center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .4s var(--ease); z-index: 900; }
.to-top.show { opacity:1; visibility:visible; transform: translateY(0); }
.to-top:hover { background: var(--sage-deep); transform: translateY(-4px); }
.wa-float { position: fixed; bottom: 28px; left: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color:#fff; display:grid; place-items:center; box-shadow: 0 12px 30px rgba(37,211,102,.45); z-index: 900; font-size: 1.5rem; transition: transform .4s var(--ease); animation: pulse 2.4s infinite; }
.wa-float:hover { transform: scale(1.1); color:#fff; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.45);} 70%{ box-shadow: 0 0 0 18px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ==========================================================================
   WAVE / SHAPE SEPARATORS
   ========================================================================== */
.wave-sep { display: block; width: 100%; height: auto; line-height: 0; }
.wave-sep svg { width: 100%; height: 70px; display: block; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: none; }
[data-reveal="zoom"]  { transform: scale(.92); }
[data-reveal="zoom"].in { transform: none; }
[data-delay="1"]{ transition-delay: .1s; }
[data-delay="2"]{ transition-delay: .2s; }
[data-delay="3"]{ transition-delay: .3s; }
[data-delay="4"]{ transition-delay: .4s; }
[data-delay="5"]{ transition-delay: .5s; }

/* ==========================================================================
   PILL / TRUST ROW
   ========================================================================== */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.pill { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 40px; padding: 10px 20px; font-weight: 600; font-size: .9rem; color: var(--navy); box-shadow: var(--shadow-sm); }
.pill i { color: var(--gold); }
.bg-navy .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color:#fff; }

/* video */
.video-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.video-frame video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; max-height: 560px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .split, .split--media-right { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .counters { grid-template-columns: repeat(2,1fr); }
  .flow { grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .flow-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .media-frame { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(82vw, 340px);
    background: var(--ivory); flex-direction: column; align-items: stretch;
    padding: 100px 28px 40px; gap: 6px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .5s var(--ease); z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { padding: 14px 18px; border-radius: 14px; font-size: 1.05rem; }
  .nav-menu a::after { display: none; }
  .nav-menu a:hover, .nav-menu a.active { background: rgba(94,122,102,.1); }
  .nav-cta { margin: 12px 18px 0; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(22,36,47,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: all .4s var(--ease); z-index: 998; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .hero-trust .sep { display: none; }
  .media-stat { right: 0; }
  .hero-badge.hb1 { left: 0; }
  .hero-badge.hb2 { right: 0; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn-x { width: 100%; justify-content: center; }
  .section { padding: 60px 0; }
  .acc-a-inner { padding-left: 26px; }
  .wa-float { width: 50px; height: 50px; font-size: 1.3rem; }
}
@media (max-width: 420px) {
  .counters { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px;
}
