/* ─────────────────────────────────────────────────────────────────────
 * Gardia landing — global styles
 * Inherits the same gradient brand as the authenticated SPA (apps/web).
 * Palette: #6f5cf3 → #2bb6ff, Inter typography, light surface.
 * ──────────────────────────────────────────────────────────────────── */

:root {
  --bg: #f7f8fb;
  --bg-soft: #ffffff;
  --panel: #ffffff;
  --panel-2: #f3f5f9;
  --border: #e6e8ef;
  --border-strong: #d2d6e0;
  --text: #0f172a;
  --muted: #5b6473;
  --muted-2: #94a0b3;
  --accent: #6f5cf3;
  --accent-2: #2bb6ff;
  --accent-grad: linear-gradient(135deg, #6f5cf3 0%, #2bb6ff 100%);
  --accent-grad-soft: linear-gradient(135deg, rgba(111,92,243,0.12) 0%, rgba(43,182,255,0.12) 100%);
  --ok: #16a34a;
  --warn: #d97706;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 6px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,0.12);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 85% -10%, rgba(111,92,243,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(43,182,255,0.09), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01';
}

a { color: var(--accent); text-decoration: none; transition: color 120ms ease; }
a:hover { color: #4f3de0; }
h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.15; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 140ms ease;
  white-space: nowrap;
}
.btn:hover { border-color: var(--accent); transform: translateY(-1px); color: var(--text); }
.btn.primary {
  background: var(--accent-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(111,92,243,0.32);
}
.btn.primary:hover { filter: brightness(1.08); box-shadow: 0 8px 26px rgba(111,92,243,0.42); color: #fff; }
.btn.lg { padding: 0.92rem 1.6rem; font-size: 1rem; }
.btn.ghost { background: transparent; border-color: transparent; color: var(--muted); }
.btn.ghost:hover { color: var(--text); background: var(--panel-2); }

/* ── Top nav ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 251, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav-brand svg { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.93rem;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  margin-right: 0.4rem;
}
.lang-switch .lang {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--muted);
  transition: all 140ms ease;
  line-height: 1;
}
.lang-switch .lang:hover { color: var(--text); }
.lang-switch .lang.active {
  background: var(--accent-grad);
  color: #fff;
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .lang-switch { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  padding: 5.5rem 0 4rem;
  text-align: center;
  position: relative;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--accent-grad-soft);
  border: 1px solid rgba(111,92,243,0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 1.25rem;
}
.hero h1 .grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2.25rem;
}
.hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.dual-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 980px;
  margin: 3.5rem auto 0;
  text-align: left;
}
@media (max-width: 760px) {
  .dual-hero { grid-template-columns: 1fr; }
}
.dual-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.dual-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent-grad);
  opacity: 0.7;
}
.dual-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.dual-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.dual-card p { color: var(--muted); font-size: 0.94rem; }
.dual-card ul { margin-top: 0.9rem; display: grid; gap: 0.4rem; }
.dual-card li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex; gap: 0.5rem;
  align-items: flex-start;
}
.dual-card li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--accent-grad);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3.5 3.5L13 5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3.5 3.5L13 5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* ── Section scaffolding ──────────────────────────────────────────── */
.section {
  padding: 5.5rem 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ── Integrations strip ────────────────────────────────────────────── */
.int-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.int-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.int-chip img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.int-chip-ghost {
  border-style: dashed;
  background: transparent;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 600px) {
  .int-chip { font-size: 0.85rem; padding: 0.5rem 0.8rem; }
}

/* ── Features ──────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 940px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all 180ms ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(111,92,243,0.3);
}
.feature .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-grad-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature .ico svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.feature h3 { font-size: 1.05rem; margin-bottom: 0.45rem; font-weight: 600; }
.feature p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ── Industries ────────────────────────────────────────────────────── */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 940px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .industries { grid-template-columns: 1fr; } }
.industry {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all 180ms ease;
  position: relative;
}
.industry:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43,182,255,0.35);
}
.industry .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(43,182,255,0.18), rgba(111,92,243,0.12));
  margin-bottom: 1rem;
}
.industry .ico svg { width: 24px; height: 24px; stroke: var(--accent-2); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.industry h3 { font-size: 1.05rem; margin-bottom: 0.3rem; font-weight: 600; }
.industry .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.industry p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* ── Workflow strip ────────────────────────────────────────────────── */
.workflow {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 820px) { .workflow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .workflow { grid-template-columns: 1fr; } }
.step {
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.step .num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--accent-grad);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── Pricing ───────────────────────────────────────────────────────── */
.billing-toggle {
  display: inline-flex;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 2.5rem;
}
.billing-toggle button {
  appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 140ms ease;
}
.billing-toggle button.active {
  background: var(--accent-grad);
  color: #fff;
}
.billing-toggle .save {
  font-size: 0.7rem;
  background: rgba(22,163,74,0.15);
  color: var(--ok);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 0.35rem;
  font-weight: 600;
}
.billing-toggle button.active .save { background: rgba(255,255,255,0.22); color: #fff; }

.pricing {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
@media (max-width: 1100px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: rgba(111,92,243,0.5);
  box-shadow: 0 10px 36px rgba(111,92,243,0.18);
  transform: translateY(-4px);
}
.plan .badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.plan .price {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.15rem;
}
.plan .price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.2rem;
}
.plan .price.contact { font-size: 1.2rem; color: var(--muted); margin-top: 0.7rem; }
.plan .desc {
  font-size: 0.83rem;
  color: var(--muted);
  min-height: 2.6em;
  margin-bottom: 1rem;
}
.plan ul {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.plan li {
  font-size: 0.83rem;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  color: var(--text);
}
.plan li.muted { color: var(--muted-2); }
.plan li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.plan li.muted::before { content: '—'; color: var(--muted-2); }
.plan .btn { width: 100%; }

/* ── Trust strip ───────────────────────────────────────────────────── */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 0;
}
.trust .pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

/* ── Overage / metered billing ─────────────────────────────────────── */
.overage {
  position: relative;
  margin: 3.5rem auto 0;
  max-width: 980px;
  padding: 2.25rem 2rem 1.6rem;
  border-radius: 20px;
  background:
    radial-gradient(900px 240px at 50% -10%, rgba(111,92,243,0.10), transparent 70%),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2, var(--panel)) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(15,23,42,0.06);
  overflow: hidden;
}
.overage::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, #6f5cf3 0%, #2bb6ff 50%, #22d3ee 100%);
  opacity: 0.85;
}
.overage-head { text-align: center; max-width: 720px; margin: 0 auto 1.6rem; }
.overage-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #6f5cf3;
  background: rgba(111,92,243,0.10);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.overage-head h3 {
  font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}
