/* ═══════════════════════════════════════════════════════
   ExamPuri Design System — Light Theme
   Matches: prepare.exampuri.in
   Primary: #1565C0 (deep blue) / #FF6B35 (accent orange-red)
   Background: #F5F7FA (page) / #FFFFFF (cards)
   Typography: Poppins (Latin) + Hind (Devanagari)
═══════════════════════════════════════════════════════ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Hind:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand palette — extracted from prepare.exampuri.in */
  --primary:       #1565C0;   /* Deep blue — nav, headings, links */
  --primary-dark:  #0D47A1;   /* Darker blue — hover */
  --primary-light: #E3F0FF;   /* Very light blue — backgrounds */
  --accent:        #E8380D;   /* Orange-red — CTAs, highlights */
  --accent-light:  #FFF0EC;   /* Light orange — hover states */
  --accent-hover:  #C7300A;   /* Dark orange — CTA hover */
  --green:         #2E7D32;   /* Success green */
  --green-light:   #E8F5E9;   /* Success bg */
  --gold:          #F9A825;   /* Gold — badges, stars */
  --gold-light:    #FFF8E1;   /* Gold bg */

  /* Neutrals */
  --white:         #FFFFFF;
  --bg:            #F5F7FA;   /* Page background — light grey-blue */
  --bg2:           #EEF2F8;   /* Slightly darker section bg */
  --surface:       #FFFFFF;   /* Card surface */
  --border:        #E2E8F0;   /* Card borders */
  --border2:       #CBD5E1;   /* Stronger divider */

  /* Text */
  --text-heading:  #0F172A;   /* Near-black headings */
  --text-body:     #334155;   /* Body text */
  --text-muted:    #64748B;   /* Muted / secondary */
  --text-faint:    #94A3B8;   /* Placeholder / disabled */

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:     0 12px 32px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
  --shadow-xl:     0 20px 48px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.07);

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-full:999px;

  /* Spacing */
  --section-pad: 80px 20px;
  --container:   1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', 'Hind', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Language toggle ── */
[data-lang="en"] .hi { display: none !important; }
[data-lang="hi"] .en { display: none !important; }
[data-lang="en"] .en { display: inline; }
[data-lang="hi"] .hi { display: inline; }
[data-lang="en"] .hi-flex { display: none !important; }
[data-lang="hi"] .en-flex { display: none !important; }

/* ── Layout ── */
.container  { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section    { padding: var(--section-pad); }
.section-sm { padding: 56px 20px; }
.section-lg { padding: 100px 20px; }
.section-white  { background: var(--white); }
.section-grey   { background: var(--bg); }
.section-blue   { background: var(--primary-light); }
.section-accent { background: var(--accent); }

/* ── Typography ── */
.display { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; color: var(--text-heading); letter-spacing: -0.5px; }
.h1      { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.15; color: var(--text-heading); }
.h2      { font-size: clamp(1.3rem, 2.8vw, 1.9rem); font-weight: 700; line-height: 1.2; color: var(--text-heading); }
.h3      { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; line-height: 1.3; color: var(--text-heading); }
.h4      { font-size: 1rem; font-weight: 600; color: var(--text-heading); }
.lead    { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; }
.text-blue   { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--text-muted); }
.text-faint  { color: var(--text-faint); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.strike { text-decoration: line-through; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; border: none; cursor: pointer;
  border-radius: var(--r-md); transition: all .2s; text-decoration: none;
  white-space: nowrap; letter-spacing: .1px;
}
.btn-sm  { padding: 8px 18px;  font-size: 13px; border-radius: var(--r-sm); }
.btn-md  { padding: 12px 24px; font-size: 14px; }
.btn-lg  { padding: 14px 30px; font-size: 15px; }
.btn-xl  { padding: 16px 36px; font-size: 16px; font-weight: 700; border-radius: var(--r-lg); }
.btn-full{ width: 100%; }

/* Primary: accent orange-red */
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,56,13,.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,56,13,.4);
}

/* Secondary: outlined blue */
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Ghost: subtle grey */
.btn-ghost {
  background: var(--bg);
  color: var(--text-body);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: var(--border); }

/* Blue filled */
.btn-blue {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,101,192,.25);
}
.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,.35);
}

/* Green */
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46,125,50,.25);
}
.btn-green:hover { background: #1B5E20; transform: translateY(-2px); }

/* WhatsApp */
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }

