/* ==========================================================================
   Sanskriti Fancy Dresses — Landing Page
   style.css
   Sections:
     01  Design tokens
     02  Base + typography
     03  Utilities / helpers
     04  Icon system
     05  Buttons
     06  Header / navigation
     07  Hero
     08  Section head + generic cards
     09  Section-specific styles
     10  FAQ
     11  Enquiry form
     12  Footer + floating actions
     13  Motion / reveal
     14  Responsive
   ========================================================================== */

/* 01 — DESIGN TOKENS ------------------------------------------------------
   Palette follows a 60 / 30 / 10 split:
     60%  neutral surfaces        — white + off-white, carries most of the page
     30%  brand red + brand blue  — dark sections, primary actions, headings
     10%  magenta / green / orange — accents only, never large areas
   ------------------------------------------------------------------------- */
:root {
  /* --- 60%  NEUTRAL (dominant) ------------------------------------- */
  --surface:        #FFFFFF;
  --surface-2:      #F7F7F8;
  --card:           #FFFFFF;
  --text:           #14181D;
  --muted:          #5C6672;
  --line:           rgba(20, 24, 29, .10);
  --line-strong:    rgba(20, 24, 29, .18);

  /* --- 30%  BRAND -------------------------------------------------- */
  --brand:          #E6003D;   /* primary   */
  --brand-dk:       #B00030;
  --brand-lt:       #FF3D6B;
  --blue:           #009FE3;   /* secondary */
  --blue-dk:        #0076AA;
  --blue-lt:        #57C6F5;
  --focus:          #008ACB;   /* >=3:1 on white AND on the dark sections */

  /* The dark surfaces (hero, dark sections, footer) are the brand blue
     taken right down. They read as brand, so they count toward the 30%
     rather than adding a fourth, unrelated dark colour. */
  --ink:            #002034;
  --ink-2:          #002E48;
  --ink-3:          #00405F;

  /* --- 10%  ACCENTS (small doses only) ------------------------------ */
  --magenta:        #F00091;
  --green:          #00965A;
  --accent:         #E89125;
  --accent-lt:      #F7B25C;

  /* WhatsApp keeps its own brand green. Recolouring a third-party mark
     costs more in recognition than it gains in palette purity. */
  --wa:             #25D366;
  --wa-dk:          #128C7E;

  /* Shape */
  --r-sm:           12px;
  --r:              18px;
  --r-lg:           26px;
  --r-pill:         999px;

  /* Elevation */
  --sh-sm:  0 1px 2px rgba(20,24,29,.05), 0 6px 16px -10px rgba(20,24,29,.18);
  --sh-md:  0 2px 4px rgba(20,24,29,.04), 0 18px 38px -18px rgba(20,24,29,.26);
  --sh-lg:  0 40px 70px -30px rgba(20,24,29,.45);
  --sh-accent:0 14px 30px -14px rgba(232,145,37,.65);

  /* Type */
  --ff-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --sec-y: clamp(60px, 3.5vw, 108px);
  --shell: 1200px;
}

/* 02 — BASE + TYPOGRAPHY --------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .5rem;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* Flex children default to min-width:auto and refuse to shrink below their
   min-content width, which pushes siblings out of narrow cards. */
.card-row > div,
.link-card > div,
.cta-mini > div,
.rail-item > div,
.tick-list li > div,
.faq-q,
.chat-card__top > span:last-child { min-width: 0; }

h1, h2, h3, h4, p, span, a { overflow-wrap: break-word; }

a {
  /* Blue carries plain links so red stays reserved for actions. */
  color: var(--blue-dk);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--brand); }

img, svg { max-width: 100%; }
img { height: auto; display: block; }

::selection {
  background: var(--accent-lt);
  color: var(--ink);
}

:focus-visible {
  /* Blue, not red — a red focus ring reads as an error state. */
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Scrollbar (WebKit) */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb {
  background: #C7CFD6;
  border-radius: 99px;
  border: 3px solid var(--surface-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-lt); }

/* 03 — UTILITIES ---------------------------------------------------------- */
/* Padding must be >= half of the largest Bootstrap gutter used inside
   (g-5 = 3rem -> -24px negative row margins), otherwise rows overflow. */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--sec-y); position: relative; }

.section--alt { background: var(--surface-2); }

