/* =============================================
   SprintCrate — Main Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #FF5C1A;
  --orange-dark: #D94400;
  --orange-light:#FF8C5C;
  --navy:        #0F1623;
  --navy-mid:    #1A2438;
  --navy-light:  #243049;
  --slate:       #4A5568;
  --muted:       #8896A8;
  --border:      #E2E8F0;
  --bg-tint:     #F7F9FC;
  --white:       #FFFFFF;
  --cream:       #FFF8F4;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  padding: 12px 28px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,92,26,.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,92,26,.45);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* --- Section Helpers --- */
.section { padding: 96px 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--tinted { background: var(--bg-tint); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header--light .section-eyebrow { color: var(--orange-light); }
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-sub { color: rgba(255,255,255,.65); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-accent { color: var(--orange); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-wrap.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 52px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover {
  color: var(--orange);
  background: var(--cream);
}
.nav__cta { margin-left: 8px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.nav__mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__mobile a:hover { color: var(--orange); background: var(--cream); }
.nav__mobile .btn { margin-top: 8px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1E2D4A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.shape--1 {
  width: 900px; height: 900px;
  background: var(--orange);
  top: -300px; right: -200px;
}
.shape--2 {
  width: 500px; height: 500px;
  background: var(--orange-light);
  bottom: -200px; left: -100px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,92,26,.18);
  border: 1px solid rgba(255,92,26,.3);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__badge::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.hero__proof strong { color: var(--white); }
.proof__avatars {
  display: flex;
}
.proof__avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -8px;
}
.proof__avatars img:first-child { margin-left: 0; }

/* Hero box card */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__box-card {
  position: relative;
  width: 340px;
  background: linear-gradient(145deg, var(--navy-light), #2A3C5A);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  overflow: hidden;
}
.box-card__shine {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,92,26,.15), transparent 70%);
  pointer-events: none;
}
.box-card__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.box-card__products {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all var(--transition);
  animation: slideIn 0.5s both;
}
.product-pill--1 { animation-delay: .1s; }
.product-pill--2 { animation-delay: .2s; }
.product-pill--3 { animation-delay: .3s; }
.product-pill--4 { animation-delay: .4s; }
.product-pill--5 { animation-delay: .5s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.box-card__value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.value-label { font-size: 13px; color: rgba(255,255,255,.5); }
.value-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-light);
}

.hero__stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatUp 3s ease-in-out infinite;
}
.hero__stat--1 { bottom: 24px; left: -24px; animation-delay: 0s; }
.hero__stat--2 { top: 24px; right: -24px; animation-delay: 1.5s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* =============================================
   BRANDS
   ============================================= */
.brands {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--white);
}
.brands .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brands__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.brands__logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}
.brand-name:hover { color: var(--navy); }
.brand-sep { color: var(--border); }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.step__num {
  position: absolute;
  top: -8px; left: -8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  background: var(--cream);
  border: 2px solid var(--orange);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.step__icon {
  width: 64px; height: 64px;
  color: var(--navy);
  background: var(--bg-tint);
  border-radius: var(--radius-md);
  padding: 14px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.step:hover .step__icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.08);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}
.step__connector {
  width: 40px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--orange-light), var(--border));
  margin-top: 40px;
}

/* =============================================
   WHAT'S INSIDE
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,92,26,0), rgba(255,92,26,.05));
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover {
  border-color: rgba(255,92,26,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.product-card:hover::before { opacity: 1; }
.product-card--featured {
  border-color: rgba(255,92,26,.3);
  background: rgba(255,92,26,.08);
}
.product-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.product-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,92,26,.2);
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* =============================================
   PRICING
   ============================================= */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}
.toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  color: var(--slate);
  background: var(--bg-tint);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.toggle-btn--active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.toggle-save {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.plan--popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,92,26,.12), var(--shadow-md);
  transform: scale(1.03);
}
.plan--popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.plan__popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan__header { margin-bottom: 28px; }
.plan__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.plan__tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.plan__amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.plan__period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.plan__value {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
}
.plan__features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
}
.plan__features li.muted { color: var(--muted); opacity: .7; }
.check {
  width: 20px; height: 20px;
  background: rgba(255,92,26,.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.dash {
  width: 20px; height: 20px;
  background: var(--bg-tint);
  color: var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.review-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,26,.1), var(--shadow-sm);
}
.review-card__stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card__text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.review-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.review-card__author span {
  font-size: 13px;
  color: var(--muted);
}

.reviews__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.review-stat {
  text-align: center;
}
.review-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.review-stat__label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

/* =============================================
   FAQ
   ============================================= */
.faq__inner { max-width: 720px; }
.faqs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-item__q:hover { color: var(--orange); }
.faq-item__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-item__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--orange);
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item__a.open { grid-template-rows: 1fr; }
.faq-item__a > p {
  overflow: hidden;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* =============================================
   FINAL CTA
   ============================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange), #FF7A3D);
}
.cta-section__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section__inner {
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section__sub {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-section__fine {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: start;
}
.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  font-style: italic;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner { gap: 48px; }
  .hero__box-card { width: 300px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .plan { padding: 28px 20px; }
  .reviews__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
  }
  .hero__visual { display: none; }
  .hero__title { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step__connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--border), var(--orange-light), var(--border));
    margin: 0;
  }

  .products-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan--popular { transform: none; }
  .plan--popular:hover { transform: translateY(-6px); }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__stats { grid-template-columns: repeat(2, 1fr); }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .footer__links { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .brands .container { justify-content: center; }
  .brands__label { width: 100%; text-align: center; }
  .brands__logos { justify-content: center; }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .reviews__stats { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
}
