/* =====================================================================
   MISIOWA AKADEMIA v4 — sales landing
   Warm honey/bear theme · sensory preschool · playful but premium
   ===================================================================== */

:root {
  /* PRIMARY — exact logo blue */
  --blue: #3589E8;
  --blue-deep: #1E6FCB;
  --blue-soft: #D5E6FB;
  --blue-bright: #7FB4F0;

  /* alias kept for legacy refs → points to blue */
  --honey: #3589E8;
  --honey-deep: #1E6FCB;
  --honey-soft: #D5E6FB;

  /* dark band — deep blue-navy (ties to logo blue) */
  /* --navy: #16294A; */
  --navy: #243F6A;

  /* ink — deep charcoal text */
  --ink: #22303F;
  --ink-2: #58626F;
  --ink-3: #8A94A2;

  /* surfaces — clean neutrals */
  --cream: #F5F8FC;
  --cream-2: #E9F1FB;
  --cool: #EDF4FC;
  --paper: #FFFFFF;
  --line: #E4E9F1;
  --line-2: #D3DCE8;

  /* accents — EXACT logo colors (red / green / blue / yellow / gold) */
  --touch: #CB0200;   --touch-deep: #A30200;   /* red */
  --move:  #3EA214;   --move-deep:  #2F7D0F;   /* green */
  --sight: #3589E8;   --sight-deep: #1E6FCB;   /* blue */
  --sound: #FCC000;   --sound-deep: #B07F00;   /* yellow */
  --smell: #E0B020;   --smell-deep: #9C7714;   /* gold (bear) */

  /* shadows */
  --sh-sm: 0 4px 16px -6px rgba(26,42,65,0.16);
  --sh-md: 0 14px 34px -14px rgba(26,42,65,0.22);
  --sh-lg: 0 28px 60px -22px rgba(26,42,65,0.30);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --display: "Baloo 2", system-ui, sans-serif;
  --body: "Nunito", system-ui, sans-serif;

  --wrap: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 800; }
h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; }
h3 { font-size: clamp(21px, 2.4vw, 27px); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }

section { position: relative; }
.pad { padding: clamp(72px, 9vw, 130px) 0; }

/* ---------- section kicker (quiet editorial label) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: none;
  padding: 0;
  margin-bottom: 6px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2.5px;
  border-radius: 3px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow svg { display: none; }
.eyebrow.t-touch, .eyebrow.e-red { color: var(--touch-deep); }
.eyebrow.e-green { color: var(--move-deep); }
.eyebrow.e-blue, .eyebrow.e-violet { color: var(--blue-deep); }
.eyebrow.e-pink { color: var(--touch-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { transition: transform 0.2s ease; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 0 var(--blue-deep), var(--sh-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--blue-deep), var(--sh-md); background: #3E8BE8; }
.btn-primary:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--blue-deep); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-lg { font-size: 18px; padding: 18px 34px; }

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line-2);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--blue); transform: translateY(-2px); color: var(--blue-deep); }

.btn-white {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 6px 0 rgba(0,0,0,0.12), var(--sh-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,0.12), var(--sh-md); }

/* ====================================================================
   NAV
   ==================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--cream) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid color-mix(in oklch, var(--line) 70%, transparent);
}
.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 60px; width: auto; display: block; }
.footer-logo { height: 72px; width: auto; display: block; margin-bottom: 4px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--honey);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--honey-deep);
  flex-shrink: 0;
}
.brand-mark svg { margin-top: 8px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); line-height: 1; }
.brand-name span { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--honey-deep); margin-top: 3px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15.5px;
  white-space: nowrap;
  color: var(--ink-2);
  position: relative;
  transition: color 0.16s;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.nav-phone svg { color: var(--blue-deep); }
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: none; background: var(--paper); box-shadow: inset 0 0 0 2px var(--line-2); cursor: pointer; position: relative; }
.nav-burger span { position: absolute; left: 13px; top: 22px; width: 20px; height: 2.4px; border-radius: 2px; background: var(--ink); transition: 0.2s; }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2.4px; border-radius: 2px; background: var(--ink);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

/* mobile menu */
.mmenu { position: fixed; inset: 0; z-index: 90; background: rgba(58,42,30,0.45); opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.mmenu.open { opacity: 1; pointer-events: auto; }
.mmenu-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 84%); background: var(--cream); padding: 26px; transform: translateX(100%); transition: transform 0.3s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; gap: 6px; }
.mmenu.open .mmenu-panel { transform: none; }
.mmenu-panel a { font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--ink); padding: 13px 0; border-bottom: 1.5px solid var(--line); }
.mmenu-close { align-self: flex-end; background: none; border: none; font-size: 30px; color: var(--ink); cursor: pointer; line-height: 1; margin-bottom: 10px; }

