/* Orbit — Refined minimalism, Things 3 inspired */

/* ============ TOKENS ============ */

:root {
  /* Display: distinctive serif-adjacent grotesk */
  --font-display: "Söhne", "Tiempos Headline", -apple-system, "SF Pro Display", BlinkMacSystemFont, sans-serif;
  --font-text: -apple-system, "SF Pro Text", BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", monospace;

  /* Paper tones — warm, never pure white */
  --paper-1: #FDFCFA;       /* primary canvas */
  --paper-2: #F7F4ED;       /* sidebar / soft cream */
  --paper-3: #EFEBE1;       /* hover / divider band */
  --paper-4: #F9F6EF;       /* alt section */
  --paper-deep: #ECE6D7;    /* deeper accent band */

  /* Ink */
  --ink-1: #18181A;
  --ink-2: #2E2E32;
  --ink-3: #6D6D72;
  --ink-4: #9A9A9F;
  --ink-5: #C4C4C8;

  /* Lines — hairlines, never bold borders */
  --line: rgba(24, 24, 26, 0.08);
  --line-strong: rgba(24, 24, 26, 0.14);

  /* Accent — restrained */
  --accent: #1A73E8;
  --accent-deep: #1557B0;
  --accent-soft: rgba(26, 115, 232, 0.08);
  --accent-glow: rgba(26, 115, 232, 0.12);

  /* Signals */
  --success: #1E8E3E;
  --warning: #B07400;
  --danger: #C5221F;
  --unread: #EA4335;
  --google-blue: #4285F4;
  --google-green: #34A853;
  --google-yellow: #FBBC04;
  --google-red: #EA4335;
  --purple: #6750A4;

  /* Shadows — Things 3 signature: hairline + soft lift */
  --shadow-hairline: 0 0 0 0.5px rgba(24, 24, 26, 0.06);
  --shadow-card: 0 1px 2px rgba(24, 24, 26, 0.04), 0 0 0 0.5px rgba(24, 24, 26, 0.06);
  --shadow-card-hover: 0 10px 32px rgba(24, 24, 26, 0.10), 0 0 0 0.5px rgba(24, 24, 26, 0.06);
  --shadow-window:
    0 60px 120px -20px rgba(24, 24, 26, 0.18),
    0 30px 60px -16px rgba(24, 24, 26, 0.12),
    0 12px 24px rgba(24, 24, 26, 0.08),
    0 0 0 0.5px rgba(24, 24, 26, 0.10);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --max-width: 1180px;

  color-scheme: light;
}

