/* ============================================================
   Cloud Profit — Marketing Website
   Design system derived from the product UI:
   - Primary blue  #2563EB (logo cloud / UI primary)
   - Success green #16A34A (logo check mark)
   - Font: Source Sans 3 (same as cloud-profit-ui)
   ============================================================ */

:root {
  /* Brand */
  --c-primary:        #2563eb;
  --c-primary-dark:   #1d4ed8;
  --c-primary-soft:   #eff4ff;
  --c-success:        #16a34a;
  --c-success-soft:   #ecfdf3;

  /* Neutrals (GitHub-ish, matches product) */
  --c-ink:            #0f172a;
  --c-body:          #334155;
  --c-muted:          #64748b;
  --c-subtle:         #94a3b8;
  --c-line:           #e2e8f0;
  --c-line-soft:      #eef2f6;
  --c-surface:        #ffffff;
  --c-surface-subtle: #f8fafc;
  --c-canvas:         #ffffff;

  /* Effects */
  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(15, 23, 42, .06);
  --shadow:     0 8px 30px rgba(15, 23, 42, .08);
  --shadow-lg:  0 24px 60px rgba(15, 23, 42, .12);
  --ring:       0 0 0 4px rgba(37, 99, 235, .14);

  /* Layout */
  --maxw:       1140px;
  --gutter:     24px;

  /* Type */
  --font: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--c-body);
  background: var(--c-canvas);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--c-ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { color: var(--c-body); }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--c-muted);
  font-weight: 400;
}