.section--dark {
  background:
    radial-gradient(900px 460px at 12% 0%,   rgba(230,0,61, .28), transparent 62%),
    radial-gradient(760px 420px at 92% 100%, rgba(0,159,227, .24), transparent 60%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 55%, #002438 100%);
  color: #E4EEF5;
}
.section--dark h2,
.section--dark h3 { color: #FFFFFF; }

/* A light card can sit inside a dark section (the enquiry form does). Stop the
   white heading colour above from leaking into it — it renders white-on-white. */
.section--dark .form-card h2,
.section--dark .form-card h3,
.section--dark .form-card h4 { color: var(--ink); }
.section--dark .sec-lead { color: rgba(226,238,246, .78); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; color: #fff; }

.text-grad {
  background: linear-gradient(100deg, var(--accent-lt) 0%, var(--accent) 45%, #FFD9A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-grad--ink {
  background: linear-gradient(100deg, var(--brand) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.visually-hidden-abs {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Decorative ornament */
.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ornament span {
  height: 1px;
  width: 46px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.ornament span + span { background: linear-gradient(90deg, var(--accent), transparent); }
.ornament i {
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}
.ornament--center { justify-content: center; }

/* 04 — ICON SYSTEM -------------------------------------------------------- */
.ic {
  width: 1.35em;
  height: 1.35em;
  flex: none;
  vertical-align: -.28em;
}
.ic--sm { width: 1.05em; height: 1.05em; }

.ic-chip {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: none;
  /* Supporting icons sit in blue; red is saved for actions and hover.
     Keeps the red/blue 30% balanced instead of red-washing the page. */
  color: var(--blue-dk);
  background: linear-gradient(150deg, #EAF6FD 0%, #F3F9FE 100%);
  border: 1px solid rgba(0,159,227, .14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .35s cubic-bezier(.16,1,.3,1),
              color .3s ease, background .3s ease, box-shadow .3s ease;
}
.ic-chip .ic { width: 24px; height: 24px; vertical-align: 0; }

.ic-chip--accent { color: var(--accent); background: linear-gradient(150deg, #FEF3E3 0%, #FDEBD5 100%); }
.ic-chip--magenta { color: var(--magenta); background: linear-gradient(150deg, #FFF0F4 0%, #FFF6EC 100%); }

.ic-chip--dark {
  color: var(--accent-lt);
  background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

/* 05 — BUTTONS ------------------------------------------------------------ */
.btn-x {
  --bg: var(--brand);
  --fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .975rem;
  letter-spacing: .01em;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease,
              background .28s ease, color .28s ease, border-color .28s ease, opacity .2s ease;
}
.btn-x:hover { transform: translateY(-2px); color: var(--fg); }
.btn-x:active { transform: translateY(0); }

.btn-x--wa {
  --bg: linear-gradient(135deg, #2FD86F 0%, #12A45C 100%);
  box-shadow: 0 14px 30px -14px rgba(18, 164, 92, .8);
}
.btn-x--wa:hover { box-shadow: 0 20px 38px -14px rgba(18, 164, 92, .9); }

.btn-x--accent {
  --bg: linear-gradient(135deg, var(--accent-lt) 0%, var(--accent) 100%);
  --fg: #3D2200;
  box-shadow: var(--sh-accent);
}
.btn-x--accent:hover { box-shadow: 0 20px 40px -14px rgba(232,145,37,.8); }

.btn-x--brand { box-shadow: 0 14px 30px -14px rgba(230,0,61,.75); }

.btn-x--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line-strong);
}
.btn-x--ghost:hover { background: #fff; border-color: var(--brand-lt); --fg: var(--brand); }

.btn-x--ghost-light {
  --bg: rgba(255,255,255,.07);
  --fg: #fff;
  border-color: rgba(255,255,255,.26);
  backdrop-filter: blur(6px);
}
.btn-x--ghost-light:hover { background: rgba(255,255,255,.16); --fg: #fff; }

.btn-x--block { width: 100%; }
.btn-x--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-x[disabled],
.btn-x.is-busy { opacity: .62; pointer-events: none; }

/* 06 — HEADER ------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
  padding-block: 12px;
}
.site-header.is-stuck {
  background: rgba(255,255,255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(20,24,29,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color .35s ease;
}
.site-header.is-stuck .brand { color: var(--ink); }

.brand__mark {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: none;
  font-family: var(--ff-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-lt), var(--brand));
  box-shadow: 0 8px 20px -10px rgba(230,0,61,.9);
}
.brand__name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.brand__tag {
  display: block;
  font-size: .68rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  opacity: .72;
  font-weight: 600;
}

.nav-desk {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desk a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .25s ease, background .25s ease;
}
.nav-desk a:hover { color: #fff; background: rgba(255,255,255,.12); }
.site-header.is-stuck .nav-desk a { color: var(--muted); }
.site-header.is-stuck .nav-desk a:hover { color: var(--brand); background: rgba(230,0,61,.07); }
.nav-desk a.is-active { color: #fff; background: rgba(255,255,255,.14); }
.site-header.is-stuck .nav-desk a.is-active { color: var(--brand); background: rgba(230,0,61,.09); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  width: 46px; height: 46px;
  display: none;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.site-header.is-stuck .nav-toggle {
  color: var(--ink);
  border-color: var(--line-strong);
  background: #fff;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1040;
  visibility: hidden;
  pointer-events: none;
  /* Clips the parked panel so it never extends the page width. */
  overflow: hidden;
}
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }

.nav-drawer__veil {
  position: absolute;
  inset: 0;
  background: rgba(20,24,29,.55);
  opacity: 0;
  transition: opacity .35s ease;
  backdrop-filter: blur(3px);
}
.nav-drawer.is-open .nav-drawer__veil { opacity: 1; }

.nav-drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: var(--surface);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
  box-shadow: var(--sh-lg);
}
.nav-drawer.is-open .nav-drawer__panel { transform: none; }

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.nav-drawer__panel a.dnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-weight: 600;
  border: 1px solid transparent;
}
.nav-drawer__panel a.dnav:hover {
  background: #fff;
  border-color: var(--line);
  color: var(--brand);
}
.nav-drawer__panel .btn-x { margin-top: 14px; }

.icon-btn {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

/* Scroll progress */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 1050;
  background: linear-gradient(90deg, var(--brand), var(--magenta), var(--blue));
  transition: width .1s linear;
}

/* 07 — HERO --------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(120px, 15vw, 176px) clamp(60px, 8vw, 96px);
  color: #E9F1F7;
  /* Deep brand blue field, brand red blooming where the eye lands first.
     Red + blue are the 30%; the magenta wash at the bottom is the 10%. */
  background:
    radial-gradient(1100px 620px at 78% 8%,  rgba(230,0,61, .42), transparent 60%),
    radial-gradient(820px 520px at 8% 92%,   rgba(0,159,227, .30), transparent 62%),
    radial-gradient(700px 500px at 50% 120%, rgba(240,0,145, .20), transparent 65%),
    linear-gradient(160deg, #001B2C 0%, #00304A 48%, #001F33 100%);
  overflow: hidden;
}

.hero::before {
  /* fine diagonal weave — subtle premium texture */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.028) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 14px);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 120px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--surface));
  opacity: .96;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero__glow--a {
  width: 420px; height: 420px;
  top: -110px; right: -80px;
  background: rgba(230,0,61,.34);
}
.hero__glow--b {
  width: 380px; height: 380px;
  bottom: -140px; left: -110px;
  background: rgba(0,159,227,.26);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-lt);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(247,178,92, .28);
  backdrop-filter: blur(6px);
}
.eyebrow .ic { color: var(--accent-lt); }

.eyebrow--light {
  color: var(--blue-dk);
  background: rgba(0,159,227,.08);
  border-color: rgba(0,159,227,.20);
}
.eyebrow--light .ic { color: var(--accent); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.4vw, 3.85rem);
  margin: 20px 0 18px;
  letter-spacing: -.025em;
}

.hero__lead {
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  color: rgba(233,243,249,.8);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(233,243,249,.76);
}
.hero__chips .ic { color: var(--accent-lt); }

/* Hero chat mock */
.chat-card {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  padding: 20px;
  background: linear-gradient(165deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: var(--sh-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.chat-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.chat-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2FD86F, #12A45C);
  flex: none;
}
.chat-card__who { font-weight: 700; color: #fff; font-size: .95rem; line-height: 1.3; }
.chat-card__status {
  font-size: .76rem;
  color: rgba(233,243,249,.62);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-card__status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 3px rgba(37,211,102,.22);
}

.bubble {
  max-width: 84%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: .89rem;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
}
.bubble--in {
  background: rgba(255,255,255,.12);
  color: rgba(233,243,249,.92);
  border: 1px solid rgba(255,255,255,.1);
  border-bottom-left-radius: 5px;
}
.bubble--out {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(47,216,111,.28), rgba(0,150,90,.30));
  border: 1px solid rgba(47,216,111,.34);
  color: #EAFBF1;
  border-bottom-right-radius: 5px;
}
.bubble b { color: #fff; font-weight: 700; }
.bubble__time {
  display: block;
  font-size: .68rem;
  opacity: .6;
  margin-top: 3px;
}

.chat-card__note {
  margin-top: 14px;
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(233,243,249,.66);
  text-align: left;
  font-weight: 600;
}

.float-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: var(--sh-lg);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.25;
  border: 1px solid rgba(255,255,255,.6);
}
.float-badge small {
  display: block;
  font-weight: 500;
  font-size: .72rem;
  color: var(--muted);
}
.float-badge .ic { color: var(--brand); width: 20px; height: 20px; }
.float-badge--a { top: -30px; left: -26px; animation: bob 5.5s ease-in-out infinite; }
.float-badge--b { bottom: -30px; right: -26px; animation: bob 6.5s ease-in-out .8s infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Hero benefit grid */
.hero-grid { margin-top: clamp(48px, 6vw, 72px); }

.hero-tile {
  height: 100%;
  padding: 22px;
  border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .3s ease, background .3s ease;
}
.hero-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(247,178,92,.42);
  background: linear-gradient(160deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
}
.hero-tile h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 14px 0 5px;
}
.hero-tile p {
  font-size: .885rem;
  color: rgba(233,243,249,.72);
  margin: 0;
}

/* 08 — SECTION HEAD + CARDS ----------------------------------------------- */
.sec-head { max-width: 780px; margin-bottom: clamp(34px, 4vw, 52px); }
.sec-head--center { margin-inline: auto; text-align: center; }

.sec-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  margin: 16px 0 14px;
}
.sec-lead {
  font-size: clamp(.98rem, 1.15vw, 1.06rem);
  color: var(--muted);
  margin: 0;
}
.section--dark .sec-lead { color: rgba(226,238,246,.75); }

.card-x {
  position: relative;
  height: 100%;
  padding: 26px 24px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform .42s cubic-bezier(.16,1,.3,1), box-shadow .42s ease, border-color .3s ease;
}
.card-x::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--magenta), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.card-x:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(230,0,61,.2);
}
.card-x:hover::after { transform: scaleX(1); }
.card-x:hover .ic-chip {
  transform: scale(1.06) rotate(-4deg);
  color: #fff;
  background: linear-gradient(140deg, var(--brand-lt), var(--brand));
  box-shadow: 0 10px 22px -12px rgba(230,0,61,.9);
}

.card-x h3 {
  font-family: var(--ff-body);
  font-size: 1.06rem;
  font-weight: 700;
  margin: 16px 0 6px;
  letter-spacing: -.005em;
}
.card-x p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
}

/* Dark variant */
.card-x--dark {
  background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.card-x--dark h3 { color: #fff; }
.card-x--dark p { color: rgba(226,238,246,.7); }
.card-x--dark:hover {
  border-color: rgba(247,178,92,.4);
  box-shadow: 0 30px 60px -34px rgba(0,0,0,.8);
}
.card-x--dark:hover .ic-chip--dark {
  color: var(--ink);
  background: linear-gradient(140deg, var(--accent-lt), var(--accent));
  box-shadow: var(--sh-accent);
}

/* Compact row card (inline icon + text) */
.card-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  padding: 20px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .3s ease;
}
.card-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(230,0,61,.2);
}
.card-row h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.card-row p { font-size: .9rem; color: var(--muted); margin: 0; }
.card-row .ic-chip { width: 46px; height: 46px; border-radius: 13px; }
.card-row .ic-chip .ic { width: 21px; height: 21px; }

/* 09 — SECTION SPECIFIC ---------------------------------------------------- */

/* Categories */
.cat-card {
  position: relative;
  display: block;
  height: 100%;
  padding: 26px 22px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  color: inherit;
  overflow: hidden;
  transition: transform .42s cubic-bezier(.16,1,.3,1), box-shadow .42s ease, border-color .3s ease;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(230,0,61,.05), rgba(232,145,37,.07));
  opacity: 0;
  transition: opacity .4s ease;
}
.cat-card > * { position: relative; }
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(232,145,37,.45);
  color: inherit;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover .ic-chip {
  transform: scale(1.06) rotate(-4deg);
  color: #3D2200;
  background: linear-gradient(140deg, var(--accent-lt), var(--accent));
  box-shadow: var(--sh-accent);
}
.cat-card h3 {
  font-family: var(--ff-body);
  font-size: 1.04rem;
  font-weight: 700;
  margin: 16px 0 5px;
}
.cat-card p { font-size: .9rem; color: var(--muted); margin: 0 0 14px; }
.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--brand);
}
.cat-card__cta .ic { transition: transform .3s ease; }
.cat-card:hover .cat-card__cta .ic { transform: translateX(4px); }

/* Fit / Not-fit split */
.split-panel {
  height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--sh-sm);
}
.split-panel--yes {
  background: linear-gradient(170deg, #FFFFFF 0%, #F4FBF7 100%);
  border-color: rgba(0,150,90,.22);
}
.split-panel--no {
  background: linear-gradient(170deg, #FFFFFF 0%, #FFF8F0 100%);
  border-color: rgba(232,145,37,.28);
}
.split-panel__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line-strong);
}
.split-panel__head h3 {
  font-size: 1.35rem;
  margin: 0;
}
.split-panel__head small {
  display: block;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.tick-list { list-style: none; margin: 0; padding: 0; }
.tick-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.tick-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.tick-list strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.tick-list span { font-size: .9rem; color: var(--muted); }
.tick-list .ic-chip {
  width: 40px; height: 40px;
  border-radius: 11px;
}
.tick-list .ic-chip .ic { width: 19px; height: 19px; }
.ic-chip--yes { color: #00965A; background: linear-gradient(150deg, #E6F6EF, #F2FAF6); border-color: rgba(0,150,90,.18); }
.ic-chip--no  { color: #B36A0F; background: linear-gradient(150deg, #FEF3E3, #FFF8EF); border-color: rgba(232,145,37,.22); }

/* Steps */
.steps { position: relative; }
.step {
  position: relative;
  height: 100%;
  padding: 26px 24px 24px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .42s cubic-bezier(.16,1,.3,1), box-shadow .42s ease, border-color .3s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(230,0,61,.22);
}
.step__num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(230,0,61,.1);
  transition: color .35s ease;
}
.step:hover .step__num { color: rgba(232,145,37,.42); }
.step h3 {
  font-family: var(--ff-body);
  font-size: 1.04rem;
  font-weight: 700;
  margin: 16px 0 5px;
}
.step p { font-size: .91rem; color: var(--muted); margin: 0; }

/* Link cards (social / video / reviews / blog) */
.link-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 20px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  color: inherit;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .3s ease;
}
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(230,0,61,.22);
  color: inherit;
}
.link-card h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 3px;
}
.link-card p { font-size: .86rem; color: var(--muted); margin: 0; }
.link-card__go {
  margin-left: auto;
  color: var(--brand);
  opacity: .5;
  transition: transform .3s ease, opacity .3s ease;
}
.link-card:hover .link-card__go { transform: translateX(4px); opacity: 1; }

