@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,600;0,700;1,600;1,700&family=JetBrains+Mono:wght@400;500;600&family=Nunito+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #111318;
  --surface: #ffffff;
  --bg: #f5f4f0;
  --bg2: #eeecea;
  --blue: #1847f5;
  --blue2: #3060ff;
  --blue-lt: #eef2ff;
  --blue-bd: rgba(24,71,245,0.18);
  --green: #059669;
  --green-lt: #ecfdf5;
  --green-bd: rgba(5,150,105,0.2);
  --amber: #b45309;
  --border: rgba(17,19,24,0.1);
  --border2: rgba(17,19,24,0.06);
  --muted: rgba(17,19,24,0.45);
  --muted2: rgba(17,19,24,0.3);
  --display: 'Lora', Georgia, serif;
  --mono: 'JetBrains Mono', monospace;
  --body: 'Nunito Sans', sans-serif;
  --shadow: 0 1px 4px rgba(17,19,24,0.06), 0 4px 16px rgba(17,19,24,0.06);
  --shadow-lg: 0 4px 24px rgba(17,19,24,0.1), 0 12px 48px rgba(17,19,24,0.08);

  --footer-bg: #e8e6e0;
  --footer-border: rgba(17,19,24,0.1);
  --footer-text: black;
  --footer-text-hover: rgba(17,19,24,0.85);
  --footer-heading: blue;
  --footer-brand: #111318;
  --footer-divider: rgba(17,19,24,0.08);
  --footer-copy: rgba(17,19,24,0.3);
}