/* ── Layout helpers ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--subtle { background: var(--c-surface-subtle); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head p { margin-top: 14px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .28);
}
.btn--primary:hover { background: var(--c-primary-dark); box-shadow: 0 10px 24px rgba(37, 99, 235, .34); }

.btn--ghost {
  background: var(--c-surface);
  color: var(--c-ink);
  border-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--c-subtle); background: var(--c-surface-subtle); }

.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ── Header / Nav ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.brand img { width: 30px; height: 30px; }
.brand span b { color: var(--c-primary); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-body);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--c-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  background: var(--c-surface-subtle);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--c-muted);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 999px;
  transition: all .15s ease;
}
.lang-switch button.is-active {
  background: var(--c-surface);
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  border-radius: 10px;
  padding: 8px;
  color: var(--c-ink);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(37, 99, 235, .10), transparent 60%),
    radial-gradient(720px 380px at 6% 8%, rgba(22, 163, 74, .07), transparent 55%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { color: var(--c-success); flex: none; }

/* Hero visual: mock app window */
.hero-visual { position: relative; }
.mock-window {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-line-soft);
  background: var(--c-surface-subtle);
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; background: #e2e8f0; }
.mock-dot:nth-child(1) { background: #fda4af; }
.mock-dot:nth-child(2) { background: #fcd34d; }
.mock-dot:nth-child(3) { background: #86efac; }
.mock-url {
  margin-left: 10px;
  font-size: 12px;
  color: var(--c-subtle);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 7px;
  padding: 4px 12px;
}
.mock-body { display: grid; grid-template-columns: 1fr 1fr; }
.mock-doc {
  padding: 20px;
  border-right: 1px solid var(--c-line-soft);
  background:
    repeating-linear-gradient(transparent, transparent 13px, var(--c-line-soft) 13px, var(--c-line-soft) 14px);
}
.mock-doc-head {
  height: 38px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--c-primary-soft), #fff);
  border: 1px dashed #c7d7fb;
  margin-bottom: 16px;
}
.mock-fields { padding: 20px; display: grid; gap: 13px; }
.mock-field { display: grid; gap: 6px; }
.mock-field label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; color: var(--c-subtle);
}
.mock-field .val {
  height: 30px; border-radius: 7px;
  background: var(--c-surface-subtle);
  border: 1px solid var(--c-line);
  position: relative;
}
.mock-field .val::after {
  content: '';
  position: absolute; inset: 7px auto 7px 10px;
  width: 60%; border-radius: 4px;
  background: var(--c-line);
}
.mock-field.is-ai .val { border-color: #bbf7d0; background: var(--c-success-soft); }
.mock-field.is-ai .val::after { background: #86efac; }
.mock-tag {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--c-success);
  color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(22, 163, 74, .3);
  display: inline-flex; align-items: center; gap: 7px;
}

/* floating trust badge */
.float-badge {
  position: absolute;
  bottom: -22px; left: -18px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.float-badge .fb-icon {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: var(--c-primary-soft); color: var(--c-primary);
}
.float-badge .fb-num { font-weight: 700; color: var(--c-ink); font-size: 18px; line-height: 1; }
.float-badge .fb-label { font-size: 12px; color: var(--c-muted); }

/* ── Logos / trust strip ───────────────────────────────── */
.trust {
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  background: var(--c-surface-subtle);
}
.trust .container { padding-block: 26px; }
.trust-label {
  text-align: center; font-size: 13px; color: var(--c-subtle);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
  margin-bottom: 14px;
}
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: clamp(28px, 6vw, 64px);
  color: var(--c-subtle); font-weight: 700; font-size: 18px;
  opacity: .85;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }

/* ── Stats ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 28px 18px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat .num {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .label { margin-top: 10px; font-size: 14px; color: var(--c-muted); }

/* ── Steps (how it works) ──────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.step {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: 26px; right: 26px;
  font-size: 44px; font-weight: 800; color: var(--c-line);
  letter-spacing: -0.04em; line-height: 1;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--c-primary-soft); color: var(--c-primary);
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--c-muted); }

/* ── Features ──────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cdd9ea; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--c-success-soft); color: var(--c-success);
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 7px; }
.feature p { font-size: 15px; color: var(--c-muted); }

/* ── Split / showcase ──────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split--reverse .split-media { order: -1; }
.split-copy h2 { margin-bottom: 18px; }
.checklist { display: grid; gap: 14px; margin-top: 24px; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--c-body);
}
.checklist .ck {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-success-soft); color: var(--c-success);
  display: grid; place-items: center; margin-top: 1px;
}
.checklist b { color: var(--c-ink); font-weight: 600; }

.split-media .panel {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-head {
  padding: 16px 20px; border-bottom: 1px solid var(--c-line-soft);
  background: var(--c-surface-subtle);
  font-weight: 600; color: var(--c-ink); font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.panel-head .ph-icon { color: var(--c-primary); }
.panel-body { padding: 8px; }

/* mini table inside showcase */
.mini-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.mini-table th, .mini-table td { padding: 10px 12px; text-align: left; }
.mini-table thead th {
  font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--c-subtle); border-bottom: 1px solid var(--c-line);
}
.mini-table tbody tr { border-bottom: 1px solid var(--c-line-soft); }
.mini-table tbody tr:last-child { border-bottom: none; }
.mini-table .pill {
  display: inline-block; padding: 2px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.pill--green { background: var(--c-success-soft); color: var(--c-success); }
.pill--blue  { background: var(--c-primary-soft); color: var(--c-primary); }
.mini-table .mono { font-variant-numeric: tabular-nums; color: var(--c-ink); font-weight: 600; }

/* ── Pricing ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  display: flex; flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--featured {
  border-color: var(--c-primary);
  box-shadow: 0 18px 50px rgba(37, 99, 235, .18);
  position: relative;
}
.plan--featured::before {
  content: attr(data-badge);
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.plan-name { font-size: 1.15rem; font-weight: 700; color: var(--c-ink); }
.plan-desc { font-size: 14px; color: var(--c-muted); margin-top: 4px; min-height: 40px; }
.plan-price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-size: 2.6rem; font-weight: 800; color: var(--c-ink); letter-spacing: -0.03em; }
.plan-price .per { font-size: 15px; color: var(--c-muted); }
.plan-sub { font-size: 13px; color: var(--c-subtle); margin-bottom: 22px; }
.plan-features { display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.plan-features .ck {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-success-soft); color: var(--c-success);
  display: grid; place-items: center; margin-top: 2px;
}
.plan-features .ck--off { background: var(--c-surface-subtle); color: var(--c-subtle); }
.plan-features li.off { color: var(--c-subtle); }
.pricing-note {
  text-align: center; margin-top: 28px;
  font-size: 14px; color: var(--c-muted);
}

.plan-price .free { font-size: 2.6rem; font-weight: 800; color: var(--c-success); letter-spacing: -0.03em; }

/* Free-trial highlight bar above the tiers */
.trial-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--c-success-soft), #fff);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.trial-bar .tb-main { display: flex; align-items: center; gap: 18px; }
.trial-bar .tb-icon {
  width: 54px; height: 54px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: var(--c-success); color: #fff;
  box-shadow: 0 8px 20px rgba(22, 163, 74, .28);
}
.trial-bar .tb-name { font-size: 1.2rem; font-weight: 700; color: var(--c-ink); }
.trial-bar .tb-desc { font-size: 14.5px; color: var(--c-muted); margin-top: 2px; }
.trial-bar .tb-docs { font-weight: 600; color: var(--c-success); }
.trial-bar .btn { flex: none; }

@media (max-width: 560px) {
  .trial-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .trial-bar .tb-main { flex-direction: column; gap: 12px; }
  .trial-bar .btn { width: 100%; }
}

/* ── Testimonials ──────────────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.quote .stars { color: #f59e0b; margin-bottom: 14px; letter-spacing: 2px; }
.quote p { font-size: 16px; color: var(--c-body); }
.quote-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-primary-soft); color: var(--c-primary);
  display: grid; place-items: center; font-weight: 700; flex: none;
}
.quote-author .name { font-weight: 600; color: var(--c-ink); font-size: 15px; }
.quote-author .role { font-size: 13px; color: var(--c-muted); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.is-open { border-color: var(--c-primary); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: transparent; border: none;
  font-size: 16px; font-weight: 600; color: var(--c-ink);
  text-align: left;
}
.faq-q .chev { flex: none; color: var(--c-muted); transition: transform .25s ease; }
.faq-item.is-open .chev { transform: rotate(180deg); color: var(--c-primary); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 24px 20px; color: var(--c-muted); font-size: 15.5px; }

/* ── CTA band ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--c-primary), #1e40af);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 280px at 80% -20%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-cta { justify-content: center; position: relative; }
.cta-band .btn--primary { background: #fff; color: var(--c-primary); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: #f1f5f9; }
.cta-band .btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: clamp(48px, 6vw, 72px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand span b { color: #93b4fb; }
.footer-brand p { color: #94a3b8; font-size: 15px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { display: block; color: #94a3b8; font-size: 15px; padding: 5px 0; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 14px; color: #94a3b8; flex-wrap: wrap;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #cbd5e1;
  transition: background .15s ease, color .15s ease;
}
.footer-bottom .socials a:hover { background: var(--c-primary); color: #fff; }

/* ── i18n visibility ───────────────────────────────────── */
[data-i18n-hide] { display: none !important; }

/* ── Reveal on scroll ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; margin-inline: auto; }
  .float-badge { left: 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .feature-grid, .pricing-grid, .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-actions .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--c-surface); border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow); padding: 8px 0;
  }
  .nav.is-open .nav-links a { padding: 14px 24px; width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
