/* BraginHill landing — premium B2B SaaS */
:root {
  --landing-primary: #2563eb;
  --landing-primary-dark: #1d4ed8;
  --landing-primary-soft: #dbeafe;
  --landing-accent: #7c3aed;
  --landing-text: #0f172a;
  --landing-muted: #64748b;
  --landing-border: #e2e8f0;
  --landing-bg: #ffffff;
  --landing-alt: #f8fafc;
  --landing-radius: 18px;
  --landing-radius-sm: 12px;
  --landing-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --landing-shadow-hover: 0 24px 56px rgba(15, 23, 42, 0.12);
  --landing-container: 1200px;
  --landing-font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

.landing-body {
  margin: 0;
  font-family: var(--landing-font);
  color: var(--landing-text);
  background: var(--landing-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.landing-container {
  width: min(var(--landing-container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow 0.2s ease;
}

.landing-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.landing-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  color: var(--landing-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.landing-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}

.landing-logo-text strong {
  font-size: 20px;
  font-weight: 800;
}

.landing-logo-text small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.landing-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.landing-nav a {
  color: var(--landing-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.landing-nav a:hover { color: var(--landing-text); }

.landing-nav a.btn-primary,
.landing-nav a.btn-header-cta {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.landing-nav-login {
  margin-left: 4px;
}

.btn-header-cta {
  background: #1d4ed8;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.32);
  border: 1px solid #1e40af;
}

.btn-header-cta:hover {
  background: #1e40af;
  color: #fff;
  box-shadow: 0 10px 26px rgba(29, 78, 216, 0.38);
}

.landing-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.landing-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--landing-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.landing-burger.is-open span:nth-child(2) { opacity: 0; }
.landing-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.34);
}

.btn-secondary {
  background: #fff;
  color: var(--landing-text);
  border-color: var(--landing-border);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover { border-color: #cbd5e1; }

.btn-ghost {
  background: transparent;
  color: var(--landing-muted);
  border: none;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); }

.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

.link-btn {
  background: none;
  border: none;
  color: var(--landing-primary);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
}

.link-btn:hover { text-decoration: underline; }

/* Hero */
.landing-hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(124, 58, 237, 0.1), transparent 50%),
    linear-gradient(180deg, #f0f7ff 0%, #ffffff 72%);
  pointer-events: none;
}

.landing-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px 56px;
  align-items: center;
}

.landing-hero-copy {
  max-width: 560px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.landing-hero h1 {
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
  max-width: 14ch;
}

.landing-lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--landing-muted);
  margin: 0 0 28px;
  max-width: 46ch;
  line-height: 1.65;
}

.landing-hero-sub {
  font-size: clamp(18px, 1.7vw, 21px);
  color: #334155;
  font-weight: 500;
  max-width: 42ch;
}

.landing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.landing-trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  font-size: 15px;
  color: var(--landing-muted);
}

.landing-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* Hero mockup */
.landing-hero-mock { position: relative; min-height: 480px; }

.mock-app {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.mock-app-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--landing-border);
  font-size: 13px;
}

.mock-app-dots {
  display: inline-flex;
  gap: 5px;
}

.mock-app-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  font-style: normal;
  display: block;
}

.mock-app-dots i:nth-child(1) { background: #f87171; }
.mock-app-dots i:nth-child(2) { background: #fbbf24; }
.mock-app-dots i:nth-child(3) { background: #34d399; }

.mock-app-title {
  flex: 1;
  font-weight: 600;
  color: #334155;
}

.mock-app-status {
  font-size: 12px;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.mock-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 16px;
  padding: 16px;
}

.mock-float {
  position: absolute;
  top: -12px;
  right: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: 14px;
  box-shadow: var(--landing-shadow);
  font-size: 13px;
}

.mock-float-icon { font-size: 18px; }
.mock-float strong { display: block; font-size: 15px; }
.mock-float small { color: var(--landing-muted); font-size: 13px; }

.mock-main,
.mock-side > * {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius-sm);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.mock-main { padding: 20px; }

.mock-main-head strong { font-size: 16px; }

.mock-object-meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--landing-muted);
  font-weight: 500;
}

.mock-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.mock-status-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.mock-status-pill.demand {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.mock-status-pill.market {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.mock-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--landing-muted);
  margin-bottom: 4px;
}

.mock-badge-up {
  padding: 7px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  max-width: 140px;
  text-align: center;
  line-height: 1.3;
}

.mock-main-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.mock-calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--landing-muted);
  margin-bottom: 10px;
}

