/* ============================================================
   MOOD — design system v2
   Umbraco-style one-to-one: warm cream canvas, deep navy ink,
   indigo CTAs, full-color peach & lavender bands, glass nav,
   staggered entrance animations, duotone illustrated icons.
   The Mood logo gradient (pink #FF6AC2 → blue #5ABEFF) is the
   single brand accent on top of the Umbraco palette.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

:root {
  --cream: #F0F0EE; /* Umbraco-style light gray canvas */
  --paper: #FFFFFF;
  --ink: #20285C;
  --body-c: #4A5170;
  --muted: #8A8DA8;

  --indigo: #3544B1;
  --indigo-deep: #2A3690;
  --navy: #1C2350;
  --navy-2: #232C63;

  --peach: #F6C7B6;
  --peach-soft: #FBE4DA;
  --peach-deep: #EE9E82;
  --lavender: #DFE2F8;
  --lav-soft: #EDEFFB;
  --lav-deep: #8B93E8;
  --mint-soft: #DFF0E6;

  --pink: #FF6AC2;
  --sky: #5ABEFF;
  --grad: linear-gradient(90deg, #FF6AC2, #9B9DE7, #5ABEFF);

  --r-band: 32px;
  --r-card: 20px;
  --gutter: 16px;
  --ok: #2E9E5B;
  --warn: #E8A013;
  --info: #2778C4;

  --ease-out: cubic-bezier(.16, .84, .28, 1);
  --shadow-card: 0 2px 14px rgba(32, 40, 92, .06);
  --shadow-float: 0 30px 70px rgba(32, 40, 92, .18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--body-c);
  line-height: 1.65;
  padding: 0 var(--gutter) var(--gutter);
  -webkit-font-smoothing: antialiased;
}

/* ---------- ENTRANCE ANIMATIONS ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.anim { opacity: 0; animation: rise .85s var(--ease-out) forwards; }
.anim.d1 { animation-delay: .08s; }
.anim.d2 { animation-delay: .2s; }
.anim.d3 { animation-delay: .34s; }
.anim.d4 { animation-delay: .48s; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.12); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 25px) scale(.92); }
}
@keyframes shimmer {
  0% { transform: translateX(-70%) skewX(-14deg); }
  100% { transform: translateX(240%) skewX(-14deg); }
}

@media (prefers-reduced-motion: reduce) {
  .anim, .reveal { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .orb { animation: none !important; }
}

/* ---------- ICONS ---------- */
.ic { width: 26px; height: 26px; display: block; }
.icon-chip {
  width: 54px; height: 54px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--peach-soft);
}
.icon-chip.alt { background: var(--lav-soft); }
.icon-chip.on-color { background: rgba(255, 255, 255, .8); }

/* ---------- NAV (glass) ---------- */
.nav-wrap {
  position: sticky; top: 14px; z-index: 200;
  max-width: 1560px; margin: 14px auto 0;
}
.nav-wrap nav {
  background: rgba(255, 254, 251, .68);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(32, 40, 92, .10);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 26px;
  min-height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 34px; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 700; color: var(--ink);
  text-decoration: none; padding: 6px 2px; position: relative;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--indigo); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 3px; border-radius: 3px; background: var(--grad);
}
.nav-cta-group { display: flex; align-items: center; gap: 10px; }