.link-card.is-placeholder {
  pointer-events: none;
  opacity: .72;
  background: repeating-linear-gradient(135deg, #fff 0 12px, #F7F7F8 12px 24px);
  border-style: dashed;
}
.link-card.is-placeholder .link-card__go { display: none; }

.soon-chip {
  margin-left: auto;
  flex: none;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 5px 11px;
}

.link-card--ig .ic-chip { color: #C13584; background: linear-gradient(140deg,#FCEEF4,#FFF3EA); }
.link-card--fb .ic-chip { color: #1877F2; background: linear-gradient(140deg,#EAF2FE,#F2F7FF); }
.link-card--yt .ic-chip { color: #FF0033; background: linear-gradient(140deg,#FFEEF0,#FFF5F2); }
.link-card--wa .ic-chip { color: #12A45C; background: linear-gradient(140deg,#E9FAF0,#F3FCF6); }
.link-card--star .ic-chip { color: #E0A21A; background: linear-gradient(140deg,#FFF6E0,#FFFAEE); }

/* Clarity strip */
.clarity-strip {
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 40px);
  background: linear-gradient(150deg, #FFFFFF 0%, #F5FAFD 100%);
  border: 1px solid rgba(232,145,37,.26);
  box-shadow: var(--sh-sm);
}

/* Trust band */
.trust-band {
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.5vw, 44px);
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(230,0,61,.24), transparent 65%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #EFEAF7;
  box-shadow: var(--sh-lg);
}
.trust-band h2 { color: #fff; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(30px, 4.2vw, 56px);
  background:
    radial-gradient(760px 380px at 8% 4%,  rgba(230,0,61,.38), transparent 62%),
    radial-gradient(620px 340px at 96% 96%, rgba(0,159,227,.30), transparent 60%),
    linear-gradient(155deg, #001F33 0%, #00466A 60%, #002236 100%);
  color: #F1EDF9;
  box-shadow: var(--sh-lg);
}
.cta-band h2 { color: #fff; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 15px);
  pointer-events: none;
}
.cta-band > * { position: relative; }

.cta-mini {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  height: 100%;
  transition: background .3s ease, border-color .3s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.cta-mini:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(247,178,92,.4);
  transform: translateY(-3px);
}
.cta-mini strong { display: block; color: #fff; font-size: .96rem; font-weight: 700; }
.cta-mini span { font-size: .85rem; color: rgba(233,243,249,.7); }
.cta-mini .ic-chip { width: 42px; height: 42px; border-radius: 12px; }
.cta-mini .ic-chip .ic { width: 20px; height: 20px; }

/* 10 — FAQ ---------------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.is-open {
  border-color: rgba(230,0,61,.28);
  box-shadow: var(--sh-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.faq-q .ic-chip {
  width: 40px; height: 40px;
  border-radius: 11px;
}
.faq-q .ic-chip .ic { width: 19px; height: 19px; }
.faq-q__caret {
  margin-left: auto;
  flex: none;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(230,0,61,.08);
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease;
}
.faq-item.is-open .faq-q__caret {
  transform: rotate(180deg);
  background: var(--brand);
  color: #fff;
}
.faq-item.is-open .faq-q .ic-chip {
  color: #fff;
  background: linear-gradient(140deg, var(--brand-lt), var(--brand));
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.16,1,.3,1);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  margin: 0;
  padding: 0 20px 20px 74px;
  font-size: .93rem;
  color: var(--muted);
}

/* 11 — ENQUIRY FORM -------------------------------------------------------- */
.form-card {
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.2vw, 38px);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
}

.form-card__head { margin-bottom: 22px; }
.form-card__head h3 { font-size: clamp(1.35rem, 2.3vw, 1.75rem); margin-bottom: 8px; }
.form-card__head p { font-size: .93rem; color: var(--muted); margin: 0; }

.fld { margin-bottom: 16px; }
.fld label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 7px;
}
.fld label .req { color: var(--magenta); }

.fld .ctrl,
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: #FCFCFD;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.fld textarea { min-height: 108px; resize: vertical; }

.fld select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C6672' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.fld input::placeholder,
.fld textarea::placeholder { color: #666F79; }

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--brand-lt);
  box-shadow: 0 0 0 4px rgba(0,159,227,.14);
}

.fld input.is-highlighted,
.fld select.is-highlighted {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,145,37,.2);
  animation: nudge .6s ease 2;
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-3px); }
  75%      { transform: translateX(3px); }
}

.fld.has-error input,
.fld.has-error select,
.fld.has-error textarea {
  border-color: var(--magenta);
  background: #FFF5F7;
}
.fld__err {
  display: none;
  margin-top: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--magenta);
}
.fld.has-error .fld__err { display: block; }

