/* ============================================================
   APEX IT SOLUTIONS — site.css
   Clean Corporate · DM Sans + DM Serif Display
   ============================================================ */

/* ── TOKENS ── */
:root {
  --navy:      #0B1D3A;
  --navy-mid:  #132847;
  --blue:      #1A56DB;
  --blue-lt:   #3B72F2;
  --sky:       #EFF4FF;
  --slate:     #64748B;
  --slate-lt:  #94A3B8;
  --border:    #E2E8F0;
  --white:     #FFFFFF;
  --off-white: #F8FAFC;
  --green:     #16A34A;
  --text:      #1E293B;
  --text-mid:  #334155;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  --font-body:    'DM Sans', sans-serif;
  --font-display: 'DM Serif Display', serif;

  --max-w: 1160px;
  --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILS ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 88px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  border: 1px solid #C7D9FF;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); line-height: 1.15; margin-bottom: 16px; }
.section-header p { color: var(--slate); font-size: 17px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary  { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.3); }
.btn-ghost    { color: var(--navy); border-color: var(--border); background: transparent; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); }
.btn-outline  { color: var(--blue); border-color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--sky); }
.btn-white    { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-ghost-white { color: var(--white); border-color: rgba(255,255,255,.4); background: transparent; }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-full { width: 100%; justify-content: center; padding: 15px 24px; font-size: 16px; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  white-space: nowrap;
}
.logo-mark { color: var(--blue); font-size: 20px; }
.logo-accent { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all .15s;
}
.nav-links a:hover { color: var(--blue); background: var(--sky); }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 9px 16px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--blue-lt); }
.nav-links .nav-portal {
  color: var(--slate);
  border: 1px solid var(--border);
  padding: 8px 14px;
}
.nav-links .nav-portal:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-heading em {
  font-style: italic;
  color: #7EB3FF;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.hero-trust span::before { margin-right: 4px; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 340px;
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  min-width: 240px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-card strong { display: block; font-size: 14px; color: var(--white); font-weight: 500; }
.hero-card small  { font-size: 12px; color: rgba(255,255,255,.5); }
.hero-card .card-icon { font-size: 22px; }

.card-1 { top: 0;    left: 0;  animation-delay: 0s; }
.card-2 { top: 110px; left: 40px; animation-delay: -2s; }
.card-3 { top: 220px; left: 0; animation-delay: -4s; }

.card-status {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}
.status-green { background: #4ADE80; box-shadow: 0 0 8px #4ADE80; }

.hero-uptime {
  position: absolute;
  top: 40px;
  right: 0;
  text-align: center;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.uptime-number { display: block; font-family: var(--font-display); font-size: 42px; color: var(--white); line-height: 1; }
.uptime-number small { font-family: var(--font-body); font-size: 20px; }
.uptime-label { font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 16px;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.logo-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--white);
}

/* ── SERVICES ── */
.services-section { background: var(--white); }

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

.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #C7D9FF;
}
.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--slate); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.card-link { font-size: 14px; font-weight: 500; color: var(--blue); }
.card-link:hover { text-decoration: underline; }

.service-card-cta {
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta h3 { color: var(--white); }
.service-card-cta p { color: rgba(255,255,255,.6); }

/* ── WHY US ── */
.why-section { background: var(--sky); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.why-text p { color: var(--slate); margin-bottom: 24px; }
.why-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.why-list li { display: flex; gap: 10px; font-size: 15px; color: var(--text-mid); }
.check { color: var(--blue); font-weight: 700; flex-shrink: 0; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num small { font-family: var(--font-body); font-size: 20px; }
.stat-label { font-size: 13px; color: var(--slate); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: #F59E0B; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author small { font-size: 12px; color: var(--slate); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(255,255,255,.65); font-size: 16px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding: 64px 24px;
}
.footer-brand .logo-mark { color: var(--blue-lt); }
.footer-brand .logo-name { color: var(--white); font-weight: 600; font-size: 16px; }
.footer-tagline { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.4); }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── LEAD FORM ── */
.form-hero {
  background: var(--sky);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.form-hero-inner { max-width: 720px; }
.form-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); margin: 8px 0 14px; }
.form-hero p { color: var(--slate); font-size: 17px; }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.form-main { padding-top: 8px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
textarea { resize: vertical; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-mid);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: all .15s;
}
.checkbox-item:hover { border-color: var(--blue); background: var(--sky); }
.checkbox-item input { width: auto; accent-color: var(--blue); }

.field-error { display: block; font-size: 12px; color: #DC2626; margin-top: 4px; }
.form-disclaimer { text-align: center; font-size: 12px; color: var(--slate-lt); margin-top: 12px; }

.form-sidebar { position: sticky; top: calc(var(--nav-h) + 16px); display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.expect-list { display: flex; flex-direction: column; gap: 12px; }
.expect-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  align-items: flex-start;
}
.expect-list li span {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.sidebar-contact p { font-size: 14px; color: var(--slate); margin-bottom: 6px; }
.sidebar-phone { display: block; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

/* ── CONFIRMATION / PORTAL ── */
.confirmation-section, .portal-placeholder { background: var(--off-white); }
.confirmation-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 24px;
}
.confirmation-icon {
  width: 64px; height: 64px;
  background: var(--sky);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  color: var(--blue);
}
.confirmation-inner h1 { font-family: var(--font-display); font-size: 36px; margin-bottom: 16px; }
.confirmation-inner p { color: var(--slate); margin-bottom: 12px; }
.confirmation-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── SERVICE PAGE HERO ── */
.service-page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
}
.service-page-hero-inner {
  max-width: 720px;
}
.service-page-icon {
  font-size: 44px;
  margin-bottom: 16px;
}
.service-page-hero .section-eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}
.service-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  color: var(--white);
  line-height: 1.1;
  margin: 8px 0 16px;
}
.service-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  line-height: 1.6;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.process-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.process-step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ── PRIVACY / POLICY PAGE ── */
.policy-hero {
  background: var(--sky);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 12px;
}
.policy-updated {
  font-size: 14px;
  color: var(--slate);
}

.policy-content {
  max-width: 760px;
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 40px 0 12px;
  color: var(--navy);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}
.policy-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.policy-content ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 6px;
}
.policy-content a { color: var(--blue); text-decoration: underline; }

/* ── CONTACT INFO BLOCK ── */
.contact-info-block { margin-bottom: 16px; }
.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}
.contact-info-value:hover { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .process-steps { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; flex-direction: column; gap: 4px; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-links .nav-cta, .nav-links .nav-portal { margin: 4px 0; width: 100%; text-align: center; justify-content: center; }
  .nav-hamburger { display: flex; }
  .site-header { position: sticky; overflow: visible; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 56px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .form-layout { grid-template-columns: 1fr; }
  .form-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .why-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-cols { grid-template-columns: 1fr; }
}
