/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy: #273F79;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg-alt: #f1f5f9;
  --radius: 12px;
  --max-w: 1100px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-white { background: #ffffff; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #f1f5f9; }
.text-center { text-align: center; }
.text-left { text-align: left !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #ffffff; }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.btn-disabled {
  background: #94a3b8;
  color: #ffffff;
  border-color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.65;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.2s;
}
.nav-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img { width: 38px; height: 38px; border-radius: 8px; }
.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: #ffffff; }
.nav-signin { color: rgba(255,255,255,0.4) !important; font-size: 0.85rem !important; }
.nav-cta { margin-left: 8px; padding: 8px 18px; font-size: 0.88rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 8px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  color: #ffffff;
  padding: 80px 24px 64px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(37,99,235,0.18);
  color: #93c5fd;
  border: 1px solid rgba(37,99,235,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-headline {
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  line-height: 1.65;
}
.hero-for {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 34px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-audience {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 480px;
}
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}
.hero-image img { width: 100%; height: auto; }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.65;
}

/* ============================================================
   COMPARISON
   ============================================================ */
#comparison { padding: 64px 0 72px; }
#comparison .section-sub { margin-bottom: 36px; }
.comparison {
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(37,99,235,0.18), 0 4px 16px rgba(15,23,42,0.08);
}
.comparison-row { display: grid; grid-template-columns: 1fr; }
.comparison-row:nth-child(even) { background: #f8fafc; }
.comparison-row:nth-child(odd) { background: #ffffff; }
.comparison-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 21px 28px;
  font-size: 1.05rem;
  line-height: 1.4;
}
.comparison-cell.good {
  font-weight: 600;
  color: var(--navy);
}
.icon-check { width: 25px; height: 25px; flex-shrink: 0; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 72px;
}
.feature-block:first-of-type { margin-top: 56px; }
.feature-block-reverse .feature-content { order: 2; }
.feature-block-reverse .feature-image { order: 1; }

.feature-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 10px;
}
.eyebrow-light { color: #93c5fd; }
.feature-title {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.title-light { color: #ffffff; }
.feature-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.feature-content p:last-child { margin-bottom: 0; }
.feature-content-light p { color: rgba(255,255,255,0.68); }
.feature-callout {
  background: #eff6ff;
  border-left: 3px solid #2563eb;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem !important;
  color: #1e40af !important;
  margin-top: 18px;
}
.feature-img { width: 100%; border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,0.10); }

/* Rotator */
.rotator {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  background: #f1f5f9;
}
.rotator-slide {
  width: 100%;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.8s ease;
}
.rotator-slide.active {
  opacity: 1;
  position: relative;
}
.rotator-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.rotator-tab {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.rotator-tab:hover { border-color: var(--muted); }
.rotator-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}
/* ============================================================
   PRIVACY
   ============================================================ */

/* ============================================================
   SETUP
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
.step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 18px 40px rgba(37,99,235,0.16);
}
.step:hover .step-number { background: #2563eb; }
.step-number {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
  transition: background 0.25s ease;
}
.step h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.mono {
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  background: #e2e8f0;
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
}
.setup-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}
.setup-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
}
.setup-link:hover { text-decoration: underline; }
.setup-link svg { flex-shrink: 0; }
.setup-cta { text-align: center; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 28px;
  align-items: start;
}
.pricing-card {
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card-featured {
  border-color: #2563eb;
  box-shadow: 0 8px 32px rgba(37,99,235,0.14);
}
.pricing-card:not(.pricing-card-soon):hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(37,99,235,0.16);
}
.pricing-card:not(.pricing-card-featured):not(.pricing-card-soon):hover {
  border-color: rgba(37,99,235,0.45);
}
.pricing-card-featured:hover {
  box-shadow: 0 22px 48px rgba(37,99,235,0.24);
}
.pricing-card-soon { opacity: 0.55; }
.pricing-badge {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.pricing-badge-soon { background: #f1f5f9; color: var(--muted); }
.pricing-tier { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.pricing-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-cycle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.pricing-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding-bottom: 4px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.cta-section { padding: 100px 24px; }
.cta-headline {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-attribution { font-size: 0.85rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060d1a;
  padding: 44px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 1.15rem;
}
.footer-logo { width: 30px; height: 30px; border-radius: 7px; opacity: 0.9; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
}
.footer-nav a { color: rgba(255,255,255,0.42); font-size: 0.85rem; transition: color 0.15s; }
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
}
.footer-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.footer-fact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.footer-fact-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
/* Nav collapses a little earlier than the rest of the tablet layout
   so the seven menu items never wrap onto two lines */
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 960px) {

  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 560px; margin: 0 auto; }

  .feature-block { grid-template-columns: 1fr; gap: 36px; margin-top: 56px; }
  .feature-block-reverse .feature-content { order: 0; }
  .feature-block-reverse .feature-image { order: 0; }

  .steps { grid-template-columns: 1fr 1fr; }

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

}

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .cta-section { padding: 72px 24px; }

  .hero-headline { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .brk { display: none; }


  .steps { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 220px;
}
.cookie-banner a { color: #93c5fd; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.15s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: #2563eb; color: #ffffff; }
.cookie-btn-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