.phone-wrap { position: relative; display: flex; }
.phone-wrap .cc {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  background: var(--surface-2);
  font-weight: 700;
  font-size: .93rem;
  color: var(--muted);
  flex: none;
}
.phone-wrap input { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--muted);
  margin: 6px 0 20px;
  line-height: 1.55;
}
.consent input {
  width: 19px; height: 19px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--brand);
  cursor: pointer;
}

.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: .82rem;
  color: var(--muted);
}
.form-note .ic { color: var(--green); }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
}
.form-status.is-shown { display: block; }
.form-status--ok  { background: #E6F6EF; border: 1px solid rgba(0,150,90,.30); color: #00693F; }
.form-status--err { background: #FFF0F4; border: 1px solid rgba(240,0,145,.28); color: #B00030; }

/* Success panel */
.form-success {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}
.form-success.is-shown { display: block; }
.form-success__ic {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #00B86E, #00965A);
  box-shadow: 0 18px 34px -16px rgba(0,150,90,.85);
  animation: pop .5s cubic-bezier(.16,1.3,.4,1) both;
}
.form-success__ic .ic { width: 36px; height: 36px; }
@keyframes pop {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: .95rem; max-width: 42ch; margin-inline: auto; }
.form-success .btn-x { margin-top: 20px; }

/* Side rail beside form */
.form-rail { height: 100%; }
.rail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.rail-item:last-child { border-bottom: 0; }
.rail-item strong { display: block; color: #fff; font-size: .97rem; }
.rail-item span { font-size: .88rem; color: rgba(233,243,249,.7); }

/* 12 — FOOTER + FLOATING --------------------------------------------------- */
.site-footer {
  background: linear-gradient(170deg, #001A2B 0%, #002B44 100%);
  color: rgba(226,238,246,.72);
  padding-block: clamp(48px, 6vw, 76px) 26px;
}
.site-footer h3 {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 18px;
}
.site-footer a { color: rgba(226,238,246,.72); font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
}
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(226,238,246,.8);
  transition: all .3s ease;
}
.foot-social a:hover {
  color: #3D2200;
  background: linear-gradient(140deg, var(--accent-lt), var(--accent));
  border-color: transparent;
  transform: translateY(-3px);
}

.fab-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1020;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #2FD86F 0%, #12A45C 100%);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 18px 34px -14px rgba(18,164,92,.9);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.fab-wa:hover { transform: translateY(-3px) scale(1.02); color: #fff; }
.fab-wa .ic { width: 24px; height: 24px; }
.fab-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(47,216,111,.6);
  animation: ripple 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes ripple {
  0%   { transform: scale(1);    opacity: .8; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1019;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: var(--sh-md);
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* 13 — MOTION -------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity .75s cubic-bezier(.16,1,.3,1) var(--rd, 0ms),
    transform .75s cubic-bezier(.16,1,.3,1) var(--rd, 0ms);
}

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

/* 14 — RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .nav-desk a { padding: 9px 11px; font-size: .86rem; }
}

@media (max-width: 991.98px) {
  html { scroll-padding-top: 78px; }
  .nav-desk { display: none; }
  .nav-toggle { display: grid; }
  .header-cta .btn-x--wa { display: none; }
  .float-badge--a { left: 0; top: -12px; }
  .float-badge--b { right: 0; bottom: -12px; }
}

@media (max-width: 767.98px) {
  .hero { padding-top: 108px; }
  .hero__actions .btn-x { flex: 1 1 100%; }
  .chat-card { padding: 16px; }
  .float-badge { display: none; }
  .faq-a p { padding-left: 20px; }
  .fab-wa span { display: none; }
  .fab-wa { padding: 16px; }
  .to-top { bottom: 84px; right: 20px; }
  .foot-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 575.98px) {
  .shell { padding-inline: 18px; }
  .brand__tag { display: none; }
  .split-panel__head h3 { font-size: 1.18rem; }
}

/* ==========================================================================
   15 — VIDEO POPUP
   ========================================================================== */
[hidden] { display: none !important; }

.vmodal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  overscroll-behavior: contain;
}

.vmodal__veil {
  position: absolute;
  inset: 0;
  background: rgba(0,18,30, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
  border: 0;
}
.vmodal.is-open .vmodal__veil { opacity: 1; }

.vmodal__dialog {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: var(--r-lg);
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(230,0,61,.20), transparent 62%),
    linear-gradient(165deg, #002034 0%, #003B59 100%);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 50px 90px -30px rgba(0,0,0,.85);
  color: #F1EDF9;
  padding: 18px;
  opacity: 0;
  transform: translateY(18px) scale(.97);
  transition: opacity .38s cubic-bezier(.16,1,.3,1), transform .38s cubic-bezier(.16,1,.3,1);
}
.vmodal.is-open .vmodal__dialog { opacity: 1; transform: none; }

.vmodal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,26,42,.72);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.vmodal__close:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: rotate(90deg);
}
.vmodal__close .ic { width: 20px; height: 20px; }

.vmodal__head { padding: 4px 56px 14px 6px; }
.vmodal__head h2 {
  color: #fff;
  font-size: clamp(1.15rem, 3.6vw, 1.5rem);
  margin: 0 0 4px;
}
.vmodal__head p {
  margin: 0;
  font-size: .86rem;
  color: rgba(233,243,249,.66);
}

.vmodal__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--r);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.1);
}
.vmodal__frame,
.vmodal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Transparent tap layer: first tap replays from 0:00 with sound */
.vmodal__tap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: end center;
  padding-bottom: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.vmodal__tap.is-hidden { display: none; }