/* ============ DARK MODE (system-driven, Things 3 way) ============ */

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    /* Warm dark — never pure black */
    --paper-1: #1A1A1C;
    --paper-2: #232325;
    --paper-3: #2D2D30;
    --paper-4: #1E1E20;
    --paper-deep: #28282B;

    /* Warm light text — never pure white */
    --ink-1: #F5F4F0;
    --ink-2: #D8D7D2;
    --ink-3: #9D9CA0;
    --ink-4: #6F6E73;
    --ink-5: #4A4A4F;

    /* Lines on dark — slightly visible */
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);

    /* Accent — brighter on dark for contrast */
    --accent: #4D9CF5;
    --accent-deep: #3B82F6;
    --accent-soft: rgba(77, 156, 245, 0.12);
    --accent-glow: rgba(77, 156, 245, 0.18);

    /* Shadows — invisible on dark, use borders instead */
    --shadow-hairline: 0 0 0 0.5px rgba(255, 255, 255, 0.08);
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 0 0.5px rgba(255, 255, 255, 0.06);
    --shadow-card-hover: 0 10px 32px rgba(0, 0, 0, 0.5), 0 0 0 0.5px rgba(255, 255, 255, 0.1);
    --shadow-window:
      0 60px 120px -20px rgba(0, 0, 0, 0.6),
      0 30px 60px -16px rgba(0, 0, 0, 0.4),
      0 12px 24px rgba(0, 0, 0, 0.3),
      0 0 0 0.5px rgba(255, 255, 255, 0.08);
  }

  /* Nav glass on dark */
  .nav {
    background: rgba(26, 26, 28, 0.72);
  }

  /* Hero grain — invert on dark */
  .hero::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: screen;
  }

  /* Hero radial glows — brighter on dark */
  .hero::after {
    background:
      radial-gradient(ellipse 50% 40% at 50% 50%, rgba(77, 156, 245, 0.18), transparent 60%),
      radial-gradient(ellipse 40% 30% at 30% 60%, rgba(147, 80, 199, 0.12), transparent 60%);
  }

  /* Italic serif quiet text — adjust gradient for dark */
  .hero h1 .quiet {
    background: linear-gradient(135deg, #6BA8F7, #B89CE5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Mockup decorative blurs — brighter on dark */
  .mockup-stage::before {
    background: rgba(77, 156, 245, 0.25);
  }
  .mockup-stage::after {
    background: rgba(147, 80, 199, 0.2);
  }

  /* Mockup unread row tint */
  .mockup-mail-row.unread {
    background: linear-gradient(90deg, rgba(77, 156, 245, 0.08), transparent);
  }

  /* Pricing featured card — invert on dark (light bg vs dark page) */
  .price-card.featured {
    background: var(--paper-1);
    color: var(--ink-1);
    border: 0.5px solid var(--line-strong);
  }
  .price-card.featured .price-tag,
  .price-card.featured .price-limit,
  .price-card.featured .price-amount sup,
  .price-card.featured .price-amount .price-unit {
    color: var(--ink-3);
  }
  .price-card.featured .price-amount {
    color: var(--ink-1);
  }
  .price-card.featured .price-features li {
    color: var(--ink-2);
  }
  .price-card.featured .price-features li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234D9CF5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  /* CTA Final stays dark in both modes — already designed for it */
  .cta-final {
    background: #0E0E10;
  }

  /* Focus card on dark — already dark, slight adjustment */
  .focus-card {
    background: linear-gradient(135deg, #0E0E10 0%, #1F1736 100%);
    box-shadow: var(--shadow-card-hover);
  }

  /* Header logo on dark — keep blue */
  /* (no change needed, SVG inline color preserved) */

  /* Selection */
  ::selection {
    background: var(--ink-1);
    color: var(--paper-1);
  }

  /* FAQ summary plus icon — lighter on dark */
  .faq-item summary::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239D9CA0' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  /* Hero meta checkmarks — brighter green on dark */
  .hero-meta svg {
    stroke: #4CAF50;
  }

  /* Trust logos */
  .trust-logo {
    color: var(--ink-4);
  }
  .trust-logo:hover {
    color: var(--ink-1);
  }

  /* Compare table header highlight on dark */
  .compare-table thead th.highlight {
    background: var(--accent);
    color: #fff;
  }
  .compare-table td.highlight {
    background: linear-gradient(180deg, rgba(77, 156, 245, 0.06), rgba(77, 156, 245, 0.10));
  }

  /* Pill ribbon on featured price card */
  .price-ribbon {
    background: var(--accent);
    box-shadow: 0 4px 12px rgba(77, 156, 245, 0.35);
  }

  /* Switch card avatars keep brightness */
  .switch-row.active {
    background: var(--paper-3);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-1);
  background: var(--paper-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

/* Selection */
::selection {
  background: var(--ink-1);
  color: var(--paper-1);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  background: rgba(253, 252, 250, 0.72);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border-bottom: 0.5px solid var(--line);
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink-1);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo svg { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s var(--ease-out);
  letter-spacing: -0.005em;
}

.nav-links a:hover { color: var(--ink-1); }

.nav-links a.btn {
  color: var(--paper-1);
}
.nav-links a.btn:hover {
  color: var(--paper-1);
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-text);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
  letter-spacing: -0.008em;
}

.btn-primary {
  background: var(--ink-1);
  color: var(--paper-1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), inset 0 0 0 0.5px rgba(255,255,255,0.06);
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14), inset 0 0 0 0.5px rgba(255,255,255,0.06);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(26,115,232,0.18);
}
.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(26,115,232,0.28);
}

.btn-secondary {
  background: var(--paper-1);
  color: var(--ink-1);
  box-shadow: var(--shadow-card);
}
.btn-secondary:hover {
  background: var(--paper-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  padding: 11px 18px;
}
.btn-ghost:hover {
  color: var(--ink-1);
}

.btn-large {
  padding: 14px 28px;
  font-size: 15.5px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.22s var(--ease-out);
  margin-left: 2px;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--paper-1);
  overflow: hidden;
  text-align: center;
}

/* Subtle grain texture — Things 3 paper feel */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Soft glow behind headline */
.hero::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(26, 115, 232, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 30% at 30% 60%, rgba(103, 80, 164, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero > .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  background: var(--paper-1);
  border: 0.5px solid var(--line);
  color: var(--ink-2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: -0.008em;
  box-shadow: var(--shadow-card);
  animation: rise 0.8s var(--ease-out) both;
}

.hero-badge .dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}
.hero-badge .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.25;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 80px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 auto 24px;
  max-width: 880px;
  color: var(--ink-1);
  animation: rise 0.9s 0.1s var(--ease-out) both;
}

.hero h1 .quiet {
  font-style: italic;
  font-family: "Tiempos Headline", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 21px;
  color: var(--ink-3);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.45;
  letter-spacing: -0.014em;
  animation: rise 0.9s 0.2s var(--ease-out) both;
}

.hero-sub kbd {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--paper-1);
  border: 0.5px solid var(--line-strong);
  border-radius: 6px;
  padding: 2px 8px;
  margin: 0 1px;
  color: var(--ink-1);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), inset 0 -1px 0 rgba(0,0,0,0.04);
  vertical-align: 1px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  animation: rise 0.9s 0.3s var(--ease-out) both;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
  margin-bottom: 100px;
  animation: rise 0.9s 0.4s var(--ease-out) both;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.005em;
}