.mock-legend { display: inline-flex; gap: 4px; align-items: center; }
.mock-legend .lvl {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.mock-legend .lvl.low { background: #e2e8f0; }
.mock-legend .lvl.mid { background: #bfdbfe; }
.mock-legend .lvl.high { background: #60a5fa; }
.mock-legend .lvl.peak { background: #2563eb; }

.mock-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.mock-dow {
  font-size: 11px;
  color: var(--landing-muted);
  text-align: center;
  font-weight: 600;
}

.mock-day {
  border-radius: 8px;
  padding: 7px 4px;
  text-align: center;
  font-size: 12px;
  border: 1px solid transparent;
}

.mock-day em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}

.mock-day small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 3px;
}

.mock-day.low { background: #f1f5f9; color: #475569; }
.mock-day.mid { background: #dbeafe; color: #1e40af; }
.mock-day.high { background: #93c5fd; color: #1e3a8a; }
.mock-day.peak,
.mock-day.is-peak { background: #2563eb; color: #fff; }

.mock-peak-note {
  margin-top: 10px;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-stat {
  padding: 12px;
  border-radius: 10px;
  background: var(--landing-alt);
  font-size: 12px;
  color: var(--landing-muted);
}

.mock-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  color: var(--landing-text);
}

.mock-stat.accent {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.mock-stat .text-up { color: #047857; }

.mock-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.mock-chart-card,
.mock-rec-card,
.mock-comp-card {
  padding: 14px;
}

.mock-chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--landing-muted);
}

.mock-chart-head span { color: var(--landing-text); font-weight: 600; }

.mock-chart-bars,
.solution-panel-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 72px;
}

.mock-chart-bars span,
.solution-panel-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  opacity: 0.85;
}

.mock-rec-card {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border-color: #c7d2fe;
}

.mock-rec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--landing-muted);
}

.mock-rec-card p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.mock-rec-card small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--landing-muted);
}

.mock-comp-card span { font-size: 13px; color: var(--landing-muted); }
.mock-comp-card strong { display: block; font-size: 24px; margin: 4px 0; }
.mock-comp-card small { font-size: 12px; color: var(--landing-muted); }

/* Stats strip */
.landing-stats-strip {
  padding: 0 0 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.landing-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.landing-stat-card {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius-sm);
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.landing-stat-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.landing-stat-card span {
  font-size: 14px;
  color: var(--landing-muted);
}

/* Sections */
.landing-section { padding: 88px 0; }
.landing-section-alt { background: var(--landing-alt); }
.landing-section-pricing { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.landing-section-lead {
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(37, 99, 235, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(124, 58, 237, 0.06), transparent 50%),
    #fff;
}

.landing-section-head { margin-bottom: 36px; max-width: 720px; }
.landing-section-head-center { text-align: center; margin-left: auto; margin-right: auto; }

.landing-section h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.15;
}

.landing-section-sub {
  color: var(--landing-muted);
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
}

.landing-section-head-center .landing-section-sub { margin-left: auto; margin-right: auto; }

/* Cards */
.landing-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.landing-card {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  padding: 24px;
}

.landing-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.landing-card p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.55;
}

.landing-card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eff6ff;
  font-size: 20px;
  margin-bottom: 14px;
}

.landing-card-icon.problem {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.landing-card-problem { border-top: 3px solid #fb923c; }

.landing-card-audience .card-pain {
  font-size: 14px;
  margin-bottom: 10px;
  color: #94a3b8;
}

.landing-card-audience .card-value { margin-bottom: 14px; }

.card-plan {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.landing-hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--landing-shadow-hover);
  border-color: #cbd5e1;
}

/* Product deliverables */
.landing-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.landing-card-product h3 { font-size: 17px; }

/* Solution showcase */
.landing-section-solution {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.landing-solution-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 36px;
}

.solution-mock-large {
  padding: 24px;
}

.solution-dashboard {
  background: var(--landing-alt);
  border-radius: var(--landing-radius-sm);
  padding: 18px;
  border: 1px solid var(--landing-border);
}

.solution-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.solution-panel-chart-wrap {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--landing-border);
}