.vmodal__tapchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(0,26,42,.78);
  border: 1px solid rgba(247,178,92,.4);
  color: var(--accent-lt);
  font-size: .85rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.9);
  animation: chipPulse 2.4s ease-in-out infinite;
}
.vmodal__tapchip .ic { width: 18px; height: 18px; }

@keyframes chipPulse {
  0%, 100% { transform: translateY(0);    box-shadow: 0 10px 26px -12px rgba(0,0,0,.9); }
  50%      { transform: translateY(-4px); box-shadow: 0 16px 30px -12px rgba(0,0,0,.9); }
}

/* Shown when the player cannot configure itself (blocked, private, no origin) */
.vfail {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}
.vfail p {
  margin: 0;
  font-size: .95rem;
  color: rgba(233,243,249, .78);
}

.vmodal__spinner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.vmodal__spinner.is-done { display: none; }
.vmodal__spinner span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--accent);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Controls */
.vmodal__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: var(--r);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
}

.vbtn {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.vbtn:hover {
  background: linear-gradient(140deg, var(--accent-lt), var(--accent));
  border-color: transparent;
  color: #3D2200;
}
.vbtn .ic { width: 19px; height: 19px; }

/* Progress bar — 22px tall hit area around a 6px visual track */
.vprog {
  flex: 1 1 auto;
  min-width: 0;
  height: 22px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}
.vprog__track {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.16);
  overflow: visible;
}
.vprog__buf {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.2);
}
.vprog__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--magenta));
}
.vprog__knob {
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%) scale(0);
  box-shadow: 0 2px 8px rgba(0,0,0,.6);
  transition: transform .2s cubic-bezier(.16,1.4,.4,1);
}
.vprog:hover .vprog__knob,
.vprog:focus-visible .vprog__knob,
.vprog.is-dragging .vprog__knob { transform: translateY(-50%) scale(1); }