/* ====================================================================
   STICKY CTA
   ==================================================================== */
.sticky {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 180%);
  z-index: 60; width: min(940px, calc(100% - 32px));
  background: var(--navy); color: #fff;
  border-radius: var(--r-pill);
  padding: 11px 12px 11px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: var(--sh-lg);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.sticky.show { transform: translate(-50%, 0); }
.sticky-txt { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-txt strong { font-family: var(--display); font-weight: 600; font-size: 16px; }
.sticky-txt span { font-size: 13px; color: rgba(255,255,255,0.66); }
.sticky-acts { display: flex; gap: 9px; flex-shrink: 0; }
.sticky-call { background: rgba(255,255,255,0.1); color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.16); }
.sticky-call:hover { background: rgba(255,255,255,0.18); }

/* ====================================================================
   HERO
   ==================================================================== */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(44px, 5vw, 68px); }
.hero-bg-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.5; z-index: 0; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 40px; align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin: 20px 0 0; }
.hero h1 .hl {
  position: relative;
  color: var(--ink);
  background: linear-gradient(transparent 56%, color-mix(in oklch, var(--sound) 82%, white) 56% 93%, transparent 93%);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 0 3px;
  border-radius: 3px;
}
.hero-sub { margin-top: 22px; font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-2); max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-reassure { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; font-family: var(--display); font-weight: 500; font-size: 14.5px; color: var(--ink-2); }
.hero-reassure .rc { width: 23px; height: 23px; border-radius: 50%; background: color-mix(in oklch, var(--move) 26%, white); color: var(--move-deep); display: grid; place-items: center; flex-shrink: 0; }

/* hero bear stage */
.hero-stage { position: relative; display: grid; place-items: center; min-height: 420px; }
.hero-disc {
  position: absolute; width: min(440px, 90%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #fff 0%, #EEF3FB 60%, #DBE8F8 100%);
  box-shadow: var(--sh-md);
}
.hero-disc::before {
  content: ""; position: absolute; inset: 18px; border-radius: 50%;
  border: 3px dashed color-mix(in oklch, var(--blue) 40%, white);
}
.hero-bear { position: relative; z-index: 2; animation: bob 5s ease-in-out infinite; filter: drop-shadow(0 18px 22px rgba(86,54,20,0.18)); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-chip {
  position: absolute; z-index: 3; background: var(--paper); border-radius: var(--r-pill);
  padding: 9px 15px 9px 11px; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--ink);
  box-shadow: var(--sh-md);
}
.float-chip .fc-ic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.fc-1 { top: 8%; left: -4%; animation: bob 4.2s ease-in-out infinite; }
.fc-2 { bottom: 16%; right: -6%; animation: bob 5.4s ease-in-out infinite 0.4s; }
.fc-3 { bottom: 2%; left: 6%; animation: bob 4.8s ease-in-out infinite 0.8s; }

@media (prefers-reduced-motion: reduce) {
  .hero-bear, .float-chip { animation: none; }
}

/* ====================================================================
   TRUST STRIP
   ==================================================================== */
.trust { background: var(--navy); color: #fff; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.trust-item { text-align: center; position: relative; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 1.5px; height: 44px; background: rgba(255,255,255,0.14); }
.trust-n { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 38px); color: var(--blue-bright); line-height: 1; }
/* trust numbers — single calm accent (base blue-bright) */
.trust-l { font-size: 13.5px; color: rgba(255,255,255,0.74); margin-top: 7px; }

/* ====================================================================
   SECTION HEAD
   ==================================================================== */
.shead { max-width: 720px; }
.shead.center { margin: 0 auto; text-align: center; }
.shead h2 { margin-top: 16px; }
.shead .lede { margin-top: 18px; font-size: clamp(17px, 1.7vw, 19px); color: var(--ink-2); }
.shead.center .eyebrow { margin: 0 auto 6px; }
.shead.center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2.5px;
  border-radius: 3px;
  background: currentColor;
  flex-shrink: 0;
}

/* ====================================================================
   WHY / INTRO
   ==================================================================== */