.overage-head p {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.55; margin: 0;
}
.overage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.4rem;
}
@media (max-width: 900px) { .overage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .overage-grid { grid-template-columns: 1fr; } }
.ov-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.95rem 1rem 0.85rem;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.ov-card:hover {
  transform: translateY(-2px);
  border-color: rgba(111,92,243,0.35);
  box-shadow: 0 8px 22px rgba(111,92,243,0.10);
}
.ov-card-top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.6rem; margin-bottom: 0.35rem;
}
.ov-meter {
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  letter-spacing: -0.005em;
}
.ov-rate {
  font-size: 0.92rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #6f5cf3 0%, #2bb6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.ov-note {
  margin: 0;
  font-size: 0.78rem; color: var(--muted); line-height: 1.45;
}
.overage-foot {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  margin: 1.4rem 0 0;
  font-size: 0.78rem; color: var(--muted);
  line-height: 1.5; text-align: center;
}
.overage-foot svg { color: var(--muted); opacity: 0.7; flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: border-color 140ms ease;
}
.faq details[open] { border-color: rgba(111,92,243,0.3); }
.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 500;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 300;
  transition: transform 180ms ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq .answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ── Final CTA ─────────────────────────────────────────────────────── */
.cta-band {
  background: var(--accent-grad);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(111,92,243,0.3);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.cta-band p {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.cta-band .btn.primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.cta-band .btn.primary:hover { color: var(--accent); transform: translateY(-1px); }
.cta-band .btn:not(.primary) {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.cta-band .btn:not(.primary):hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.footer-grid h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.footer-grid ul { display: grid; gap: 0.5rem; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--text); }
.footer-brand p { margin-top: 0.85rem; max-width: 280px; line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* --- Booking page --- */
.book-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem 1.5rem;
  max-width: 760px;
}
.book-bullets li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.95rem;
}
.book-bullets svg {
  color: var(--accent-2, #2bb6ff);
  flex-shrink: 0;
}
.booking-frame {
  position: relative;
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.18);
  /* min-height tuned for Cal.com 30-min widget; iframe fills it */
  min-height: 720px;
}
.booking-frame iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: transparent;
}
.booking-fallback {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.booking-fallback a { color: var(--accent, #6f5cf3); text-decoration: none; font-weight: 500; }
.booking-fallback a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .booking-frame, .booking-frame iframe { min-height: 900px; height: 900px; }
}

/* ── Compliance / Trust section ───────────────────────────────────────── */
.compliance {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
  border-top: 1px solid rgba(91, 78, 229, 0.08);
}
.compliance .head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.compliance .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5b4ee5;
  background: rgba(91, 78, 229, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.compliance h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: #111827;
}
.compliance .lead { color: #4b5563; font-size: 16px; line-height: 1.6; margin: 0; }

.compliance .hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 920px;
}
.compliance .hs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(91, 78, 229, 0.14);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 8px 20px rgba(91, 78, 229, 0.05);
}
.compliance .hs-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.compliance .hs-text strong { font-size: 15px; color: #111827; }
.compliance .hs-text span { font-size: 12px; color: #6b7280; }
.compliance .hs-flag {
  display: flex;
  width: 42px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.compliance .band { flex: 1; height: 100%; }
.compliance .hs-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f4f7fc;
  border: 1px solid rgba(0, 120, 212, 0.14);
}
.compliance .hs-logo--eu { background: #eef2ff; border-color: rgba(0, 51, 153, 0.16); }
.compliance .hs-logo img { display: block; object-fit: contain; }
.compliance .hs-logo--eu img { border-radius: 3px; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06); }

.compliance .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.compliance .card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.compliance .card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #5b4ee5, #7c3aed);
  opacity: 0;
  transition: opacity 0.25s;
}
.compliance .card:hover {
  border-color: rgba(91, 78, 229, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(91, 78, 229, 0.1);
}
.compliance .card:hover::before { opacity: 1; }
.compliance .card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.compliance .card-badge {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f8f7ff;
  border: 1px solid rgba(91, 78, 229, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 4px 10px rgba(91, 78, 229, 0.06);
}
.compliance .card-badge img { display: block; object-fit: contain; }
.compliance .card-badge svg { display: block; }
.compliance .badge--azure { background: linear-gradient(135deg, #eaf4fc, #d6eaf8); border-color: rgba(0, 120, 212, 0.18); }
.compliance .badge--gdpr  { background: linear-gradient(135deg, #eef2ff, #dbe4ff); border-color: rgba(0, 51, 153, 0.18); }
.compliance .badge--iso   { background: linear-gradient(135deg, #eef5fb, #d6e6f2); border-color: rgba(10, 61, 98, 0.18); }
.compliance .badge--soc2  { background: linear-gradient(135deg, #fff5f4, #ffe4e0); border-color: rgba(192, 57, 43, 0.18); }
.compliance .badge--hds   { background: linear-gradient(135deg, #fff1ef, #ffd8d3); border-color: rgba(231, 76, 60, 0.18); }
.compliance .badge--rls   { background: linear-gradient(135deg, #f3f0ff, #e6dffc); border-color: rgba(124, 58, 237, 0.2); }
.compliance .card .tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b4ee5;
  background: rgba(91, 78, 229, 0.08);
  padding: 4px 9px;
  border-radius: 6px;
}
.compliance .card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.compliance .card p {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4b5563;
}
.compliance .proof {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  border-top: 1px dashed #e5e7eb;
  padding-top: 12px;
  margin-top: auto;
  margin-bottom: 0;
}
.compliance .checkmark {
  display: inline-flex;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.compliance .authorities {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(91, 78, 229, 0.1);
  text-align: center;
}
.compliance .auth-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 18px;
}
.compliance .auth-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
}
.compliance .auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}
.compliance .auth-logo:hover { color: #5b4ee5; transform: translateY(-1px); }
.compliance .auth-logo svg { flex-shrink: 0; }
@media (max-width: 900px) {
  .compliance .grid { grid-template-columns: repeat(2, 1fr); }
  .compliance .hero-strip { grid-template-columns: 1fr; max-width: 480px; }
  .compliance .auth-row { gap: 12px 20px; }
}
@media (max-width: 600px) {
  .compliance .grid { grid-template-columns: 1fr; }
  .compliance { padding: 60px 0 70px; }
  .compliance .auth-logo { font-size: 12px; }
}

/* ── Legal / policy pages (terms, privacy, refund, subprocessors, dpa, security, support) ── */
.legal {
  background: #fafafa;
  min-height: 100vh;
  padding: 3rem 1rem 4rem;
}
.legal .legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  color: #1f2937;
  line-height: 1.65;
}
.legal .legal-nav {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}
.legal .legal-nav a { color: #6d28d9; text-decoration: none; }
.legal .legal-nav a:hover { text-decoration: underline; }
.legal .legal-nav .sep { margin: 0 0.5rem; color: #d1d5db; }
.legal h1 {
  font-size: 2rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
  color: #111827;
}
.legal .effective {
  color: #6b7280;
  font-size: 13px;
  margin: 0 0 2rem;
}
.legal section { margin: 1.5rem 0; }
.legal h2 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: #111827;
}
.legal section p {
  margin: 0;
  font-size: 14.5px;
  color: #374151;
}
.legal a { color: #6d28d9; }
.legal hr { border: none; border-top: 1px solid #e5e7eb; margin: 2.5rem 0 1.5rem; }
.legal .footer-note { font-size: 13px; color: #6b7280; }
.legal .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 13.5px;
}
.legal .legal-table th {
  text-align: left;
  padding: 8px 12px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
  color: #111827;
}
.legal .legal-table td {
  padding: 8px 12px;
  vertical-align: top;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
}
@media (max-width: 640px) {
  .legal .legal-wrap { padding: 1.75rem 1.25rem 2.25rem; border-radius: 0; }
  .legal h1 { font-size: 1.5rem; }
  .legal .legal-table { font-size: 12.5px; }
  .legal .legal-table th, .legal .legal-table td { padding: 6px 8px; }
}

