@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-dark: #0A0A0F;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-tertiary: #94A3B8;
  --text-on-dark: #F8FAFC;
  --blue: #3B82F6;
  --blue-light: #EFF6FF;
  --blue-dark: #2563EB;
  --blue-deep: #1E40AF;
  --green: #10B981;
  --green-light: #ECFDF5;
  --purple: #8B5CF6;
  --purple-light: #F5F3FF;
  --orange: #F59E0B;
  --orange-light: #FFFBEB;
  --border: rgba(0,0,0,0.06);
  --border-strong: rgba(0,0,0,0.1);
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.4);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.1);
  --shadow-blue: 0 8px 32px rgba(59,130,246,0.18);
  --shadow-inner: inset 0 1px 1px rgba(255,255,255,0.6);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --max-width: 1240px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== FLOATING GLASS NAVBAR ===== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1160px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 8px 0 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--shadow-inner);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  padding-left: 16px;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
}

.header__nav a:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
}

.btn--ghost:hover {
  background: rgba(0,0,0,0.04);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(59,130,246,0.28);
}

.btn--primary:active {
  transform: scale(0.98) translateY(0);
}

.btn--large {
  padding: 16px 36px;
  font-size: 15px;
}

.btn--green {
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(16,185,129,0.22);
}

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

.btn__arrow {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease-out);
}

.btn--primary:hover .btn__arrow {
  transform: translateX(2px) translateY(-1px);
  background: rgba(255,255,255,0.25);
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-full);
  transition: background 0.3s var(--ease-out);
}

.header__mobile-toggle:hover {
  background: rgba(0,0,0,0.04);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  position: absolute;
  top: 100px;
  left: 24px;
  right: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  transform: translateY(-12px) scale(0.97);
  opacity: 0;
  transition: all 0.5s var(--ease-spring);
}

.mobile-menu.active .mobile-menu__inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-menu__link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background 0.3s var(--ease-out);
}

.mobile-menu__link:hover {
  background: rgba(0,0,0,0.04);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu__actions .btn {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 120px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero__orb--blue {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -150px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
}

.hero__orb--purple {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
}

.hero__orb--green {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16,185,129,0.04) 0%, transparent 70%);
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: var(--green-light);
  border: 1px solid rgba(16,185,129,0.2);
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

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

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* ===== STATS ===== */
.stats {
  padding: 48px 0 48px;
  position: relative;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat {
  text-align: center;
  background: var(--bg-card);
  padding: 40px 24px;
  transition: background 0.4s var(--ease-out);
}

.stat:first-child { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.stat:last-child { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }

.stat:hover {
  background: var(--bg-secondary);
}

.stat__number {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 120px 0;
}

.section--alt {
  background: var(--bg-secondary);
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.12);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.section__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== CATEGORIES - ASYMMETRICAL BENTO ===== */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card__shell {
  border-radius: calc(var(--radius-xl) - 4px);
  padding: 32px 20px;
  height: 100%;
  position: relative;
  background: var(--bg-card);
  box-shadow: var(--shadow-inner);
  transition: all 0.5s var(--ease-out);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.15);
}

.category-card--featured {
  grid-column: span 6;
}

.category-card--featured .category-card__shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.category-card--small {
  grid-column: span 3;
}

.category-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue);
  transition: all 0.5s var(--ease-spring);
}

.category-card:hover .category-card__icon {
  transform: scale(1.08);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(59,130,246,0.25);
}

.category-card--featured .category-card__icon {
  width: 64px;
  height: 64px;
}

.category-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.category-card--featured .category-card__title {
  font-size: 18px;
}

.category-card__desc {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.step-card__shell {
  border-radius: calc(var(--radius-xl) - 4px);
  padding: 36px 20px;
  height: 100%;
  background: var(--bg-card);
  box-shadow: var(--shadow-inner);
  transition: all 0.5s var(--ease-out);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.12);
}

.step-card__number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}

.step-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}

.step-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px;
  transition: all 0.5s var(--ease-out);
}

.benefit-card__shell {
  border-radius: calc(var(--radius-xl) - 4px);
  padding: 40px 28px;
  height: 100%;
  background: var(--bg-card);
  box-shadow: var(--shadow-inner);
  transition: all 0.5s var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.12);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.5s var(--ease-spring);
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.08);
}

.benefit-card__icon--blue { background: var(--blue-light); color: var(--blue); }
.benefit-card__icon--green { background: var(--green-light); color: var(--green); }
.benefit-card__icon--purple { background: var(--purple-light); color: var(--purple); }
.benefit-card__icon--orange { background: var(--orange-light); color: var(--orange); }

.benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.benefit-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 72px 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.cta__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--text-primary);
}

.cta__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.cta__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.cta__perk svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 48px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.footer__divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0 auto 48px;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
}

.footer__links a:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}

.footer__copy {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:first-child { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .stat:nth-child(2) { border-radius: 0 var(--radius-xl) 0 0; }
  .stat:nth-child(3) { border-radius: 0 0 0 var(--radius-xl); }
  .stat:last-child { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .category-card--featured { grid-column: span 6; }
  .category-card--small { grid-column: span 6; }
}

@media (max-width: 768px) {
  .header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .header__nav { display: none; }
  .header__actions .btn--ghost { display: none; }
  .header__mobile-toggle { display: flex; align-items: center; justify-content: center; }

  .mobile-menu { display: block; }

  .hero {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .hero h1 { letter-spacing: -1px; }

  .container { padding: 0 20px; }
  .hero__inner { padding: 0 20px; }

  .section { padding: 80px 0; }
  .section__header { margin-bottom: 48px; }

  .stats__inner { grid-template-columns: 1fr; }
  .stat:first-child,
  .stat:nth-child(2),
  .stat:nth-child(3),
  .stat:last-child { border-radius: 0; }
  .stat:first-child { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .stat:last-child { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }

  .categories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .category-card--featured,
  .category-card--small {
    grid-column: span 1;
  }

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

  .cta__inner { padding: 48px 28px; }

  .cta__perks { flex-direction: column; gap: 12px; }
  .footer__links { flex-direction: column; gap: 4px; }
  .footer__links a { display: block; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 0 64px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 16px; flex-direction: column; }

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

  .cta__inner { padding: 40px 20px; border-radius: var(--radius-xl); }
  .cta__inner::before { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
}