/* Pulse animation for hero CTA */
.btn-pulse {
  animation: btn-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(232,56,13,.3); }
  50%       { box-shadow: 0 6px 28px rgba(232,56,13,.55), 0 0 0 6px rgba(232,56,13,.12); }
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover  { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-flat   { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.card-blue   { background: var(--primary-light); border: 1px solid rgba(21,101,192,.15); border-radius: var(--r-lg); }
.card-accent { background: var(--accent-light); border: 1px solid rgba(232,56,13,.15); border-radius: var(--r-lg); }
.card-green  { background: var(--green-light); border: 1px solid rgba(46,125,50,.2); border-radius: var(--r-lg); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase;
}
.badge-blue   { background: var(--primary-light); color: var(--primary); border: 1px solid rgba(21,101,192,.2); }
.badge-accent { background: var(--accent-light);  color: var(--accent);  border: 1px solid rgba(232,56,13,.2); }
.badge-green  { background: var(--green-light);   color: var(--green);   border: 1px solid rgba(46,125,50,.2); }
.badge-gold   { background: var(--gold-light);    color: #B45309;        border: 1px solid rgba(249,168,37,.3); }
.badge-white  { background: rgba(255,255,255,.15); color: #fff;          border: 1px solid rgba(255,255,255,.25); }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .badge { margin-bottom: 12px; }
.section-header .h1,
.section-header .h2 { margin-bottom: 10px; }
.section-header .lead { max-width: 560px; margin: 0 auto; }

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Highlight underline ── */
.underline-accent {
  position: relative; display: inline-block;
}
.underline-accent::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── Stat box ── */
.stat-box { text-align: center; padding: 20px; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--primary); line-height: 1; font-family: 'Poppins', sans-serif; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ── Feature icon ── */
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.feat-icon-blue   { background: var(--primary-light); }
.feat-icon-accent { background: var(--accent-light); }
.feat-icon-green  { background: var(--green-light); }
.feat-icon-gold   { background: var(--gold-light); }

/* ── Exam card ── */
.exam-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: all .22s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.exam-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform .22s;
  transform-origin: bottom;
}
.exam-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--primary); }
.exam-card:hover::before { transform: scaleY(1); }

/* ── Testimonial ── */
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; color: #fff; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }

/* ── Pricing ── */
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; position: relative; }
.price-card.popular { border: 2px solid var(--accent); box-shadow: var(--shadow-xl); }
.price-card.popular .popular-tag {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 0 0 8px 8px; white-space: nowrap;
}
.price-old { text-decoration: line-through; color: var(--text-faint); font-size: 1rem; }
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.check-icon { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.cross-icon { color: var(--text-faint); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ── FAQ ── */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; gap: 12px; }
.faq-q:hover { background: var(--bg); }
.faq-q-text { font-weight: 600; font-size: 14px; color: var(--text-heading); }
.faq-arrow { color: var(--text-muted); transition: transform .25s, color .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-inner { padding: 0 20px 18px; }

/* ── Steps ── */
.step-wrap { position: relative; padding-left: 64px; padding-bottom: 36px; }
.step-wrap:last-child { padding-bottom: 0; }
.step-wrap::before {
  content: ''; position: absolute; left: 21px; top: 44px; bottom: 0;
  width: 2px; background: var(--border2);
}
.step-wrap:last-child::before { display: none; }
.step-num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Trust bar ── */
.trust-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ── Timer ── */
.timer-block { text-align: center; }
.timer-box { background: var(--primary); color: #fff; border-radius: var(--r-sm); padding: 8px 12px; min-width: 52px; display: inline-block; }
.timer-num { font-size: 1.5rem; font-weight: 700; line-height: 1; display: block; font-family: 'Poppins', monospace; }
.timer-unit { font-size: 10px; opacity: .75; display: block; margin-top: 2px; }

/* ── Urgency bar ── */
.urgency-bar { background: var(--accent); color: #fff; padding: 10px 20px; text-align: center; font-size: 13px; font-weight: 600; }

/* ── Sticky CTA ── */
#sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 12px 20px;
  display: flex; gap: 10px; align-items: center;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
#sticky-cta.visible { transform: translateY(0); }

/* ── Navbar ── */
#navbar {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 20px; height: 62px; display: flex; align-items: center; gap: 8px; }
.nav-logo  { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 34px; border-radius: 6px; }
.nav-logo-name { font-weight: 800; font-size: 18px; color: var(--primary); letter-spacing: -.2px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link { font-size: 13.5px; font-weight: 600; color: var(--text-muted); padding: 6px 12px; border-radius: var(--r-sm); transition: all .15s; text-decoration: none; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.lang-toggle { display: flex; background: var(--bg); border: 1px solid var(--border2); border-radius: var(--r-sm); padding: 3px; gap: 2px; }
.lang-btn { padding: 4px 10px; border-radius: 5px; font-size: 12px; font-weight: 700; cursor: pointer; color: var(--text-muted); background: none; border: none; font-family: inherit; transition: all .18s; }
.lang-btn.active { background: var(--primary); color: #fff; }
.mob-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--text-heading); }

/* ── Mobile menu ── */
#mob-menu { display: none; border-top: 1px solid var(--border); background: var(--white); }
#mob-menu.open { display: block; }
.mob-nav-item { display: block; padding: 14px 20px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 15px; color: var(--text-heading); cursor: pointer; transition: background .15s; text-decoration: none; }
.mob-nav-item:hover { background: var(--bg); color: var(--primary); }
.mob-cta-row { padding: 16px 20px; display: flex; gap: 10px; }

/* ── Hero section ── */
.hero-section {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 50%, #1A237E 100%);
  padding: 80px 20px 72px;
  position: relative; overflow: hidden;
  color: #fff;
}
.hero-section::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");
}
.hero-section::after {
  content: '';
  position: absolute; right: -10%; bottom: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}

/* ── Progress bars ── */
.prog-bar { height: 8px; background: var(--bg2); border-radius: 999px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--accent)); }

/* ── Guarantee seal ── */
.guarantee-seal {
  width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0;
  border: 3px solid var(--green);
  background: var(--green-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}

/* ── Marquee ── */
.marquee-outer { overflow: hidden; position: relative; }
.marquee-outer::before, .marquee-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
}
.marquee-outer::before { left: 0;  background: linear-gradient(to right,  var(--bg), transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee-move 28s linear infinite; }
@keyframes marquee-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-chip { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 6px 14px; font-size: 12.5px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity .55s ease, transform .55s ease; }
.reveal-l.on { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal-r.on { opacity: 1; transform: translateX(0); }

/* ── Utility ── */
.flex     { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.gap-4  { gap: 16px; }
.gap-5  { gap: 20px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3    { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mt-2  { margin-top: 8px; }
.mt-3  { margin-top: 12px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-2  { margin-bottom: 8px; }
.mb-3  { margin-bottom: 12px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.p-4   { padding: 16px; }
.p-5   { padding: 20px; }
.p-6   { padding: 24px; }
.p-7   { padding: 28px; }
.fw-6  { font-weight: 600; }
.fw-7  { font-weight: 700; }
.fw-8  { font-weight: 800; }
.fs-13 { font-size: 13px; }
.fs-14 { font-size: 14px; }
.max-560 { max-width: 560px; }
.max-720 { max-width: 720px; }
.max-900 { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full  { width: 100%; }
.rounded-full { border-radius: 999px; }
.bg-white { background: var(--white); }
.bg-blue  { background: var(--primary-light); }
.no-hover:hover { transform: none !important; box-shadow: var(--shadow-sm) !important; }

/* ── Footer ── */
footer { background: #0D1B2A; color: rgba(255,255,255,.8); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 56px 20px 24px; }
.footer-brand { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-link  { color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; transition: color .15s; display: block; margin-bottom: 8px; }
.footer-link:hover { color: rgba(255,255,255,.9); }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; margin-top: 40px; font-size: 12px; color: rgba(255,255,255,.35); }
.social-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.6); transition: background .15s; }
.social-icon:hover { background: var(--primary); color: #fff; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --section-pad: 52px 16px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .mob-toggle { display: flex; margin-left: auto; }
  .lang-toggle { margin-left: auto; }
  .nav-cta-desk { display: none; }
  .hero-section { padding: 60px 16px 56px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr 1fr; }
  .hide-mob { display: none !important; }
  .full-mob { grid-column: 1 / -1; }
  .step-wrap { padding-left: 56px; }
  footer .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid-auto { grid-template-columns: 1fr; }
  .btn-xl { padding: 14px 24px; font-size: 15px; }
}
@media (min-width: 769px) {
  .mob-only { display: none !important; }
  .nav-cta-mob { display: none !important; }
}