.hero-meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ MOCKUP WINDOW (HERO CENTERPIECE) ============ */

.mockup-stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  animation: rise 1s 0.5s var(--ease-out) both;
}

/* Decorative side accents — like Things 3 floating cards */
.mockup-stage::before,
.mockup-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}
.mockup-stage::before {
  left: -100px;
  background: rgba(26, 115, 232, 0.18);
}
.mockup-stage::after {
  right: -100px;
  background: rgba(103, 80, 164, 0.14);
}

.mockup-window {
  background: var(--paper-1);
  border-radius: 16px;
  box-shadow: var(--shadow-window);
  overflow: hidden;
  text-align: left;
  position: relative;
}

.mockup-titlebar {
  height: 42px;
  background: var(--paper-2);
  border-bottom: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  position: relative;
}

.tl {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.tl-close { background: #FF5F57; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.06); }
.tl-min { background: #FEBC2E; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.06); }
.tl-max { background: #28C840; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.06); }

.mockup-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.mockup-body {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 480px;
}

.mockup-sidebar {
  background: var(--paper-2);
  border-right: 0.5px solid var(--line);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
}

.mockup-sb-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 6px 12px 10px;
}

.mockup-acct {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-1);
  margin-bottom: 1px;
  transition: background 0.18s var(--ease-out);
  cursor: default;
  letter-spacing: -0.008em;
}
.mockup-acct:hover { background: var(--paper-3); }
.mockup-acct.active { background: var(--paper-3); }
.mockup-acct.active .mockup-av {
  box-shadow: 0 0 0 2px var(--paper-2), 0 0 0 3.5px var(--accent);
}

.mockup-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.mockup-badge {
  margin-left: auto;
  background: var(--unread);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 19px;
  height: 17px;
  padding: 0 5px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.mockup-sb-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 0.5px solid var(--line);
}

.mockup-sb-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  background: linear-gradient(135deg, rgba(103,80,164,0.07), rgba(26,115,232,0.07));
  letter-spacing: -0.008em;
}

.mockup-sb-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mockup-main {
  display: flex;
  flex-direction: column;
  background: var(--paper-1);
}

.mockup-toolbar {
  height: 48px;
  border-bottom: 0.5px solid var(--line);
  background: var(--paper-2);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.mockup-toolbar-btn {
  width: 30px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
}
.mockup-toolbar-btn svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

.mockup-toolbar-search {
  margin-left: auto;
  width: 260px;
  height: 30px;
  background: var(--paper-1);
  border: 0.5px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-4);
}

.mockup-toolbar-search svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.mockup-mail-row {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 0.5px solid var(--line);
  font-size: 13.5px;
  align-items: center;
  cursor: default;
  transition: background 0.12s;
  letter-spacing: -0.005em;
}
.mockup-mail-row:hover { background: var(--paper-2); }
.mockup-mail-row.unread {
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.04), transparent);
  font-weight: 600;
  position: relative;
}
.mockup-mail-row.unread::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}
.mockup-mail-row.unread .mockup-time {
  color: var(--accent);
  font-weight: 700;
}

