/* ============================================================
   DDM — Marketing site theme (Meta Ads platform)
   Shares the app's lime / cream / ink palette
   ============================================================ */

:root {
  --bg: #ECECE7;
  --bg-2: #E4E4DE;
  --paper: #F4F4EF;
  --card: #FFFFFF;
  --ink: #14140F;
  --ink-2: #2A2A22;
  --muted: #6B6B65;
  --muted-2: #9C9C95;
  --hairline: rgba(20,20,15,0.08);

  --lime: #A8D26B;
  --lime-2: #93C254;
  --lime-3: #7BAA3E;
  --lime-tint: #E8F1D2;
  --lime-tint-2: #F2F7E6;
  --mustard: #D9D87A;
  --mustard-2: #C8C661;
  --mustard-tint: #F1F1C8;

  --positive: #6FAE3C;
  --negative: #D9534F;

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(20,20,15,0.03), 0 0 0 1px rgba(20,20,15,0.05);
  --shadow-pop: 0 24px 60px rgba(20,20,15,0.12), 0 0 0 1px rgba(20,20,15,0.05);
  --shadow-float: 0 30px 70px -20px rgba(20,20,15,0.35);

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01","cv11";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--lime); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime-3);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(168,210,107,0.25); }

h1, h2, h3 { letter-spacing: -0.03em; margin: 0; line-height: 1.05; }
.h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 800; }
.h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; }
.h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; }
.lead { font-size: clamp(16px, 1.5vw, 20px); color: var(--muted); line-height: 1.55; font-weight: 500; }
.tnum { font-feature-settings: "tnum"; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px;
  transition: transform .1s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-2); }
.btn-ghost { background: var(--card); color: var(--ink); box-shadow: var(--shadow-card); }
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-pop); }
.btn-outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.6px var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn .arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.18); display: grid; place-items: center;
}
.btn-lime .arrow, .btn-ghost .arrow, .btn-outline .arrow { background: rgba(20,20,15,0.1); }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(236,236,231,0.8);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--hairline); background: rgba(236,236,231,0.92); }
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 72px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.brand-name span { color: var(--lime-3); }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.nav-links a {
  padding: 9px 15px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  transition: background .15s ease;
}
.nav-links a:hover { background: rgba(20,20,15,0.05); }
.nav-links a.active { background: var(--ink); color: #fff; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; background: var(--card); box-shadow: var(--shadow-card); place-items: center; }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 72px 0 auto 0; z-index: 49;
  background: var(--bg); border-bottom: 1px solid var(--hairline);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 16px; border-radius: 12px; font-weight: 700; font-size: 16px; }