/* burger (mobile only) */
.nav-burger {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: none; background: var(--lav-soft); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex-shrink: 0; padding: 0;
}
.nav-burger span {
  display: block; width: 18px; height: 2.5px; border-radius: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease-out), opacity .2s ease;
}
.nav-wrap.open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-wrap.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-wrap.open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--indigo); color: #fff;
  border-radius: 999px; padding: 9px 10px 9px 26px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: background .2s ease, transform .2s var(--ease-out), box-shadow .2s ease;
}
.btn:hover { background: var(--indigo-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(53, 68, 177, .32); }
.btn .arr {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--indigo);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
  transition: transform .2s var(--ease-out);
}
.btn:hover .arr { transform: translateX(3px); }
.btn.btn-sm { font-size: 14px; padding: 6px 8px 6px 20px; }
.btn.btn-sm .arr { width: 32px; height: 32px; font-size: 14px; }
.btn.btn-ink { background: var(--ink); }
.btn.btn-ink:hover { background: var(--navy); box-shadow: 0 12px 28px rgba(32, 40, 92, .3); }
.btn.btn-ink .arr { color: var(--ink); }
.btn.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 7px 24px; }
.btn.btn-ghost:hover { background: var(--ink); color: #fff; box-shadow: none; }
.hero .btn.btn-ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.hero .btn.btn-ghost:hover { background: #fff; color: var(--ink); }

/* ---------- BANDS ---------- */
.band {
  max-width: 1560px; margin: var(--gutter) auto 0;
  border-radius: var(--r-band);
  padding: 96px 24px;
  overflow: hidden; position: relative;
}
.band .inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 2; }
.band-white { background: var(--paper); }
.band-peach { background: var(--peach); }
.band-lav { background: var(--lavender); }
.band-navy { background: var(--navy); color: #C6CAE8; }
.band-cream { background: transparent; padding-top: 56px; padding-bottom: 56px; }
.band-flat { background: transparent; }

/* dark band glow */
.band-navy::before, .band-navy::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; z-index: 1;
}
.band-navy::before { width: 520px; height: 520px; background: #FF6AC2; top: -220px; right: -140px; opacity: .28; }
.band-navy::after { width: 480px; height: 480px; background: #3544B1; bottom: -220px; left: -120px; opacity: .55; }
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy p { color: #C6CAE8; }
/* white cards inside a navy band keep their ink text */
.band-navy .env-box h3, .band-navy .sec-card h3, .band-navy .feature-card h3,
.band-navy .audience-card h3, .band-navy .benefit-card h3, .band-navy .cap-item h3 { color: var(--ink); }
.band-navy .env-box p, .band-navy .sec-card p, .band-navy .feature-card p,
.band-navy .audience-card p, .band-navy .benefit-card p, .band-navy .cap-item p { color: var(--muted); }

/* on peach band, text stays ink */
.band-peach h2, .band-peach h3 { color: var(--ink); }
.band-peach p { color: #5A4A45; }
.band-peach .check-item { color: #5A4A45; border-color: rgba(32, 40, 92, .14); }

/* ---------- TYPE ---------- */
h1, h2, h3 { color: var(--ink); font-weight: 900; letter-spacing: -0.015em; }
h1 { font-size: clamp(40px, 5.4vw, 72px); line-height: 1.04; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.1; margin-bottom: 16px; max-width: 760px; }
h3 { font-size: 18px; line-height: 1.3; margin-bottom: 8px; }
p  { font-size: 16.5px; }
.lead { font-size: clamp(17px, 1.6vw, 21px); max-width: 640px; margin-bottom: 36px; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 900; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  background: var(--grad); flex-shrink: 0;
}
.band-navy .eyebrow { color: #AAB2F0; }
.band-peach .eyebrow { color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 660px;
  color: #fff;
  background: linear-gradient(120deg, #171D45 0%, #232C63 48%, #3544B1 100%);
  padding: 96px 24px 72px;
}
.band .orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.band .orb-1 { width: 560px; height: 560px; right: -120px; top: -180px; background: radial-gradient(circle, rgba(255,106,194,.55), transparent 65%); animation: floatA 14s ease-in-out infinite; }
.band .orb-2 { width: 480px; height: 480px; right: 240px; bottom: -220px; background: radial-gradient(circle, rgba(90,190,255,.5), transparent 65%); animation: floatB 17s ease-in-out infinite; }
.band .orb-3 { width: 420px; height: 420px; left: -160px; top: 40px; background: radial-gradient(circle, rgba(246,199,182,.34), transparent 65%); animation: floatA 20s ease-in-out infinite reverse; }
.hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero.has-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23, 29, 69, .85) 0%, rgba(23, 29, 69, .38) 48%, rgba(23, 29, 69, .12) 100%);
}
.hero .inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: #fff; max-width: 820px; }
.hero .lead { color: rgba(255, 255, 255, .92); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-slim { min-height: 540px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 7px 18px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: #fff; margin-bottom: 26px;
}
.hero-kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }

/* ---------- IMAGE PLACEHOLDER (designed) ---------- */
.ph {
  border-radius: var(--r-card); overflow: hidden; position: relative;
  min-height: 340px;
  background:
    radial-gradient(120% 130% at 12% 8%, rgba(255, 106, 194, .16), transparent 55%),
    radial-gradient(130% 120% at 92% 90%, rgba(90, 190, 255, .18), transparent 55%),
    linear-gradient(135deg, #F6C7B6, #DFE2F8 60%, #EDEFFB);
}
.ph::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  animation: shimmer 3.2s ease-in-out infinite;
}
.ph .ph-mark {
  position: absolute; inset: 0; margin: auto;
  width: 130px; height: 130px; opacity: .16;
}
.ph .ph-chip {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 6px 15px;
  font-size: 12px; font-weight: 700; color: var(--ink);
}
.ph .ph-chip .ic { width: 17px; height: 17px; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }

/* ---------- TRUST BAR + LOGO MARQUEE ---------- */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-stats { display: flex; gap: 60px; flex-wrap: wrap; }
.stat-num { font-size: 52px; font-weight: 900; line-height: 1; display: block; color: var(--indigo); }
.stat-label { font-size: 13.5px; font-weight: 700; color: var(--muted); margin-top: 7px; display: block; letter-spacing: .4px; }

@keyframes marquee { to { transform: translateX(-50%); } }
.logo-marquee { overflow: hidden; position: relative; margin-top: 48px; }
.logo-marquee::before, .logo-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.logo-track { display: flex; gap: 48px; align-items: center; width: max-content; animation: marquee 60s linear infinite; }
.logo-track img {
  height: 37px; width: auto; max-width: 170px; object-fit: contain; display: block;
  filter: grayscale(1); opacity: .65;
  transition: filter .25s ease, opacity .25s ease;
}
.logo-track img[src*="bmw"],
.logo-track img[src*="ormat"],
.logo-track img[src*="sodastream"] { height: 44px; max-width: 200px; }
.logo-track img:hover { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* ---------- FEATURE CARDS ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.feature-card {
  background: var(--paper); border-radius: var(--r-card); padding: 36px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(32, 40, 92, .05);
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(32, 40, 92, .12); }
.feature-card h3 { font-size: 20px; margin: 18px 0 10px; }
.feature-card p { font-size: 15px; }

/* ---------- CHECK LIST ---------- */
.check-list { display: flex; flex-direction: column; margin-top: 26px; }
.check-item {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 15.5px; color: var(--body-c);
  padding: 11px 0; border-bottom: 1px solid rgba(32, 40, 92, .1);
}
.check-item:last-child { border-bottom: none; }
.check-item::before {
  content: "✓"; font-weight: 900; font-size: 13px; flex-shrink: 0;
  width: 23px; height: 23px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--indigo); color: #fff;
  transform: translateY(4px);
}
.band-peach .check-item::before { background: var(--ink); }

/* ---------- TWO COLUMN ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ---------- UI MOCKUP ---------- */
.ui-mock {
  background: var(--paper); border-radius: var(--r-card);
  box-shadow: var(--shadow-float);
  overflow: hidden; font-size: 12px;
}
.ui-chrome { display: flex; align-items: center; gap: 8px; background: var(--navy); padding: 13px 16px; }
.ui-dot { width: 10px; height: 10px; border-radius: 50%; }
.ui-dot.d1 { background: #FF6AC2; } .ui-dot.d2 { background: #9B9DE7; } .ui-dot.d3 { background: #5ABEFF; }
.ui-url {
  flex: 1; margin-left: 10px; background: rgba(255,255,255,.13); color: #B9BCE0;
  border-radius: 6px; padding: 4px 12px; font-size: 11px; letter-spacing: .3px;
}
.ui-body { display: grid; grid-template-columns: 150px 1fr; min-height: 300px; }
.ui-side { background: #F6F5FB; padding: 16px 0; border-right: 1px solid #ECEAF5; }
.ui-side-item { padding: 8px 18px; font-weight: 700; color: var(--muted); }
.ui-side-item.on { color: var(--indigo); background: #E8E9F8; border-right: 3px solid var(--indigo); }
.ui-main { padding: 20px 22px; }
.ui-line { height: 10px; border-radius: 5px; background: #EDECF4; margin-bottom: 10px; }
.ui-line.title { height: 16px; width: 55%; background: #DDDCEC; }
.ui-line.w80 { width: 80%; } .ui-line.w65 { width: 65%; } .ui-line.w90 { width: 90%; }
.ui-chip-row { display: flex; gap: 6px; margin: 14px 0; }
.ui-chip { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--lav-soft); color: var(--indigo); }
.ui-chip.ai { background: var(--peach-soft); color: #B4573A; }

/* ---------- LANGUAGE TABLE ---------- */
.lang-panel { background: var(--paper); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-float); }
.lang-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.lang-head-title { font-size: 15px; font-weight: 900; color: var(--ink); }
.scenario-tag {
  font-size: 10.5px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
  background: var(--peach-soft); color: #B4573A; padding: 4px 12px; border-radius: 999px;
}
.lang-row {
  display: grid; grid-template-columns: 130px 1fr 92px; gap: 16px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid #F0EFF6;
}
.lang-row:last-of-type { border-bottom: none; }
.lang-name { font-size: 14px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.lang-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lang-bar-wrap { height: 8px; background: #EFEEF6; border-radius: 999px; overflow: hidden; }
.lang-bar { height: 100%; border-radius: 999px; }
.bar-live { background: linear-gradient(90deg, #33B873, #2E9E5B); }
.bar-review { background: linear-gradient(90deg, #5ABEFF, #2778C4); }
.bar-draft { background: linear-gradient(90deg, #F5C445, #E8A013); }
.status-pill { font-size: 11px; font-weight: 900; padding: 4px 0; border-radius: 999px; text-align: center; letter-spacing: .3px; }
.pill-live { background: #E4F5EA; color: #237747; }
.pill-review { background: #E2F0FC; color: #1D609E; }
.pill-draft { background: #FBF2D8; color: #A87508; }
.lang-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* ---------- BENEFIT (numbered) CARDS ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.benefit-card {
  background: var(--paper); border-radius: var(--r-card); padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
  border: 1px solid rgba(32, 40, 92, .05);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(32, 40, 92, .12); }
.benefit-num { font-size: 14px; font-weight: 900; letter-spacing: 2px; display: block; margin-bottom: 16px; color: var(--peach-deep); }
.benefit-card h3 { font-size: 17px; }
.benefit-card p { font-size: 14px; }

/* ---------- TESTIMONIALS (carousel) ---------- */
.testi-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.testi-head h2 { margin-bottom: 0; }
.car-btns { display: flex; gap: 10px; flex-shrink: 0; }
.car-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  font-size: 19px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease, color .18s ease, transform .18s var(--ease-out);
}
.car-btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.testi-carousel {
  display: flex; gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 26px;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
@media (hover: none) {
  .testi-carousel { scroll-snap-type: x proximity; }
}
.testi-carousel::-webkit-scrollbar { display: none; }
.testi-carousel.dragging { cursor: grabbing; user-select: none; }
.testi-carousel .testimonial-card {
  flex: 0 0 min(480px, 82vw);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.testi-carousel .testimonial-author { margin-top: auto; }

.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.testimonial-card {
  background: var(--paper); border-radius: var(--r-card); padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(32, 40, 92, .05);
}
.testimonial-card blockquote { font-size: 20px; line-height: 1.5; color: var(--ink); font-weight: 700; margin-bottom: 28px; }
.testimonial-card blockquote::before {
  content: "“"; display: block; font-size: 58px; line-height: .6; margin-bottom: 16px;
  color: var(--peach-deep);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: 15px;
}
.avatar.a1 { background: linear-gradient(135deg, #EE9E82, #E27D5F); }
.avatar.a2 { background: linear-gradient(135deg, #8B93E8, #3544B1); }
.author-name { font-size: 14.5px; font-weight: 900; color: var(--ink); }
.author-org { font-size: 13px; color: var(--muted); }

/* ---------- TAGS ---------- */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.tag {
  font-size: 13.5px; font-weight: 700; padding: 9px 19px;
  border-radius: 999px; color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
}
.band-white .tag, .band-cream .tag { color: var(--ink); background: var(--lav-soft); border-color: transparent; }

/* ---------- GEO CARD ---------- */
.geo-card {
  background: var(--paper); border-radius: var(--r-card); padding: 30px;
  display: flex; flex-direction: column; gap: 22px;
  box-shadow: var(--shadow-float);
}
.geo-score-panel { display: flex; align-items: center; gap: 22px; padding-bottom: 22px; border-bottom: 1px solid #F0EFF6; }
.geo-score-circle { width: 94px; height: 94px; border-radius: 50%; flex-shrink: 0; background: var(--grad); padding: 4px; }
.geo-score-inner {
  width: 100%; height: 100%; border-radius: 50%; background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.geo-score-num { font-size: 31px; font-weight: 900; color: #fff; line-height: 1; }
.geo-score-label { font-size: 8.5px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; color: #AAB2F0; margin-top: 4px; }
.geo-headline { font-size: 16px; font-weight: 900; color: var(--ink); }
.geo-sub { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.geo-signals, .geo-llm-row { display: flex; gap: 12px; }
.geo-signal, .geo-llm-item {
  flex: 1; background: #F7F6FB; border-radius: 14px; padding: 15px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.geo-signal .ic { width: 24px; height: 24px; }
.geo-name { font-size: 12.5px; font-weight: 700; color: var(--body-c); }
.geo-check { font-size: 14px; font-weight: 900; color: var(--ok); }
.geo-kicker { font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }

/* ---------- AUDIENCE / CAPABILITY / SECURITY ---------- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.audience-card { background: var(--paper); border-radius: var(--r-card); padding: 38px; box-shadow: var(--shadow-card);   border: 1px solid rgba(32, 40, 92, .05);
}
.audience-card .aud-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.audience-card h3 { font-size: 20px; margin-bottom: 0; }

.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.cap-item {
  background: var(--paper); border-radius: var(--r-card); padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
  border: 1px solid rgba(32, 40, 92, .05);
}
.cap-item:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(32, 40, 92, .12); }
.cap-item .icon-chip { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; }
.cap-item .ic { width: 24px; height: 24px; }
.cap-item h3 { font-size: 16px; }
.cap-item p { font-size: 13.5px; color: var(--muted); }

.env-row { display: grid; grid-template-columns: 1fr 44px 1fr 44px 1.15fr; align-items: stretch; gap: 0; margin: 48px 0 28px; }
.env-box { background: var(--paper); border-radius: var(--r-card); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-card);   border: 1px solid rgba(32, 40, 92, .05);
}
.env-box .icon-chip { margin: 0 auto; }
.env-box h3 { font-size: 17px; margin: 14px 0 4px; }
.env-box p { font-size: 13px; color: var(--muted); }
.env-tag {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700;
  padding: 5px 13px; border: 1.5px solid rgba(32, 40, 92, .18); border-radius: 999px; color: var(--body-c);
}
.env-tag.hl { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.env-box-highlight { outline: 3px solid var(--indigo); outline-offset: -3px; }
.env-arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--ink); opacity: .5; }
.band-navy .env-arrow { color: #fff; opacity: .65; }

.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sec-card { background: var(--paper); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-card);   border: 1px solid rgba(32, 40, 92, .05);
}
.sec-card .icon-chip { width: 46px; height: 46px; border-radius: 13px; }
.sec-card .ic { width: 23px; height: 23px; }
.sec-card h3 { font-size: 15px; margin-top: 14px; }
.sec-card p { font-size: 13px; color: var(--muted); }

/* ---------- TRENDS ---------- */
.trends-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.trend-card {
  background: var(--paper); border-radius: var(--r-card); padding: 40px 34px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  border-top: 5px solid transparent;
}
.trend-card.t1 { border-top-color: var(--peach-deep); }
.trend-card.t2 { border-top-color: var(--lav-deep); }
.trend-card.t3 { border-top-color: var(--indigo); }
.trend-num { font-size: 12px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; display: block; color: var(--peach-deep); }
.trend-card.t2 .trend-num { color: var(--lav-deep); }
.trend-card.t3 .trend-num { color: var(--indigo); }
.trend-claim { font-size: 22px; font-weight: 900; color: var(--ink); line-height: 1.26; margin-bottom: 16px; }
.trend-body { font-size: 14.5px; }

/* ---------- FEATURES 3x3 ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.feature-cell {
  background: var(--paper); border-radius: var(--r-card); padding: 32px 30px;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
  border: 1px solid rgba(32, 40, 92, .05);
}
.feature-cell:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(32, 40, 92, .12); }
.feature-cell .icon-chip { margin-bottom: 16px; }
.feature-name { font-size: 16px; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.feature-desc { font-size: 13.5px; color: var(--body-c); }

/* ---------- STAT CARDS (cloud) ---------- */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.stat-card {
  background: var(--paper); border-radius: var(--r-card); padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid rgba(32, 40, 92, .05);
}
.stat-card .stat-num { font-size: 38px; }

/* ---------- REGIONS CARD (cloud) ---------- */
.region-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  padding: 13px 0; border-bottom: 1px solid #F0EFF6;
}
.region-row:last-of-type { border-bottom: none; }
.region-name { font-size: 14px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 10px; }

/* ---------- CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: start; }
.contact-form {
  background: var(--paper); border-radius: var(--r-card); padding: 40px;
  box-shadow: var(--shadow-float);
}
.form-header h2 { font-size: 24px; margin-bottom: 6px; }
.form-header p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-fields .full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1.5px solid #E4E3EE; border-radius: 12px;
  padding: 13px 16px; font-size: 14.5px; color: var(--ink);
  font-family: inherit; background: #FAFAFD; outline: none;
  transition: border-color .18s ease, background .18s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--indigo); background: #fff;
}
.contact-form ::placeholder { color: #A6A8C0; }
.contact-form select { appearance: none; cursor: pointer; color: #A6A8C0; }
.contact-form select:valid { color: var(--ink); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; border: none; cursor: pointer; justify-content: center;
  margin-top: 18px; font-family: inherit;
}
.audience-list { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; padding-top: 36px; border-top: 1px solid rgba(32, 40, 92, .1); }
.audience-item { display: flex; gap: 16px; align-items: flex-start; }
.audience-item .icon-chip { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; }
.audience-item .ic { width: 23px; height: 23px; }
.audience-title { font-size: 15.5px; font-weight: 900; color: var(--ink); margin-bottom: 3px; }
.audience-desc { font-size: 13.5px; color: var(--body-c); }

/* ---------- ABOUT ---------- */
.about-prose p { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.8; max-width: 760px; }
.about-prose p + p { margin-top: 26px; }

/* ---------- FINAL CTA ---------- */
.cta-band { text-align: center; }
.cta-band .inner { max-width: 680px; }
.cta-band h2 { margin-left: auto; margin-right: auto; font-size: clamp(32px, 3.8vw, 52px); }
.cta-band p { margin: 18px auto 38px; max-width: 540px; }

/* ---------- FOOTER ---------- */
footer.site-footer {
  max-width: 1560px; margin: var(--gutter) auto 0;
  background: #1C2350; border-radius: var(--r-band);
  padding: 60px 48px 40px; color: #E6E8F5;
  position: relative; overflow: hidden;
}
.footer-top { position: relative; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-brand img { height: 44px; display: block; }
.footer-tagline { font-size: 13.5px; color: #B9BDD9; margin-top: 14px; max-width: 300px; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 14.5px; font-weight: 700; color: #FFFFFF; text-decoration: none; opacity: .92; transition: opacity .15s; }
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12.5px; color: #C9CCE4; text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.footer-copy { font-size: 12.5px; color: #C9CCE4; }

/* ---------- LEGAL PAGES ---------- */
.legal-prose { max-width: 780px; }
.legal-prose h2 { font-size: 24px; margin: 40px 0 12px; }
.legal-prose p, .legal-prose li { font-size: 16px; line-height: 1.8; }
.legal-prose ul { margin: 12px 0 12px 22px; }
.legal-updated { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .benefit-grid, .stat-cards { grid-template-columns: 1fr 1fr; }
  .trends-grid, .features-grid, .cap-grid, .sec-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .env-row { grid-template-columns: 1fr; gap: 10px; }
  .env-arrow { transform: rotate(90deg); }
}
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links { display: none; }
  .nav-wrap.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 300;
    background: rgba(255, 254, 251, .98);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(32, 40, 92, .18);
    padding: 16px;
  }
  .nav-wrap.open .nav-links a {
    font-size: 17px; padding: 13px 16px; border-radius: 14px;
  }
  .nav-wrap.open .nav-links a:hover { background: var(--lav-soft); }
  .nav-wrap.open .nav-links a.active::after { display: none; }
  .nav-wrap.open .nav-links a.active { background: var(--lav-soft); }
  .btn.btn-sm { font-size: 13px; padding: 8px 16px; }
  .btn.btn-sm .arr { display: none; }
  .two-col, .feature-grid, .testimonial-grid, .audience-grid { grid-template-columns: 1fr; gap: 32px; }
  .band { padding: 64px 20px; }
  .hero { min-height: 540px; padding-bottom: 48px; }
  .trust-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .benefit-grid, .trends-grid, .features-grid, .cap-grid, .sec-grid { grid-template-columns: 1fr; }
  .testi-carousel .testimonial-card { flex-basis: 70vw; }
  .testi-carousel .testimonial-card blockquote { font-size: 17px; }
  .car-btn { width: 46px; height: 46px; }
  body { padding: 0 8px 8px; }
  .nav-wrap { top: 8px; }
}