.mockup-from {
  color: var(--ink-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-subject {
  color: var(--ink-2);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-mail-row.unread .mockup-subject {
  color: var(--ink-1);
  font-weight: 500;
}

.mockup-time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

/* ============ TRUST BAR ============ */

.trust-bar {
  padding: 56px 0 24px;
  background: var(--paper-1);
  text-align: center;
}

.trust-bar p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 1; color: var(--ink-2); }

/* ============ FEATURES ============ */

.features {
  padding: 160px 0;
  background: var(--paper-1);
  position: relative;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
  margin-bottom: 18px;
  color: var(--ink-1);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

h2 em {
  font-style: italic;
  font-family: "Tiempos Headline", "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  font-size: 19px;
  color: var(--ink-3);
  margin: 0 auto 80px;
  max-width: 580px;
  letter-spacing: -0.012em;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--paper-1);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: all 0.32s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--accent-soft), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card:hover::after { opacity: 1; }

.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(26, 115, 232, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 0 0.5px rgba(26, 115, 232, 0.18);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  color: var(--ink-1);
}

.feature-card p {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.008em;
}

/* ============ SHOWCASE — Today/Switch/Focus visual ============ */

.showcase {
  padding: 0 0 160px;
  background: var(--paper-1);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 40px;
}

.showcase-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-row.reverse .showcase-visual { order: 1; }

.showcase-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.showcase-text h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.034em;
  margin-bottom: 18px;
  color: var(--ink-1);
}

.showcase-text p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.55;
  letter-spacing: -0.008em;
  margin-bottom: 14px;
}

.showcase-visual {
  position: relative;
}

/* Switch visual — 5 stacked tabs */
.switch-card {
  background: var(--paper-1);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 28px;
  position: relative;
}

.switch-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--ink-1);
  font-weight: 500;
  transition: all 0.22s var(--ease-out);
}
.switch-row.active {
  background: var(--paper-3);
}
.switch-row.active .switch-av {
  box-shadow: 0 0 0 2px var(--paper-1), 0 0 0 3.5px var(--accent);
}

.switch-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 12px;
}

.switch-kbd {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  padding: 3px 8px;
  background: var(--paper-2);
  border-radius: 5px;
  border: 0.5px solid var(--line);
}

/* Focus card — purple gradient */
.focus-card {
  background: linear-gradient(135deg, #1B1B1F 0%, #2A1E3F 100%);
  border-radius: 18px;
  padding: 36px 32px;
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.focus-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(103, 80, 164, 0.45), transparent 60%);
  pointer-events: none;
}

.focus-card > * { position: relative; }