.why { background: var(--paper); padding-top: clamp(52px, 6vw, 84px); }
.why-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.why-visual { position: relative; }
.why-photo {
  aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--cream-2), var(--honey-soft));
  box-shadow: var(--sh-lg);
}
.why-peek { position: absolute; right: -6%; bottom: -4%; z-index: 3; filter: drop-shadow(0 14px 18px rgba(86,54,20,0.2)); }
.why-badge {
  position: absolute; top: 22px; left: -22px; z-index: 4;
  background: var(--paper); border-radius: var(--r-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--sh-md);
}
.why-badge .wb-ic { width: 42px; height: 42px; border-radius: 12px; background: color-mix(in oklch, var(--move) 22%, white); color: var(--move-deep); display: grid; place-items: center; }
.why-badge b { font-family: var(--display); font-size: 16px; color: var(--ink); display: block; }
.why-badge span { font-size: 12.5px; }
.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-point { display: flex; gap: 16px; }
.why-point .wp-ic { width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; color: #fff; }
.why-point h4 { font-size: 18px; }
.why-point p { font-size: 15.5px; margin-top: 4px; }

/* photo placeholder treatment */
.photo-ph {
  display: grid; place-items: center; text-align: center; color: var(--ink-3);
  font-family: var(--display); font-weight: 500; font-size: 13.5px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.5) 0 14px, rgba(255,255,255,0) 14px 28px);
}
.photo-ph .pp-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px; }
.photo-ph .pp-cam { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.7); display: grid; place-items: center; color: var(--blue-deep); }

/* ====================================================================
   SENSORY ZONES
   ==================================================================== */
.zones { background: #EFF4FC; }
.zone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zone-card {
  position: relative; background: var(--paper); border-radius: var(--r-lg); padding: 30px 28px 28px;
  box-shadow: var(--sh-sm); overflow: hidden; border: 1.5px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.zone-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.zone-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--zc); }
.zone-blob { position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; background: var(--zc); opacity: 0.1; }
.zone-ic { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: #fff; background: var(--zc); box-shadow: 0 6px 0 var(--zcd); }
.zone-ic.ic-dark { color: #3A2E0C; }
.zone-card h3 { margin-top: 20px; }
.zone-tag { font-family: var(--display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--zcd); margin-top: 4px; display: block; }
.zone-card p { margin-top: 12px; font-size: 15.5px; }
.zone-wide { grid-column: span 2; display: flex; align-items: center; gap: 26px; }
@media (min-width: 881px) { .zone-wide .zone-ic { align-self: flex-start; } }

/* ====================================================================
   OFFER — what's included
   ==================================================================== */
.offer { background: var(--navy); color: rgba(255,255,255,0.82); overflow: hidden; }
.offer h2, .offer h3, .offer h4 { color: #fff; }
.offer .eyebrow { background: none; color: var(--blue-bright); }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; margin-top: 44px; }
.offer-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.offer-item .oi-ic { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; color: var(--blue-bright); background: rgba(125,176,236,0.16); }
/* offer icons — single calm accent (base blue-bright) */
.offer-item h4 { font-size: 18px; }
.offer-item p { font-size: 15px; margin-top: 4px; color: rgba(255,255,255,0.66); }
.offer-bear { position: absolute; right: 2%; bottom: 0; opacity: 0.9; z-index: 1; }

/* ====================================================================
   PRICING
   ==================================================================== */
.pricing { background: var(--cream); }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; align-items: stretch; }
.price-card {
  position: relative; background: var(--paper); border-radius: var(--r-lg); padding: 36px 34px;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column; border: 2px solid var(--line);
}
.price-card.feat { border-color: var(--blue); box-shadow: var(--sh-lg); }
.price-flag {
  position: absolute; top: -15px; left: 34px; white-space: nowrap; background: var(--blue); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 13px; padding: 7px 16px; border-radius: var(--r-pill);
  box-shadow: 0 4px 0 var(--blue-deep);
}
.price-kicker { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); }
.price-card:not(.feat) .price-kicker { color: var(--move-deep); }
.price-card h3 { margin-top: 6px; font-size: 28px; }
.price-age { font-size: 14.5px; color: var(--ink-3); margin-top: 2px; }
.price-amount { display: flex; align-items: baseline; flex-wrap: nowrap; gap: 11px; margin-top: 22px; padding-bottom: 22px; border-bottom: 1.5px dashed var(--line-2); }
.pa-from { font-family: var(--display); font-weight: 500; font-size: 16px; color: var(--ink-3); flex: 0 0 auto; }
.pa-val { font-family: var(--display); font-weight: 700; font-size: 48px; line-height: 1; color: var(--ink); flex: 0 0 auto; }
.pa-cur { font-family: var(--display); font-weight: 600; font-size: 22px; color: var(--ink-2); flex: 0 0 auto; white-space: nowrap; }
.pa-per { font-size: 14px; color: var(--ink-3); align-self: flex-end; margin-bottom: 6px; white-space: nowrap; flex: 0 0 auto; }
.price-rec { display: flex; justify-content: space-between; align-items: center; gap: 10px; background: var(--cream); border-radius: 12px; padding: 12px 15px; margin-top: 18px; font-size: 14px; color: var(--ink-2); }
.price-rec b { color: var(--ink); font-family: var(--display); white-space: nowrap; }
.price-feats { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; }
.price-feats .pf-c { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: color-mix(in oklch, var(--move) 24%, white); color: var(--move-deep); display: grid; place-items: center; margin-top: 1px; }
.price-card .btn { margin-top: 28px; width: 100%; }
.price-note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--ink-3); font-family: var(--display); display: flex; align-items: center; justify-content: center; gap: 9px; }
.price-edit { color: var(--blue-deep); }