.solution-panel-chart-wrap > span {
  display: block;
  font-size: 13px;
  color: var(--landing-muted);
  margin-bottom: 10px;
}

.solution-mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.landing-solution-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-signal-card {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  padding: 20px;
}

.landing-signal-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.landing-signal-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.landing-signal-card p {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--landing-muted);
  line-height: 1.55;
}

.landing-signal-meta {
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
}

.landing-feature-list-wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  max-width: none;
  margin-top: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
}

.landing-feature-list-wide li {
  font-size: 15px;
}

/* Solution (legacy helpers) */
.landing-solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.solution-mock {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  padding: 22px;
  box-shadow: var(--landing-shadow);
}

.solution-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  color: #1e40af;
}

.solution-flow span {
  padding: 6px 10px;
  background: #eff6ff;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
}

.solution-flow i {
  font-style: normal;
  color: #94a3b8;
  font-size: 11px;
}

.solution-panel {
  background: var(--landing-alt);
  border-radius: var(--landing-radius-sm);
  padding: 16px;
}

.solution-panel-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--landing-border);
  font-size: 14px;
}

.solution-panel-row:last-of-type { border-bottom: none; }

.solution-panel-row .ok { color: #059669; }
.solution-panel-row .accent { color: #2563eb; font-size: 18px; }

.solution-panel-chart {
  margin-top: 14px;
  height: 56px;
}

.landing-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.landing-feature-list li {
  position: relative;
  padding-left: 30px;
  font-size: 17px;
  color: #334155;
}

.landing-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: inset 0 0 0 4px #dcfce7;
}

/* Steps */
.landing-steps-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.landing-steps-flow li {
  position: relative;
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  padding: 22px 18px;
  min-height: 150px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
}

.step-text {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.step-connector {
  display: none;
}

/* Benefits */
.landing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.landing-card-benefit h3 { font-size: 17px; }

/* Pricing */
.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card-featured {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.14);
  transform: scale(1.03);
}

.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.pricing-limit {
  color: var(--landing-muted);
  margin: 0;
  font-size: 15px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 6px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--landing-muted);
}

.pricing-daily {
  font-size: 14px;
  color: var(--landing-muted);
  margin-bottom: 8px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: grid;
  gap: 8px;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: #334155;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.pricing-desc {
  font-size: 14px;
  color: var(--landing-muted);
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}

.pricing-card-featured .btn-primary {
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

/* Trust */
.landing-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.landing-card-trust h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.landing-card-trust p { font-size: 14px; }

.landing-lead-outcomes {
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius-sm);
}

.landing-lead-outcomes h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.landing-lead-outcomes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.landing-lead-outcomes li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: #334155;
}

.landing-lead-outcomes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

/* Company trust */
.landing-section-company {
  padding: 0 0 88px;
  background: var(--landing-alt);
}

.landing-company-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--landing-shadow);
}

.landing-company-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.5vw, 30px);
}

.landing-company-card p {
  margin: 0 0 16px;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}

.landing-company-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.landing-company-points li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #334155;
}

.landing-company-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.landing-company-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--landing-alt);
  border-radius: var(--landing-radius-sm);
  border: 1px solid var(--landing-border);
}

.landing-company-links a {
  color: #1d4ed8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.landing-company-links a:hover { text-decoration: underline; }

/* Lead form */
.landing-lead-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.landing-lead-notes {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
  color: var(--landing-muted);
  font-size: 15px;
}

.landing-lead-notes li {
  padding-left: 22px;
  position: relative;
}

.landing-lead-notes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.landing-form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--landing-shadow);
}