.mobile-menu a:hover { background: rgba(20,20,15,0.05); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ============ Sections ============ */
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .h2 { margin: 16px 0 18px; }

/* ============ Hero ============ */
.hero { padding: clamp(48px, 8vw, 96px) 0 0; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero h1 { margin: 22px 0 0; }
.hero .lead { margin: 24px 0 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust .label { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--card); box-shadow: var(--shadow-card);
  font-size: 12.5px; font-weight: 700;
}
.hero-badge svg { color: var(--lime-3); }

/* floating dashboard preview */
.hero-visual { position: relative; }
.preview-card {
  background: var(--card); border-radius: var(--r-lg);
  box-shadow: var(--shadow-float); overflow: hidden;
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
}
.preview-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--hairline);
}
.preview-dot { width: 10px; height: 10px; border-radius: 50%; background: #E0E0DA; }
.preview-dot.lime { background: var(--lime); }
.preview-body { padding: 20px; }
.float-chip {
  position: absolute;
  background: var(--card); border-radius: 16px;
  box-shadow: var(--shadow-pop); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.float-chip .ico {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; flex-shrink: 0;
}
.float-chip .big { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.float-chip .sm { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.float-chip.tl { top: -22px; left: -34px; }
.float-chip.br { bottom: -26px; right: -28px; }

/* ============ Logo strip ============ */
.logos { padding: 36px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.logos-label { text-align: center; font-size: 12.5px; font-weight: 700; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; opacity: 0.65; }
.logos-row .logo-item { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink-2); }

/* ============ Stats band ============ */
.stats-band { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(36px, 5vw, 56px); overflow: hidden; position: relative; }
.stats-band::after {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,210,107,0.35), transparent 65%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.stat-big { font-size: clamp(34px, 4.5vw, 54px); font-weight: 800; letter-spacing: -0.03em; }
.stat-big .u { color: var(--lime); }
.stat-label { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 600; margin-top: 6px; }

/* ============ Feature cards ============ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: var(--card); border-radius: var(--r-md); padding: 28px;
  box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.feat-ico {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--lime-tint); color: var(--lime-3);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feat-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.feat-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.feat-card.dark { background: var(--ink); color: #fff; }
.feat-card.dark p { color: rgba(255,255,255,0.65); }
.feat-card.dark .feat-ico { background: rgba(168,210,107,0.18); color: var(--lime); }
.feat-card.lime { background: linear-gradient(150deg, var(--lime-tint-2), var(--lime-tint)); }

/* ============ Split feature (image + text) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-text { order: 2; }
.split-text h2 { margin: 16px 0 18px; }
.split-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.split-list .check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); color: var(--ink); display: grid; place-items: center;
}
.split-visual {
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow-pop);
  overflow: hidden;
}

/* ============ Mini dashboard mock (reused) ============ */
.mock { font-feature-settings: "tnum"; }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-kpi { background: var(--paper); border-radius: 14px; padding: 14px; }
.mock-kpi .lbl { font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.mock-kpi .val { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; }
.mock-kpi .delta { font-size: 10.5px; font-weight: 700; margin-top: 2px; }
.mock-bars { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; align-items: end; height: 120px; margin-top: 14px; }
.mock-bar { border-radius: 7px 7px 4px 4px; }
.mock-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.mock-chip .d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ============ Compliance / trust ============ */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.trust-card {
  background: var(--card); border-radius: var(--r-md); padding: 30px;
  box-shadow: var(--shadow-card); display: flex; gap: 18px; align-items: flex-start;
}
.trust-ico {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  background: var(--ink); color: var(--lime); display: grid; place-items: center;
}
.trust-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 7px; }
.trust-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; justify-content: center; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: var(--r-pill);
  background: var(--card); box-shadow: var(--shadow-card); font-weight: 700; font-size: 14px;
}
.cert-badge .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--lime-tint); color: var(--lime-3); display: grid; place-items: center; }

/* ============ API / tech-provider section ============ */
.api-panel {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px); position: relative; overflow: hidden;
}
.api-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.api-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.api-list li { display: flex; gap: 14px; align-items: flex-start; }
.api-list .num {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: rgba(168,210,107,0.18); color: var(--lime);
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
}
.api-list h4 { margin: 0 0 3px; font-size: 15.5px; font-weight: 800; }
.api-list p { margin: 0; color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.5; }
.code-card {
  background: #0E0E0A; border-radius: var(--r-md); padding: 22px;
  font-family: var(--mono); font-size: 13px; line-height: 1.7;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  overflow-x: auto;
}
.code-card .c-key { color: #A8D26B; }
.code-card .c-str { color: #D9D87A; }
.code-card .c-com { color: rgba(255,255,255,0.4); }
.code-card .c-pun { color: rgba(255,255,255,0.55); }

/* ============ Steps ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step-card { background: var(--card); border-radius: var(--r-md); padding: 30px; box-shadow: var(--shadow-card); position: relative; }
.step-num {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-weight: 800; font-size: 18px; margin-bottom: 18px;
}
.step-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 7px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* ============ Testimonial ============ */
.quote-card {
  background: linear-gradient(150deg, var(--lime-tint-2), var(--mustard-tint));
  border-radius: var(--r-lg); padding: clamp(36px, 5vw, 60px);
}
.quote-card .q { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; }
.quote-meta { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.quote-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; }

/* ============ Pricing ============ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--card); border-radius: var(--r-lg); padding: 34px 30px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  position: relative; transition: transform .18s ease, box-shadow .18s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.price-card.featured { background: var(--ink); color: #fff; box-shadow: var(--shadow-float); }
.price-tag-pop {
  position: absolute; top: 22px; right: 26px;
  padding: 5px 12px; border-radius: 999px; background: var(--lime); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.price-name { font-size: 16px; font-weight: 800; }
.price-desc { font-size: 13.5px; color: var(--muted); margin-top: 6px; min-height: 40px; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.6); }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.price-amt .cur { font-size: 24px; font-weight: 700; color: var(--muted); }
.price-card.featured .price-amt .cur { color: rgba(255,255,255,0.6); }
.price-amt .num { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; }
.price-amt .per { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-card.featured .price-amt .per { color: rgba(255,255,255,0.6); }
.price-features { list-style: none; padding: 0; margin: 26px 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; font-weight: 600; }
.price-features .ck { width: 20px; height: 20px; border-radius: 50%; background: var(--lime-tint); color: var(--lime-3); display: grid; place-items: center; flex-shrink: 0; }
.price-card.featured .price-features .ck { background: rgba(168,210,107,0.2); color: var(--lime); }
.price-features .muted-li { color: var(--muted-2); }
.price-card.featured .price-features .muted-li { color: rgba(255,255,255,0.4); }

/* compare table */
.compare { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.compare thead th { background: var(--paper); font-weight: 800; font-size: 13px; }
.compare td.feat { font-weight: 600; }
.compare td.center, .compare th.center { text-align: center; }
.compare .yes { color: var(--lime-3); }
.compare .no { color: var(--muted-2); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border-radius: var(--r-md); box-shadow: var(--shadow-card); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; text-align: left; font-weight: 700; font-size: 16px; }
.faq-q .pm { width: 28px; height: 28px; border-radius: 50%; background: var(--lime-tint); color: var(--lime-3); display: grid; place-items: center; flex-shrink: 0; transition: transform .2s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ============ About ============ */
.about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { background: var(--card); border-radius: var(--r-md); padding: 28px; box-shadow: var(--shadow-card); }
.value-card .vico { width: 46px; height:46px; border-radius: 13px; background: var(--lime-tint); color: var(--lime-3); display:grid; place-items:center; margin-bottom:16px; }
.value-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--r-md); display: grid; place-items: center; font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.team-card h4 { font-size: 16px; font-weight: 800; margin: 0; }
.team-card .role { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* ============ Final CTA ============ */
.cta-band {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 90px) clamp(28px, 5vw, 72px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,210,107,0.4), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band .h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.7); margin: 18px auto 32px; max-width: 560px; }

/* ============ Footer ============ */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--hairline); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 16px 0 0; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.footer-col a { display: block; padding: 7px 0; font-size: 14px; color: var(--ink-2); font-weight: 600; }
.footer-col a:hover { color: var(--lime-3); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.footer-bottom .copy { font-size: 13px; color: var(--muted); }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal a { font-size: 13px; color: var(--muted); font-weight: 600; }
.footer-bottom .legal a:hover { color: var(--ink); }

/* ============ Booking modal ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,20,15,0.45); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop.open { display: flex; }
.booking {
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow-float);
  width: 100%; max-width: 880px; max-height: 90vh; overflow: hidden;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  animation: pop .2s ease;
}
@keyframes pop { from { transform: scale(0.97); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.booking-aside { background: var(--ink); color: #fff; padding: 40px 34px; position: relative; overflow: hidden; }
.booking-aside::after { content:""; position:absolute; bottom:-30%; right:-20%; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(168,210,107,0.35), transparent 65%); }
.booking-aside h3 { font-size: 24px; font-weight: 800; margin-bottom: 14px; position: relative; }
.booking-aside p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; position: relative; }
.booking-points { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; position: relative; }
.booking-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; font-weight: 600; }
.booking-points .ck { width: 22px; height: 22px; border-radius: 50%; background: rgba(168,210,107,0.2); color: var(--lime); display: grid; place-items: center; flex-shrink: 0; }
.booking-form { padding: 38px 34px; overflow-y: auto; }
.booking-form .close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 10px; background: var(--paper); display: grid; place-items: center; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bf-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.bf-field label { font-size: 13px; font-weight: 700; }
.bf-field input, .bf-field select, .bf-field textarea {
  font-family: inherit; font-size: 14px; padding: 12px 14px; border-radius: 12px;
  background: var(--paper); border: 1.6px solid transparent; outline: none; color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus { border-color: var(--lime); background: #fff; }
.booking-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 34px; }
.booking-success.show { display: flex; }
.booking-success .big-ck { width: 72px; height: 72px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin-bottom: 20px; }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero-grid, .split, .api-grid, .about-hero { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-text { order: 0; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .feat-grid, .steps-grid, .price-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .booking { grid-template-columns: 1fr; max-width: 460px; }
  .booking-aside { display: none; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-cta .btn-book-nav { display: none; }
  .nav-toggle { display: grid; }
  .feat-grid, .steps-grid, .price-grid, .value-grid, .team-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .float-chip { display: none; }
  .preview-card { transform: none; }
  .bf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .h1 { font-size: clamp(34px, 11vw, 48px); }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}


/* ============ Ratings / trust strip (replaces fake logos) ============ */
.ratings-row { display: flex; align-items: center; justify-content: center; gap: clamp(20px,4vw,52px); flex-wrap: wrap; }
.rating-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.rating-stars { display: flex; gap: 3px; color: var(--lime-3); }
.rating-label { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.rating-label b { color: var(--ink); }

/* ============ Product tour gallery ============ */
.tour { display: flex; flex-direction: column; gap: clamp(40px,6vw,80px); }
.tour-row { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.tour-row.rev .tour-text { order: 2; }
.tour-text .h3 { margin: 14px 0 14px; }
.tour-text .lead { font-size: 16px; }
.tour-text .tour-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tour-tag { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; background: var(--card); box-shadow: var(--shadow-card); font-size: 12.5px; font-weight: 700; }
.tour-tag svg { color: var(--lime-3); }

.frame { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow-pop); overflow: hidden; }
.frame-bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid var(--hairline); }
.frame-url { margin-left: 10px; font-size: 12px; font-weight: 700; color: var(--muted); background: var(--paper); padding: 5px 12px; border-radius: 999px; }
.frame-body { padding: 20px; }

/* tracker / integration grid inside mock */
.intg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.intg-card { background: var(--paper); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.intg-logo { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; font-size: 15px; color: #fff; }
.intg-name { font-size: 12.5px; font-weight: 800; }
.intg-status { font-size: 10.5px; font-weight: 700; }
.intg-btn { font-size: 11px; font-weight: 800; padding: 6px 0; border-radius: 8px; text-align: center; }
.intg-btn.connected { background: var(--lime-tint); color: var(--lime-3); }
.intg-btn.connect { background: var(--ink); color: #fff; }

/* account connect rows */
.acct-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: var(--paper); }
.acct-cbx { width: 20px; height: 20px; border-radius: 6px; background: var(--lime); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.acct-cbx.off { background: #fff; box-shadow: inset 0 0 0 1.5px #D8D8D2; }

/* report column chips */
.col-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 8px; font-size: 11.5px; font-weight: 700; background: var(--paper); }
.col-chip.on { background: var(--lime-tint); color: var(--lime-3); }
.col-chip .x { width: 14px; height: 14px; border-radius: 4px; display: grid; place-items: center; background: rgba(123,170,62,0.2); }

@media (max-width: 980px) {
  .tour-row { grid-template-columns: 1fr; gap: 32px; }
  .tour-row.rev .tour-text { order: 0; }
}
@media (max-width: 680px) {
  .intg-grid { grid-template-columns: 1fr 1fr; }
}


/* permission toggle pill (security panel) */
.toggle-pill { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; padding: 4px 12px; border-radius: 999px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.toggle-pill.on { background: var(--lime); color: #14140F; }


/* ============ Roles / org hierarchy ============ */
.org { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 760px; margin: 0 auto; }
.org-level { display: flex; flex-direction: column; align-items: center; position: relative; }
.org-connector { width: 2px; height: 28px; background: var(--hairline); }
.org-node {
  background: var(--card); border-radius: var(--r-md); box-shadow: var(--shadow-card);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; width: 100%; max-width: 380px;
}
.org-node.lead { background: var(--ink); color: #fff; }
.org-node .oico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; }
.org-node .otitle { font-size: 15px; font-weight: 800; }
.org-node .odesc { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.org-node.lead .odesc { color: rgba(255,255,255,0.6); }
.org-node .obadge { margin-left: auto; font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 999px; background: var(--lime-tint); color: var(--lime-3); white-space: nowrap; }
.org-node.lead .obadge { background: rgba(168,210,107,0.2); color: var(--lime); }
.org-branch { display: flex; align-items: flex-start; justify-content: center; gap: 20px; width: 100%; }
.org-branch .org-node { max-width: 320px; }
.org-fanout { position: relative; width: 100%; height: 28px; }

/* permissions matrix */
.perm-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); margin-top: 40px; }
.perm-table th, .perm-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.perm-table thead th { background: var(--paper); font-weight: 800; font-size: 12.5px; }
.perm-table th.center, .perm-table td.center { text-align: center; }
.perm-table .yes { color: var(--lime-3); font-weight: 800; }
.perm-table .no { color: var(--muted-2); }
.perm-table .feat { font-weight: 700; }

@media (max-width: 680px) {
  .org-branch { flex-direction: column; align-items: center; gap: 12px; }
  .org-node, .org-branch .org-node { max-width: 100%; }
  .perm-table { display: block; overflow-x: auto; white-space: nowrap; }
}


/* ============ Legal / article pages ============ */
.legal-hero { padding: clamp(48px,7vw,88px) 0 0; }
.legal-hero .h1 { font-size: clamp(34px,5vw,54px); }
.legal-hero .meta { color: var(--muted); font-size: 14px; font-weight: 600; margin-top: 16px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-toc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2px; }
.legal-toc a { padding: 9px 14px; border-radius: 10px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.legal-toc a:hover { background: rgba(20,20,15,0.05); color: var(--ink); }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 40px 0 14px; scroll-margin-top: 96px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 17px; font-weight: 800; margin: 24px 0 8px; }
.legal-body p, .legal-body li { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.legal-body ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.legal-body a { color: var(--lime-3); font-weight: 700; }
.legal-body a:hover { text-decoration: underline; }
.legal-card { background: var(--card); border-radius: var(--r-md); box-shadow: var(--shadow-card); padding: 22px 26px; margin: 20px 0; }
.legal-card .ttl { font-weight: 800; font-size: 15px; margin-bottom: 6px; }
.legal-divider { height: 1px; background: var(--hairline); margin: 40px 0; }

@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .legal-toc a { background: var(--card); box-shadow: var(--shadow-card); }
}
