/* ============================================================
   MEPMate Hire — Stylesheet
   Primary:  #2563EB (Electric Blue)
   Dark:     #1B3A6B (Dark Navy)
   Background: #F3F4F6 (Light Gray)
   Font: Poppins
============================================================ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #EFF6FF;
  --navy:        #1B3A6B;
  --navy-deep:   #0F2449;
  --gray-bg:     #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-500:    #6B7280;
  --gray-700:    #374151;
  --white:       #FFFFFF;
  --text:        #111827;
  --accent:      #38BDF8;
  --green:       #22C55E;
  --amber:       #F59E0B;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.15);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.25);
  --transition:  all .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-solid-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-solid-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-solid-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-solid-white:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}

/* ── Section Utilities ────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag-blue {
  background: var(--navy);
  color: var(--white);
}
.section-tag-light {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: .75rem;
}
.title-accent { color: var(--blue); }
.title-accent-light { color: var(--accent); }
.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
}

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-sub {
  font-size: .6rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .12em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .25s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 1.25rem;
}
.mobile-menu a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-cta { display: flex; gap: .75rem; padding-top: 1rem; flex-wrap: wrap; }
.mobile-menu.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy-deep);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Blueprint grid */
.hero-blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.08) 1px, transparent 1px),
    linear-gradient(rgba(56,189,248,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
}

/* Radial glow */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,.35) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.4); }
}

.hero-headline {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.headline-accent {
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.hero-subline {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Hero CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  min-width: 260px;
  text-align: left;
  cursor: pointer;
}
.hero-btn-company {
  background: var(--navy);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.hero-btn-company:hover {
  background: var(--navy-deep);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.hero-btn-candidate {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.hero-btn-candidate:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.hero-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-btn-text { flex: 1; }
.hero-btn-label {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .1rem;
}
.hero-btn-sub {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  opacity: .75;
}
.hero-btn-arrow { opacity: .5; transition: transform .2s, opacity .2s; }
.hero-btn:hover .hero-btn-arrow { opacity: 1; transform: translateX(4px); }

/* Trust line */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 500;
}
.hero-trust span { display: flex; align-items: center; gap: .35rem; }
.trust-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
}

/* Floating discipline tags */
.floating-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ftag {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  letter-spacing: .04em;
  padding: .3rem .7rem;
  border-radius: 6px;
  animation: floatTag 6s ease-in-out infinite;
}
.ftag-1 { top: 18%; left: 5%; animation-delay: 0s; }
.ftag-2 { top: 35%; left: 2%; animation-delay: 1s; }
.ftag-3 { top: 55%; left: 4%; animation-delay: 2s; }
.ftag-4 { top: 20%; right: 5%; animation-delay: .5s; }
.ftag-5 { top: 40%; right: 3%; animation-delay: 1.5s; }
.ftag-6 { top: 65%; right: 6%; animation-delay: 2.5s; }
@keyframes floatTag {
  0%,100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-8px); opacity: .7; }
}

/* ── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.stats-inner {
  display: flex;
  align-items: stretch;
  padding: 2rem 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: .5rem 1rem;
}
.stat-divider {
  width: 1px;
  background: var(--gray-200);
  margin: .5rem 0;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .35rem;
  font-variant-numeric: tabular-nums;
}
.stat-plus { font-size: .6em; color: var(--navy); }
.stat-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.stat-sub { font-size: .72rem; color: var(--gray-500); font-weight: 400; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-it-works {
  padding: 5rem 0;
  background: var(--white);
}
.how-it-works-candidate {
  background: var(--gray-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.how-it-works-candidate .step-card {
  background: var(--white);
}
.step-number {
  font-family: 'DM Mono', monospace;
  font-size: 3rem;
  font-weight: 500;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1.2rem;
}
.company-icon { background: var(--blue-light); color: var(--blue); }
.candidate-icon { background: rgba(27,58,107,.08); color: var(--navy); }
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.step-card p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.step-connector {
  display: none;
}

/* ── CHECKPOINT SECTION ───────────────────────────────── */
.checkpoint-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.checkpoint-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.checkpoint-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.checkpoint-left .section-title { margin-bottom: 1rem; }
.checkpoint-left .btn { margin-top: 1.5rem; }

.checkpoint-right {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.checkpoint-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.checkpoint-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(56,189,248,.4);
}
.cp-num {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: .1rem;
}
.cp-icon {
  width: 36px;
  height: 36px;
  background: rgba(37,99,235,.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .9rem;
  flex-shrink: 0;
}
.cp-text h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}
.cp-text p { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ── WHY SECTION ──────────────────────────────────────── */
.why-section {
  padding: 5rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.why-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.why-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.65; }

/* ── COMPANIES SECTION ────────────────────────────────── */
.companies-section {
  padding: 5rem 0;
  background: var(--gray-bg);
}
.companies-placeholder {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  background: var(--white);
}
.placeholder-inner { max-width: 500px; margin: 0 auto; }
.placeholder-icon {
  width: 80px;
  height: 80px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.placeholder-inner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.placeholder-inner p {
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
}
.placeholder-inner .btn { margin-bottom: 1.5rem; }
.placeholder-perks {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.placeholder-perks span {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
}

/* ── PRICING ──────────────────────────────────────────── */
.pricing-section {
  padding: 5rem 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
}
.pricing-card-featured {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-color: var(--navy);
  color: var(--white);
}
.pricing-card-featured .pricing-for { color: rgba(255,255,255,.7); }
.pricing-card-featured .pricing-fee-label { color: rgba(255,255,255,.6); }
.pricing-card-featured .pricing-list li { color: rgba(255,255,255,.85); }
.pricing-card-featured .pricing-list .pricing-pay { color: var(--accent); }
.pricing-featured-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 0 0 8px 8px;
}
.pricing-for {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: .5rem;
}
.pricing-main-fee {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .35rem;
}
.pricing-card-featured .pricing-main-fee { color: var(--white); }
.pricing-fee-label {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.pricing-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--gray-700);
}
.pricing-list li i { color: var(--green); margin-top: .1rem; flex-shrink: 0; }
.pricing-pay { color: var(--blue) !important; font-weight: 600; }
.pricing-pay i { color: var(--blue) !important; }
.pricing-btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-note i { color: var(--blue); }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-main { color: var(--white); }
.footer-tagline {
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  max-width: 280px;
}
.footer-geo {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-geo span {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.footer-links-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-links-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .6rem;
  transition: color .2s;
}
.footer-links-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-badges { display: flex; gap: .75rem; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: .3rem .65rem;
  border-radius: 6px;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .checkpoint-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 1.25rem; border-bottom: 1px solid var(--gray-200); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-200); }

  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }

  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-btn { width: 100%; max-width: 340px; }

  .floating-tags { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .placeholder-perks { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