[data-theme="dark"] {
  --ink: #f5f5f7;
  --surface: #1a1a1e;
  --bg: #0d0d0f;
  --bg2: #16161a;
  --blue: #4d7cff;
  --blue2: #6690ff;
  --blue-lt: #1a2340;
  --blue-bd: rgba(77,124,255,0.25);
  --green: #10b981;
  --green-lt: #0f2e24;
  --green-bd: rgba(16,185,129,0.25);
  --amber: #f59e0b;
  --border: rgba(245,245,247,0.1);
  --border2: rgba(245,245,247,0.06);
  --muted: rgba(245,245,247,0.5);
  --muted2: rgba(245,245,247,0.35);
  --shadow: 0 1px 4px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.4), 0 12px 48px rgba(0,0,0,0.3);

  --footer-bg: #000000;
  --footer-border: rgba(255,255,255,0.07);
  --footer-text: white;
  --footer-text-hover: rgba(255,255,255,0.75);
  --footer-heading: blue;
  --footer-brand: #ffffff;
  --footer-divider: rgba(255,255,255,0.06);
  --footer-copy: rgba(255,255,255,0.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ══════════════════════════════════════════════
   THEME TOGGLE
══════════════════════════════════════════════ */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all 0.3s ease;
}
.theme-toggle:hover { transform: scale(1.1) rotate(15deg); box-shadow: 0 6px 32px rgba(24,71,245,0.4); }
.theme-toggle:active { transform: scale(0.95); }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border2);
  transition: box-shadow 0.2s, background 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(24,71,245,0.25);
}
.logo-name {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-name span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links > li > a {
  font-size: 13px;
  font-family: var(--body);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.15s;
  display: block;
}
.nav-links > li > a:hover { color: var(--ink); background: var(--bg2); }

.nav-item { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-family: var(--body);
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.15s;
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-item:hover .nav-dropdown-trigger {
  color: var(--ink);
  background: var(--bg2);
}
.nav-dropdown-arrow {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s ease;
  display: inline-block;
  line-height: 1;
}
.nav-item:hover .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 230px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.12s;
}
.nav-dropdown-item:hover { background: var(--bg2); }
.nav-dropdown-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--blue-lt);
  border: 1px solid var(--blue-bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.nav-dropdown-label { display: flex; flex-direction: column; gap: 1px; }
.nav-dropdown-label strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.3;
}
.nav-dropdown-label span {
  font-size: 10px;
  color: var(--muted);
  font-family: var(--mono);
}
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-solid-sm {
  padding: 7px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-family: var(--body);
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(24,71,245,0.25);
  white-space: nowrap;
}
.btn-solid-sm:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-ghost-sm {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 13px;
  font-family: var(--body);
  font-weight: 600;
  color: var(--muted);
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-ghost-sm:hover { color: var(--ink); border-color: var(--border2); background: var(--bg2); }

/* ── Hamburger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.nav-burger:hover { background: var(--bg2); border-color: var(--blue-bd); }
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  padding: 12px 16px 20px;
  flex-direction: column;
  gap: 2px;
  animation: slideDown 0.22s ease;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mob-flat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-family: var(--body);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 9px;
  transition: all 0.15s;
}
.mob-flat-link:hover { color: var(--ink); background: var(--bg2); }

.mob-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-family: var(--body);
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.mob-accordion-btn:hover { color: var(--ink); background: var(--bg2); }
.mob-accordion-btn .mob-arrow {
  font-size: 9px;
  opacity: 0.45;
  transition: transform 0.2s;
  display: inline-block;
}
.mob-accordion-btn.open .mob-arrow { transform: rotate(180deg); }

.mob-sub-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0 4px 12px;
}
.mob-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--body);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.15s;
}
.mob-sub-link:hover { color: var(--ink); background: var(--bg2); }
.mob-sub-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--blue-lt);
  border: 1px solid var(--blue-bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.mob-divider { height: 1px; background: var(--border); margin: 6px 0; }
.mob-cta { padding-top: 10px; }
.mob-cta .btn-solid-sm {
  display: block;
  text-align: center;
  padding: 11px 18px;
  font-size: 14px;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(24,71,245,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 90%, rgba(5,150,105,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border: 1px solid var(--blue-bd);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative; z-index: 1;
  animation: fadeUp 0.5s ease both;
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(5,150,105,0.5);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.4); } }
@keyframes fadeUp { from{ opacity:0; transform:translateY(18px); } to{ opacity:1; transform:translateY(0); } }

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 820px;
  color: var(--ink);
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-h1 .accent { color: var(--blue); font-style: italic; }
.hero-h1 .mark { position: relative; display: inline-block; }
.hero-h1 .mark::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.35;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  margin: 22px 0 38px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.16s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.24s ease both;
}
.btn-hero-primary {
  padding: 13px 28px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--body);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(24,71,245,0.28);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(24,71,245,0.35); }
.btn-hero-ghost {
  padding: 13px 24px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  border-radius: 9px;
  font-size: 14px;
  font-family: var(--body);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  background: none;
  transition: all 0.2s;
}
.btn-hero-ghost:hover { border-color: var(--border2); color: var(--ink); background: var(--bg2); }
.free-badge {
  font-size: 10px;
  font-family: var(--mono);
  color: var(--green);
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  border-radius: 100px;
  padding: 2px 8px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.32s ease both;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat-n {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: block;
}
.stat-l { font-size: 11px; font-family: var(--mono); color: var(--muted2); margin-top: 4px; display: block; }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: 88px 48px; max-width: 1100px; margin: 0 auto; }
.section-bg { background: var(--surface); }
.section-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--ink);
}
.section-p { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 520px; }
.divider { border: none; border-top: 1px solid var(--border); max-width: 100%; margin: 0; }

/* ══════════════════════════════════════════════
   PILLARS
══════════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media(max-width:992px){ .pillars{ grid-template-columns: repeat(2, 1fr); } }
@media(max-width:576px){ .pillars{ grid-template-columns:1fr; } }
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pillar:hover { border-color: var(--blue-bd); box-shadow: var(--shadow); transform: translateY(-3px); }
.pillar-num { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: 0.08em; margin-bottom: 14px; opacity: 0.7; }
.pillar-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.pillar-title { font-family: var(--display); font-size: 18px; font-weight: 700; margin-bottom: 9px; line-height: 1.25; color: var(--ink); }
.pillar-body { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ══════════════════════════════════════════════
   FLOW COMPARISON
══════════════════════════════════════════════ */
.flow-comparison { margin-top: 64px; }
.flow-section-title { text-align: center; margin-bottom: 48px; }
.flow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 48px; }
@media(max-width:768px){ .flow-grid{ grid-template-columns:1fr; } }
.flow-category {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.flow-category.old-way { border-color: rgba(180,83,9,0.3); }
.flow-category.new-way { border-color: var(--blue-bd); }
.flow-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.flow-icon { font-size: 32px; }
.flow-header-text h3 { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.flow-header-text p { font-size: 12px; color: var(--muted); font-family: var(--mono); }
.flow-cards { display: flex; flex-direction: column; gap: 12px; }
.flow-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; transition: all 0.2s; }
.flow-card:hover { border-color: var(--blue-bd); box-shadow: var(--shadow); }
.flow-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.flow-card-title { font-size: 14px; font-weight: 700; color: var(--ink); font-family: var(--body); }
.flow-badge { font-family: var(--mono); font-size: 9px; padding: 3px 8px; border-radius: 5px; font-weight: 600; }
.badge-claims { background: rgba(59,130,246,0.1); color: #3b82f6; border: 1px solid rgba(59,130,246,0.2); }
.badge-return { background: rgba(139,92,246,0.1); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.2); }
.badge-repair { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.2); }
.badge-install { background: rgba(245,158,11,0.1); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.badge-direct { background: var(--blue-lt); color: var(--blue); border: 1px solid var(--blue-bd); }
.flow-card-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   STEPS
══════════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border2); align-items: start; }
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1.5px solid var(--blue-bd);
  background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: var(--ink); }