/* ====================================================================
   GALLERY
   ==================================================================== */
.gallery { background: var(--paper); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-top: 50px; }
.gal-item { border-radius: var(--r-md); overflow: hidden; position: relative; box-shadow: var(--sh-sm); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-g1 { background: linear-gradient(150deg, var(--cream-2), var(--honey-soft)); }
.gal-g2 { background: linear-gradient(150deg, color-mix(in oklch, var(--sight) 25%, white), color-mix(in oklch, var(--sight) 50%, white)); }
.gal-g3 { background: linear-gradient(150deg, color-mix(in oklch, var(--touch) 25%, white), color-mix(in oklch, var(--touch) 48%, white)); }
.gal-g4 { background: linear-gradient(150deg, color-mix(in oklch, var(--move) 24%, white), color-mix(in oklch, var(--move) 46%, white)); }
.gal-g5 { background: linear-gradient(150deg, color-mix(in oklch, var(--sound) 24%, white), color-mix(in oklch, var(--sound) 46%, white)); }
.gal-g6 { background: linear-gradient(150deg, color-mix(in oklch, var(--smell) 26%, white), color-mix(in oklch, var(--smell) 50%, white)); }

/* ====================================================================
   KADRA
   ==================================================================== */
.kadra { background: var(--cream); }
.kadra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.kadra-card { background: var(--paper); border-radius: var(--r-lg); padding: 22px; text-align: center; box-shadow: var(--sh-sm); border: 1.5px solid var(--line); }
.kadra-photo { aspect-ratio: 1; position: relative; border-radius: var(--r-md); overflow: hidden; margin-bottom: 16px; background: linear-gradient(150deg, var(--cream-2), var(--honey-soft)); }
.kadra-card h4 { font-size: 19px; }
.kadra-role { font-family: var(--display); font-weight: 500; font-size: 13.5px; color: var(--blue-deep); margin-top: 3px; }
.kadra-card p { font-size: 14px; margin-top: 10px; color: var(--ink-2); }

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.testi { background: var(--cream); }
.testi .wrap { width: min(1340px, calc(100% - 48px)); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.testi-card { position: relative; background: var(--paper); border-radius: var(--r-lg); padding: 34px 28px 26px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 14px; }
.testi-q { position: absolute; top: -16px; left: 26px; width: 46px; height: 46px; border-radius: 14px; background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: 0 5px 0 var(--blue-deep); }
/* testimonial badges — single brand accent (base blue) */
.testi-stars { display: flex; gap: 2px; color: var(--blue); margin-top: 8px; }
.testi-card blockquote { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-2); flex: 1; }
.testi-foot { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(150deg, var(--cream-2), var(--honey-soft)); border: 1.5px solid var(--line-2); }
.testi-name { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); }
.testi-rel { font-size: 13px; color: var(--ink-3); }
.testi-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 50px; justify-content: center; width: 100%; font-family: var(--display); }
.testi-rating .tr-score { font-weight: 700; font-size: 30px; color: var(--ink); white-space: nowrap; }
.testi-rating .tr-stars { color: var(--blue); display: flex; gap: 2px; }