.landing-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.landing-form input,
.landing-form textarea {
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.landing-form input:focus,
.landing-form textarea:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.landing-checkbox {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.landing-checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }
.landing-checkbox a { color: var(--landing-primary); }

.landing-form-legal {
  margin: 0;
  font-size: 12px;
  color: var(--landing-muted);
  text-align: center;
}

.landing-form-legal a { color: var(--landing-primary); }

/* FAQ */
.landing-faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.landing-faq-intro h2 { margin-bottom: 10px; }
.landing-faq-intro p { color: var(--landing-muted); margin: 0; font-size: 17px; }

.landing-faq { display: grid; gap: 12px; }

.landing-faq-item {
  border: 1px solid var(--landing-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.landing-faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.landing-faq-item[open] {
  border-color: #93c5fd;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.landing-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  padding: 18px 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-faq-item summary::-webkit-details-marker { display: none; }

.landing-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--landing-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.landing-faq-item[open] summary::after {
  content: '−';
  color: var(--landing-primary);
}

.landing-faq-body {
  padding: 0 20px 18px;
}

.landing-faq-body p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Final CTA */
.landing-cta-final {
  position: relative;
  padding: 96px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.landing-cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #7c3aed 100%);
}

.landing-cta-final-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

.landing-cta-final-inner {
  position: relative;
  z-index: 1;
}

.landing-cta-final h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.landing-cta-final p {
  margin: 0 0 28px;
  opacity: 0.92;
  font-size: 18px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.landing-cta-final .landing-hero-cta {
  justify-content: center;
}

.landing-cta-final .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

/* Footer */
.landing-footer {
  border-top: 1px solid var(--landing-border);
  padding: 56px 0 24px;
  background: #0f172a;
  color: #cbd5e1;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.landing-footer-brand p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 36ch;
}

.landing-footer .landing-logo { color: #fff; }

.landing-footer .landing-logo-text small { color: #94a3b8; }

.landing-footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.landing-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-footer-col a,
.landing-footer-col button {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  text-align: left;
}

.landing-footer-col a:hover,
.landing-footer-col button:hover { color: #fff; }

.landing-footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 13px;
  color: #64748b;
}

/* Reveal animation */
.landing-reveal {
  animation: landingFadeUp 0.7s ease both;
}

.landing-reveal-delay {
  animation-delay: 0.12s;
}

@keyframes landingFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legal pages */
.legal-page .legal-content { padding: 48px 0 72px; }
.legal-doc-body h2 { margin-top: 28px; font-size: 22px; }
.legal-doc-body h3 { margin-top: 20px; font-size: 18px; }
.legal-doc-body p, .legal-doc-body li { color: #334155; font-size: 16px; }
.legal-version { font-size: 13px; color: var(--landing-muted); }

.alert { padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.hidden { display: none !important; }

.landing-nav-open { overflow: hidden; }

/* Cookies */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
}

.cookie-banner-inner {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  font-size: 14px;
}

.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-modal-panel {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: min(480px, 100%);
  display: grid;
  gap: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .landing-cards-4,
  .landing-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-solution-showcase,
  .landing-company-card {
    grid-template-columns: 1fr;
  }

  .landing-feature-list-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-steps-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
    order: -1;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 900px) {
  .landing-burger { display: inline-flex; }

  .landing-nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--landing-border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .landing-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .landing-nav a,
  .landing-nav .btn {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .landing-nav .btn { width: 100%; margin-top: 8px; }

  .landing-hero { padding: 72px 0 56px; }
  .landing-hero-grid,
  .landing-solution-grid,
  .landing-solution-showcase,
  .landing-lead-grid,
  .landing-faq-grid,
  .landing-company-card {
    grid-template-columns: 1fr;
  }

  .landing-hero-copy { max-width: none; }

  .landing-hero h1 { max-width: none; }

  .landing-hero-mock { min-height: auto; margin-top: 12px; }

  .mock-shell { grid-template-columns: 1fr; }
  .mock-side { padding-top: 0; }
  .mock-float { position: static; margin-bottom: 10px; width: fit-content; }

  .landing-product-grid { grid-template-columns: 1fr; }
  .landing-feature-list-wide { grid-template-columns: 1fr; }

  .landing-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-benefits-grid { grid-template-columns: 1fr; }
  .landing-section { padding: 64px 0; }
  .landing-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .landing-body { font-size: 16px; }
  .landing-container { width: min(var(--landing-container), calc(100% - 28px)); }
  .landing-cards-4,
  .landing-stats-grid,
  .landing-steps-flow,
  .landing-trust-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-cta .btn { width: 100%; }
  .landing-cta-final .landing-hero-cta .btn { width: 100%; }
  .mock-stats-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-reveal,
  .landing-reveal-delay,
  .landing-hover-lift,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