.focus-album {
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  margin: 0 auto 24px;
  border-radius: 6px;
  background:
    radial-gradient(ellipse at 30% 20%, #5B7A9E, transparent 50%),
    linear-gradient(180deg, #2C4068 0%, #1A2942 100%);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 0.5px rgba(255,255,255,0.08);
  overflow: hidden;
}

.focus-album::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 70%, rgba(255,255,255,0.06), transparent 50%);
}

.focus-album::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.focus-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.focus-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.focus-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.focus-ctrl {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}

.focus-ctrl.play {
  width: 52px; height: 52px;
  background: #fff;
  color: var(--ink-1);
}

.focus-ctrl svg {
  width: 18px; height: 18px;
  fill: currentColor;
}
.focus-ctrl.play svg { width: 22px; height: 22px; }

/* ============ COMPARISON ============ */

.comparison {
  padding: 160px 0;
  background: var(--paper-4);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}

.compare-table-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: var(--paper-1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 0.5px solid var(--line);
  font-size: 14.5px;
  letter-spacing: -0.005em;
}

.compare-table thead th {
  background: var(--paper-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.compare-table thead th:first-child { width: 240px; }

.compare-table thead th.highlight {
  background: var(--ink-1);
  color: var(--paper-1);
  position: relative;
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table td.highlight {
  background: linear-gradient(180deg, rgba(26,115,232,0.04), rgba(26,115,232,0.06));
  font-weight: 600;
  color: var(--ink-1);
}

.compare-table .check {
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}

.compare-table .dash {
  color: var(--ink-5);
  font-weight: 600;
}

.compare-table td:first-child {
  color: var(--ink-2);
  font-weight: 500;
}

.compare-table .price-cell {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.015em;
}

/* ============ PRICING ============ */

.pricing {
  padding: 160px 0;
  background: var(--paper-1);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  padding: 40px 32px;
  background: var(--paper-1);
  border: 0.5px solid var(--line);
  border-radius: 20px;
  position: relative;
  transition: all 0.32s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-strong);
}

.price-card.featured {
  background: var(--ink-1);
  color: var(--paper-1);
  border: 0.5px solid rgba(255,255,255,0.1);
  transform: scale(1.04);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-card.featured .price-tag {
  color: rgba(255,255,255,0.6);
}
.price-card.featured .price-amount { color: var(--paper-1); }
.price-card.featured .price-amount sup,
.price-card.featured .price-amount .price-unit { color: rgba(255,255,255,0.55); }
.price-card.featured .price-limit { color: rgba(255,255,255,0.55); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
.price-card.featured .price-features li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.price-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
}

.price-tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 8px;
  color: var(--ink-1);
}

.price-amount sup {
  font-size: 26px;
  font-weight: 600;
  vertical-align: 24px;
  margin-right: 4px;
  color: var(--ink-3);
}

.price-amount .price-unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  margin-left: 6px;
  letter-spacing: -0.005em;
}

.price-limit {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 7px 0;
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A73E8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.price-card.featured .btn-primary {
  background: var(--paper-1);
  color: var(--ink-1);
}
.price-card.featured .btn-primary:hover {
  background: #fff;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-size: 13.5px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}

.pricing-note .dot-sep {
  margin: 0 12px;
  color: var(--ink-5);
}

/* ============ FAQ ============ */

.faq {
  padding: 160px 0;
  background: var(--paper-4);
  border-top: 0.5px solid var(--line);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
  background: var(--paper-1);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.25s var(--ease-out);
}

.faq-item:hover { box-shadow: var(--shadow-card-hover); }
.faq-item[open] { box-shadow: var(--shadow-card-hover); }

.faq-item summary {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  padding-right: 56px;
  position: relative;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--paper-3);
  border-radius: 50%;
  transition: all 0.25s var(--ease-out);
}

.faq-item summary::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236D6D72' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  z-index: 1;
  transition: transform 0.25s var(--ease-out);
}

.faq-item[open] summary::before {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 26px 24px;
  color: var(--ink-3);
  font-size: 15.5px;
  line-height: 1.6;
  letter-spacing: -0.008em;
}

.faq-item p a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.faq-item p a:hover { text-decoration: underline; }

/* ============ CTA FINAL ============ */

.cta-final {
  padding: 180px 0;
  text-align: center;
  background: var(--ink-1);
  color: var(--paper-1);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(26, 115, 232, 0.25), transparent 55%),
    radial-gradient(ellipse 30% 30% at 70% 60%, rgba(103, 80, 164, 0.18), transparent 60%);
  pointer-events: none;
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.cta-final > .container { position: relative; z-index: 2; }

.cta-final h2 {
  color: var(--paper-1);
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.cta-final h2 em {
  color: rgba(255,255,255,0.55);
}

.cta-final p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 44px;
  letter-spacing: -0.014em;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.cta-final .btn-primary {
  background: var(--paper-1);
  color: var(--ink-1);
}
.cta-final .btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 24px rgba(255,255,255,0.18);
}

/* ============ FOOTER ============ */

.footer {
  background: var(--paper-2);
  color: var(--ink-3);
  padding: 80px 0 48px;
  border-top: 0.5px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
}

.footer-brand .logo {
  color: var(--ink-1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.014em;
  margin-bottom: 14px;
  line-height: 1.45;
  max-width: 280px;
}

.footer-copy {
  font-size: 12.5px;
  color: var(--ink-4);
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-3);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.18s var(--ease-out);
  letter-spacing: -0.005em;
}

.footer-col a:hover {
  color: var(--ink-1);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-4);
}