/* ====================================================================
   FAQ
   ==================================================================== */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq-aside { position: sticky; top: 100px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream); border-radius: var(--r-md); border: 1.5px solid var(--line); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--blue); }
.faq-q { width: 100%; border: none; background: none; text-align: left; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); }
.faq-ic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: color-mix(in oklch, var(--blue) 12%, white); color: var(--blue-deep); display: grid; place-items: center; transition: transform 0.25s, background 0.2s, color 0.2s; }
.faq-item.open .faq-ic { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 22px 22px; font-size: 15.5px; color: var(--ink-2); line-height: 1.6; }

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact { background: var(--cream); }
.contact-card {
  background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: 0.95fr 1.05fr; overflow: hidden; position: relative;
}
.contact-aside { background: var(--navy); color: #fff; padding: clamp(34px, 4vw, 52px); position: relative; overflow: hidden; }
.contact-aside h2 { color: #fff; font-size: clamp(27px, 3vw, 38px); }
.contact-aside .lede { margin-top: 18px; color: rgba(255,255,255,0.88); font-size: 16.5px; }
.contact-aside .eyebrow { background: none !important; color: rgba(255,255,255,0.92) !important; }
.contact-assure { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.contact-assure li { display: flex; align-items: flex-start; gap: 11px; line-height: 1.35; font-family: var(--display); font-weight: 600; font-size: 15.5px; color: #fff; }
.contact-assure .ca-c { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.24); color: #fff; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.contact-meta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.contact-meta a, .contact-meta span { display: flex; align-items: center; gap: 11px; font-weight: 700; color: #fff; font-size: 16px; }
.contact-bear { position: absolute; right: -10px; bottom: -14px; opacity: 0.92; }
.contact-form { padding: clamp(34px, 4vw, 52px); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line-2); background: var(--cream);
  transition: border-color 0.16s, box-shadow 0.16s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); background: #fff; }
.field textarea { resize: vertical; min-height: 92px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-left: 36px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%20stroke%3D%22%2358626F%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left 13px center;
  background-size: 16px;
  cursor: pointer;
}
.field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%20stroke%3D%22%2358626F%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left 13px center;
  background-size: 16px;
}
.cf-fine { font-size: 12.5px; color: var(--ink-3); margin-top: 18px; text-align: center; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.66); padding: 64px 0 30px; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand-name { color: #fff; }
.footer-about { font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer h5 { font-family: var(--display); font-weight: 600; font-size: 15px; color: #fff; margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-contact div { font-size: 14.5px; color: rgba(255,255,255,0.66); display: flex; align-items: center; gap: 9px; }
.footer-links a:hover { color: var(--honey); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; font-size: 13px; flex-wrap: wrap; }
.footer-bear { position: absolute; right: 4%; bottom: -8px; opacity: 0.14; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 980px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stage { order: -1; min-height: 300px; margin-bottom: 6px; }
  .hero-disc { width: min(340px, 78%); }
  .float-chip.fc-1 { left: 2%; }
  .float-chip.fc-2 { right: 2%; }
  .float-chip.fc-3 { left: 8%; }
  .why-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .faq-aside { position: static; top: auto; }
  .contact-aside { order: 2; }
  .contact-bear { display: none; }
  .offer-bear { display: none; }
  .zone-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-wide { grid-column: span 2; }
  .kadra-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.tall { grid-row: span 1; }
  .gal-item.wide { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; padding-bottom: 80px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 26px 14px; }
  .trust-item:nth-child(2)::after { display: none; }
  .hero-stage { min-height: 280px; }
  .float-chip { display: none; }
  .zone-grid, .price-grid, .gal-grid, .offer-grid { grid-template-columns: 1fr; }
  .zone-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .kadra-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .testi-grid { max-width: none; }
  .testi-rating { flex-wrap: wrap; }
  .testi-rating > span:last-child { flex-basis: 100%; text-align: center; margin-top: 2px; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .sticky { left: 0; right: 0; bottom: 0; width: 100%; transform: translateY(180%); border-radius: var(--r-lg) var(--r-lg) 0 0; padding: 10px 14px; }
  .sticky.show { transform: translateY(0); }
  .sticky-txt { display: none; }
  .sticky-acts { width: 100%; }
  .sticky-acts .btn { flex: 1; }
  .why-badge { left: 0; }
}