.step-body { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════
   TRIAL
══════════════════════════════════════════════ */
.trial-wrap { background: var(--surface); padding: 0 48px 88px; }
.trial-section {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--blue-lt);
  border: 1px solid var(--blue-bd);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.trial-section::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(24,71,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.trial-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-lt); border: 1px solid var(--green-bd);
  border-radius: 100px; padding: 5px 14px;
  font-family: var(--mono); font-size: 10px; color: var(--green);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px;
}
.trial-h2 {
  font-family: var(--display); font-size: clamp(28px, 4vw, 50px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 16px; color: var(--ink); position: relative;
}
.trial-h2 em { color: var(--blue); font-style: italic; }
.trial-p { font-size: 15px; color: var(--muted); max-width: 440px; margin: 0 auto 32px; line-height: 1.65; }
.trial-perks { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 36px; }
.trial-perk { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); font-family: var(--mono); }
.perk-check { color: var(--green); font-weight: 700; }
.btn-trial {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 36px; background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700; font-family: var(--body);
  border-radius: 9px; border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(24,71,245,0.3);
}
.btn-trial:hover { transform: translateY(-2px); background: var(--blue2); box-shadow: 0 6px 28px rgba(24,71,245,0.38); }
.trial-note { font-family: var(--mono); font-size: 10px; color: var(--muted2); margin-top: 14px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding: 64px 48px 32px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 100% 0%, var(--footer-divider) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
@media(max-width:900px){ .footer-inner{ grid-template-columns: 1fr 1fr; gap: 40px; } }
@media(max-width:480px){ .footer-inner{ grid-template-columns: 1fr; gap: 32px; } }

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 4px;
}
.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(24,71,245,0.2);
  transition: transform 0.2s ease;
}
.footer-brand-logo:hover .footer-logo-mark { transform: scale(1.05) rotate(5deg); }
.footer-brand-name {
  font-family: var(--mono); font-size: 14px; font-weight: 600;
  color: var(--footer-brand); letter-spacing: -0.02em;
}
.footer-brand-name span { color: var(--blue); }
.footer-brand-desc {
  font-size: 13px; color: var(--footer-text);
  line-height: 1.7; max-width: 280px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--footer-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--footer-text); font-size: 16px; text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social-link:hover {
  background: var(--blue); border-color: var(--blue); color: white;
  transform: translateY(-3px); box-shadow: 0 6px 16px rgba(24,71,245,0.25);
}

.footer-col h5,
.footer-contact-col h5 {
  font-family: var(--mono); font-size: 15px; font-weight: 700;
  color: var(--footer-heading); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px; position: relative; display: inline-block;
}
.footer-col h5::after,
.footer-contact-col h5::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 24px; height: 2px; background: var(--blue);
  border-radius: 2px; opacity: 0.5; transition: width 0.2s ease;
}
.footer-col:hover h5::after,
.footer-contact-col:hover h5::after { width: 40px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 13px; color: var(--footer-text); text-decoration: none;
  transition: all 0.15s ease; font-family: var(--body);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative; padding: 2px 0;
}
.footer-col ul a::before {
  content: '→'; opacity: 0; transform: translateX(-8px);
  transition: all 0.2s ease; color: var(--blue); font-size: 12px;
}
.footer-col ul a:hover { color: var(--footer-text-hover); transform: translateX(8px); }
.footer-col ul a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; transition: transform 0.2s ease; }
.footer-contact-item:hover { transform: translateX(4px); }
.footer-contact-icon {
  font-size: 14px; flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 6px;
  border: 1px solid var(--footer-border); color: var(--blue); margin-top: 2px;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 12px; font-family: var(--mono);
  color: var(--footer-text); text-decoration: none;
  line-height: 1.6; transition: color 0.15s;
}
.footer-contact-item a:hover { color: var(--footer-text-hover); }
.footer-contact-item .map-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; color: var(--blue); margin-top: 4px;
  text-decoration: none; transition: all 0.15s;
  padding: 4px 8px; background: var(--blue-lt);
  border-radius: 6px; border: 1px solid var(--blue-bd);
}
.footer-contact-item .map-link:hover {
  background: var(--blue); color: white;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(24,71,245,0.2);
}

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--footer-divider);
  display: flex; justify-content: center; align-items: center;
  text-align: center; position: relative; z-index: 2;
}
.footer-copy {
  font-family: var(--mono); font-size: 14px; color: var(--footer-copy);
  display: flex; align-items: center; gap: 8px;
}
.footer-copy::before {
  content: '❤️'; font-size: 19px; opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s; display: inline-block;
}
.footer-copy:hover::before { opacity: 1; transform: scale(1.2); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:900px) {
  .footer { padding: 48px 24px 28px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media(max-width:768px) {
  .section { padding: 56px 24px; }
  .trial-wrap { padding: 0 16px 56px; }
  .trial-section { padding: 48px 28px; }
}
@media(max-width:480px) {
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-brand-desc { max-width: 100%; }
  .hero-stats { gap: 28px; }
}

.nav-links li.active > a,
.nav-links li.active > button {
  background: #eef2ff;
  color: #4f46e5;
  border-radius: 8px;
  padding: 6px 10px;
}