/* ============ LEGAL PAGES ============ */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 40px 120px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: var(--ink-1);
  line-height: 1.05;
}

.legal .last-updated {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 48px;
  letter-spacing: -0.005em;
}

.legal h2 {
  text-align: left;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.025em;
  color: var(--ink-1);
  max-width: none;
}

.legal h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 12px;
  letter-spacing: -0.015em;
  color: var(--ink-1);
}

.legal p, .legal li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
  letter-spacing: -0.008em;
}

.legal ul, .legal ol {
  padding-left: 28px;
  margin-bottom: 20px;
}

.legal li { margin-bottom: 10px; }

.legal a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 0.5px solid rgba(26, 115, 232, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.18s var(--ease-out);
}
.legal a:hover { border-bottom-color: var(--accent); }

.legal strong { color: var(--ink-1); font-weight: 600; }

.legal code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--paper-3);
  padding: 1.5px 7px;
  border-radius: 5px;
  color: var(--ink-1);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1000px) {
  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
  .showcase-row.reverse .showcase-text { order: 1; }
  .showcase-row.reverse .showcase-visual { order: 2; }
}

@media (max-width: 800px) {
  .container { padding: 0 24px; }

  .hero { padding: 80px 0 60px; }
  .hero-sub { font-size: 17px; }
  .hero-meta { gap: 14px; font-size: 12px; margin-bottom: 60px; }

  .section-sub { font-size: 16px; }

  .features,
  .comparison,
  .pricing,
  .faq { padding: 100px 0; }
  .cta-final { padding: 120px 0; }
  .showcase { padding: 0 0 100px; }

  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }

  .mockup-body {
    grid-template-columns: 68px 1fr;
  }
  .mockup-acct > span:not(.mockup-av):not(.mockup-badge) { display: none; }
  .mockup-sb-label,
  .mockup-sb-btn span { display: none; }

  .mockup-mail-row {
    grid-template-columns: 90px 1fr 60px;
    gap: 10px;
    padding: 12px 14px;
    font-size: 12.5px;
  }

  .mockup-toolbar-search { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 12px;
    font-size: 12.5px;
  }

  .trust-logos { gap: 28px; }
  .trust-logo { font-size: 15px; }
}

@media (max-width: 480px) {
  .legal h1 { font-size: 36px; }
  .legal h2 { font-size: 22px; }
  .price-amount { font-size: 52px; }
}
