/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --bg: hsl(240, 25%, 3.1%);
  --fg: hsl(40, 14%, 95%);
  --card: hsl(240, 20%, 5.5%);
  --border: hsl(0, 0%, 100%, 0.05);
  --border-hover: hsl(0, 0%, 100%, 0.1);
  --primary: hsl(222, 100%, 60%);
  --primary-soft: hsl(222, 100%, 67%);
  --primary-muted: hsl(222, 100%, 60%, 0.12);
  --gray-600: hsl(40, 6%, 27%);
  --gray-400: hsl(40, 6%, 44%);
  --gray-200: hsl(40, 6%, 67%);
  --green: hsl(160, 67%, 52%);
  --green-muted: hsl(160, 67%, 52%, 0.12);
  --amber: hsl(45, 97%, 64%);
  --amber-muted: hsl(45, 97%, 64%, 0.12);
  --red: hsl(0, 91%, 71%);
  --red-muted: hsl(0, 91%, 71%, 0.12);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Syne', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Radii */
  --radius-lg: 14px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container-px: clamp(20px, 4vw, 40px);
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.5s;
}

/* ============================================
   RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
}

.eyebrow__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 16px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray-200);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-soft);
  border-color: var(--primary-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px hsl(222, 100%, 60%, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-hover);
}

.btn--outline:hover {
  border-color: var(--gray-400);
  background: hsl(0, 0%, 100%, 0.03);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn--full {
  width: 100%;
}

.btn__icon {
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: hsl(240, 25%, 3.1%, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.nav__logo-dot {
  color: var(--primary);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

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

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-200);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--fg);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(0, 0%, 100%, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsl(0, 0%, 100%, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: hsl(222, 100%, 60%);
  opacity: 0.12;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  background: hsl(160, 67%, 52%);
  opacity: 0.06;
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 780px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 20px;
  color: var(--fg);
}

.hero__subtitle {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--gray-200);
  line-height: 1.7;
  margin-top: 24px;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust__text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.trust__divider {
  width: 1px;
  height: 24px;
  background: var(--border-hover);
}

.trust__compliance {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  padding: 4px 12px;
  background: var(--green-muted);
  border-radius: var(--radius-xs);
  letter-spacing: 0.02em;
}

/* ============================================
   STEPS (HOW IT WORKS)
   ============================================ */
.steps {
  padding: var(--section-py) 0;
}

.steps__header {
  text-align: center;
  margin-bottom: 64px;
}

.steps__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.step-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px hsl(0, 0%, 0%, 0.3);
}

.step-card__number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 600;
  color: hsl(0, 0%, 100%, 0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-card__icon {
  color: var(--gray-200);
  margin-bottom: 20px;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card__desc {
  font-size: 15px;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: hsl(0, 0%, 100%, 0.05);
  color: var(--gray-200);
  letter-spacing: 0.02em;
}

.tag--green {
  background: var(--green-muted);
  color: var(--green);
}

.tag--amber {
  background: var(--amber-muted);
  color: var(--amber);
}

.tag--red {
  background: var(--red-muted);
  color: var(--red);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: var(--section-py) 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features__header {
  text-align: center;
  margin-bottom: 64px;
}

.features__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px hsl(0, 0%, 0%, 0.25);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-muted);
  border-radius: var(--radius-sm);
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-card__tag {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  background: var(--primary-muted);
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison {
  padding: var(--section-py) 0;
}

.comparison__header {
  text-align: center;
  margin-bottom: 64px;
}

.comparison__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.comparison__table {
  min-width: 700px;
}

.comparison__table thead {
  border-bottom: 1px solid var(--border);
}

.comparison__th {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  color: var(--gray-400);
  white-space: nowrap;
}

.comparison__th--fnz {
  color: var(--primary);
  font-size: 16px;
}

.comparison__th-dot {
  color: var(--primary);
}

.comparison__feature {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 24px;
  color: var(--fg);
  white-space: nowrap;
}

.comparison__cell {
  font-size: 14px;
  padding: 16px 24px;
  color: var(--gray-400);
  white-space: nowrap;
}

.comparison__cell--fnz {
  color: var(--fg);
  background: hsl(222, 100%, 60%, 0.04);
}

.comparison__highlight {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}

.comparison__check,
.comparison__x {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 6px;
}

tbody tr {
  border-bottom: 1px solid var(--border);
}

tbody tr:last-child {
  border-bottom: none;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.pricing-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px hsl(0, 0%, 0%, 0.3);
}

.pricing-card--featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, hsl(222, 100%, 60%, 0.06) 0%, var(--bg) 100%);
}

.pricing-card--featured:hover {
  border-color: var(--primary-soft);
  box-shadow: 0 16px 48px hsl(222, 100%, 60%, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.pricing-card__for {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 4px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.pricing-card__currency {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-400);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card__amount--text {
  font-size: 28px;
  font-family: var(--font-heading);
}

.pricing-card__period {
  font-size: 14px;
  color: var(--gray-400);
}

.pricing-card__features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-200);
}

.pricing-card__features svg {
  flex-shrink: 0;
}

/* ============================================
   SECURITY
   ============================================ */
.security {
  padding: var(--section-py) 0;
}

.security__header {
  text-align: center;
  margin-bottom: 64px;
}

.security__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.security-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.security-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.security-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-muted);
  border-radius: var(--radius-sm);
  color: var(--green);
  margin-bottom: 20px;
}

.security-card__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.security-card__desc {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: var(--section-py) 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, hsl(222, 100%, 60%, 0.08), transparent 70%);
  pointer-events: none;
}

.cta__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray-200);
  margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--bg);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-mono);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.footer__logo-dot {
  color: var(--primary);
}

.footer__tagline {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 12px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

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

.footer__col a {
  font-size: 14px;
  color: var(--gray-200);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--fg);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-600);
}

/* ============================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================ */
@media (max-width: 1023px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
  }

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

  .footer__links {
    gap: 40px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    padding: 80px 32px 40px;
    background: hsl(240, 25%, 4%);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 999;
  }

  .nav__menu.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav__link {
    font-size: 16px;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
  }

  /* Toggle X animation */
  .nav__toggle.is-active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle.is-active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.is-active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Overlay */
  .nav__overlay {
    position: fixed;
    inset: 0;
    background: hsl(0, 0%, 0%, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 998;
  }

  .nav__overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__stat-divider {
    width: 48px;
    height: 1px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison__table-wrap {
    margin-left: calc(-1 * var(--container-px));
    margin-right: calc(-1 * var(--container-px));
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .security__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .trust__inner {
    flex-direction: column;
    gap: 16px;
  }

  .trust__divider {
    width: 48px;
    height: 1px;
  }

  .trust__compliance {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 479px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .step-card {
    padding: 32px 24px 24px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background: hsl(222, 100%, 60%, 0.3);
  color: var(--fg);
}