.vtime {
  flex: none;
  font-size: .8rem;
  font-variant-numeric: tabular-nums;
  color: rgba(233,243,249,.62);
  white-space: nowrap;
}
.vtime b { color: #fff; font-weight: 700; }

.vmodal__foot { margin-top: 12px; }

/* ==========================================================================
   16 — MOBILE STICKY ACTION BAR
   ========================================================================== */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1021;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255, .93);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px -18px rgba(20,24,29,.6);
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.mobile-bar.is-shown { transform: none; }

.mobile-bar__btn {
  flex: 1 1 0;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
}
.mobile-bar__btn .ic { width: 19px; height: 19px; }
.mobile-bar__btn--wa {
  background: linear-gradient(135deg, #2FD86F 0%, #12A45C 100%);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(18,164,92,.9);
}
.mobile-bar__btn--wa:hover { color: #fff; }
.mobile-bar__btn--form {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.mobile-bar__btn--form:hover { color: var(--brand); }

/* ==========================================================================
   17 — MOBILE-FIRST REFINEMENTS
   90% of visitors arrive on a phone; these rules take priority.
   ========================================================================== */
@media (max-width: 991.98px) {
  /* Native tap feedback instead of the grey iOS flash */
  a, button, [role="button"], input, select, textarea, label {
    -webkit-tap-highlight-color: rgba(230,0,61, .12);
  }

  /* Every interactive control clears the 44px minimum touch target */
  .nav-desk a,
  .dnav,
  .faq-q,
  .btn-x,
  .icon-btn,
  .vbtn { min-height: 46px; }

  .cat-card,
  .link-card { min-height: 92px; }

  /* Footer links are the classic Lighthouse "tap targets too small" hit */
  .foot-links { gap: 2px; }
  .foot-links a,
  .foot-links li {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .foot-social a { width: 46px; height: 46px; }

  /* The label is the real tap target for the consent box */
  .consent { min-height: 44px; padding: 6px 0; align-items: center; }
  .consent input { width: 24px; height: 24px; margin-top: 0; }

  /* Heavy blur is expensive on mid-range Android */
  .hero__glow { filter: blur(52px); }
  .chat-card,
  .eyebrow { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

@media (max-width: 767.98px) {
  /* The sticky bar replaces the floating bubble */
  .mobile-bar { display: flex; }
  .fab-wa { display: none; }
  .to-top { bottom: calc(84px + env(safe-area-inset-bottom)); }
  body { padding-bottom: 74px; }

  /* iOS zooms the page when a focused input is under 16px */
  .fld input,
  .fld select,
  .fld textarea { font-size: 16px; }

  /* Tighter vertical rhythm so the fold shows more */
  :root { --sec-y: clamp(48px, 11vw, 68px); }
  .hero { padding-block: 96px 56px; }
  .hero h1 { font-size: clamp(1.95rem, 8.4vw, 2.6rem); }
  .hero__lead { font-size: .97rem; }
  .hero-grid { margin-top: 38px; }
  .sec-head { margin-bottom: 26px; }
  .card-x { padding: 20px 18px; }
  .step { padding: 22px 18px 20px; }
  .step__num { font-size: 2rem; top: 14px; right: 16px; }

  /* Modal fills the phone screen */
  .vmodal { padding: 10px; }
  .vmodal__dialog { padding: 12px; border-radius: 20px; }
  .vmodal__head { padding: 2px 50px 10px 4px; }
  .vmodal__controls { gap: 7px; padding: 7px 8px; }
  .vbtn { width: 44px; height: 44px; }
  .vbtn--hide-xs { display: none; }
  .vtime { font-size: .74rem; }
}

@media (max-width: 400px) {
  .vtime { display: none; }
  .mobile-bar__btn { font-size: .86rem; }
  .mobile-bar__btn span { white-space: nowrap; }
}

/* Landscape phones: the 16:9 stage would push the controls off-screen */
@media (max-height: 520px) and (orientation: landscape) {
  .vmodal__head,
  .vmodal__foot { display: none; }
  .vmodal__dialog { padding: 10px; }
  .vmodal__stage { max-height: 62dvh; aspect-ratio: auto; height: 62dvh; }
}

/* Print */
@media print {
  .site-header, .fab-wa, .to-top, .scroll-bar, .nav-drawer,
  .mobile-bar, .vmodal { display: none !important; }
  .hero, .section--dark, .cta-band, .trust-band, .site-footer {
    background: #fff !important;
    color: #000 !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
