/* ============================================
   SAME DAY ROAD TEST – Global Stylesheet
   Matches samedayroadtest.com design exactly
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Barlow:wght@300;400;500;600;700&display=swap');

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

:root {
  --red:      #e31e24;
  --yellow:   #f5c800;
  --green:    #1a7a2e;
  --black:    #000000;
  --dark:     #111111;
  --dark2:    #1c1c1c;
  --white:    #ffffff;
  --offwhite: #f7f7f7;
  --gray:     #f0f0f0;
  --lgray:    #e5e5e5;
  --text:     #333333;
  --font-d:   'Barlow Condensed', sans-serif;
  --font-b:   'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.header-logo img { height: 50px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav > a:hover,
.main-nav > a.active { color: var(--yellow); }

.nav-book-btn {
  font-family: var(--font-d) !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 12px 22px !important;
  margin-left: 10px;
  transition: background 0.2s !important;
}
.nav-book-btn:hover { background: #ffd600 !important; color: #000 !important; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 25px; height: 2px; background: #fff; transition: all 0.3s; }
.mobile-nav { display: none; background: #111; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-d); font-weight: 700;
  font-size: 1rem; text-transform: uppercase;
  color: #fff; padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .mob-book {
  background: var(--yellow); color: var(--black) !important;
  text-align: center; margin: 12px 16px 16px;
  padding: 14px 24px !important; font-weight: 800 !important;
  border: none;
}

/* ========== HERO ========== */
.hero {
  background: var(--black);
  min-height: 520px;
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.hero-left {
  padding: 70px 40px 70px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 8px;
}
.hero-sub {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-right {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  padding-top: 20px;
  min-height: 520px;
}
.hero-right img {
  position: absolute; bottom: 0; right: -20px;
  max-height: 500px; width: auto;
  object-fit: contain;
}
/* Lady image positioned left side bottom on hero */
.hero-lady {
  position: absolute; bottom: 0; left: -60px;
  height: 420px; width: auto; object-fit: contain;
  z-index: 2;
}

/* ========== BTN ========== */
.btn {
  display: inline-block;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 15px 40px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #ffd600; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #c91a1f; }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #333; }

/* ========== READY SECTION ========== */
/* White section with 3 icon columns + Book Now */
.ready-section { background: #fff; padding: 80px 24px; }
.ready-inner { max-width: 1200px; margin: 0 auto; }
.ready-heading {
  font-family: var(--font-d);
  font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase; color: var(--black);
  margin-bottom: 50px;
}
.ready-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.ready-item h3 {
  font-family: var(--font-d);
  font-weight: 800; font-size: 1.15rem;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 12px;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 10px; display: inline-block;
}
.ready-item p { font-size: 0.92rem; color: #555; line-height: 1.7; }

/* ========== BRING SECTION (dark bg) ========== */
.bring-section { background: var(--dark); padding: 80px 24px; }
.bring-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-d);
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--yellow); margin-bottom: 10px;
}
.section-heading {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; line-height: 1.0;
  margin-bottom: 40px;
}
.bring-section .section-heading { color: #fff; }

/* accordion */
.accordion { border-top: 1px solid rgba(255,255,255,0.15); }
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
.acc-btn {
  width: 100%; background: none; border: none;
  text-align: left; cursor: pointer;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-d);
  font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff;
  transition: color 0.2s;
}
.acc-btn:hover { color: var(--yellow); }
.acc-btn .plus {
  font-size: 1.5rem; line-height: 1;
  color: var(--yellow);
  transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.acc-btn.open .plus { transform: rotate(45deg); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-body.open { max-height: 600px; }
.acc-body-inner { padding: 4px 0 22px; }
.acc-body-inner ul { padding-left: 20px; list-style: disc; }
.acc-body-inner ul li {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  margin-bottom: 8px; line-height: 1.65;
}
.acc-body-inner p {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  margin-bottom: 10px; line-height: 1.65;
}
.acc-body-inner strong { color: #fff; }

/* ========== STEPS / PROCESS ========== */
.steps-section { background: var(--black); padding: 70px 24px; }
.steps-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.step-card {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.step-card:last-child { border-right: none; }
.step-icon {
  width: 64px; height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}
.step-card h3 {
  font-family: var(--font-d);
  font-weight: 800; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; margin-bottom: 8px;
}
.step-card p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ========== HOURS BAR ========== */
.hours-bar {
  background: var(--red);
  padding: 22px 24px;
  text-align: center;
}
.hours-bar p {
  font-family: var(--font-d);
  font-weight: 800; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #fff;
}

/* ========== LOCATIONS ========== */
.locations-section { background: var(--offwhite); padding: 80px 24px; }
.locations-inner { max-width: 1200px; margin: 0 auto; }
.locations-section .section-heading { color: var(--black); }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.loc-card {
  background: var(--black);
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
}
.loc-card strong {
  display: block;
  font-family: var(--font-d);
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase;
  color: var(--black); margin-bottom: 4px;
}
.loc-card span { font-size: 0.86rem; color: #555; }
.map-embed { width: 100%; height: 400px; border: 0; display: block; }

/* ========== CONTACT ========== */
.contact-section { background: #1e2a38; padding: 80px 24px; }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-section .section-heading { color: #fff; }
.contact-info p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 8px; }
.contact-info a { color: var(--yellow); }
.cform input,
.cform textarea {
  display: block; width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--font-b); font-size: 0.95rem;
  padding: 13px 16px; margin-bottom: 12px;
}
.cform input::placeholder, .cform textarea::placeholder { color: rgba(255,255,255,0.35); }
.cform textarea { height: 110px; resize: vertical; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cform-row input { margin-bottom: 0; }

/* ========== BLOG POSTS ========== */
.blog-section { background: #fff; padding: 80px 24px; }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-section .section-heading { color: var(--black); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 40px;
}
.blog-card { border: 1px solid var(--lgray); overflow: hidden; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.blog-card-img {
  width: 100%; height: 200px;
  background: var(--black);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px 20px; }
.blog-tag {
  font-family: var(--font-d); font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-family: var(--font-d); font-weight: 800;
  font-size: 1.1rem; text-transform: uppercase;
  color: var(--black); margin-bottom: 10px; line-height: 1.2;
}
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--yellow); }
.blog-card-body p { font-size: 0.88rem; color: #666; line-height: 1.65; margin-bottom: 14px; }
.read-more {
  font-family: var(--font-d); font-size: 0.88rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--red);
}
.read-more:hover { color: var(--black); }

/* ========== FOOTER ========== */
.site-footer { background: var(--black); color: #fff; padding: 60px 24px 0; }
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 48px; width: auto; margin-bottom: 18px; }
.footer-phone {
  display: block;
  font-family: var(--font-d); font-weight: 900;
  font-size: 1.4rem; color: var(--yellow);
  letter-spacing: 0.03em; margin-bottom: 16px;
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-d); font-weight: 800;
  font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.footer-col a {
  display: block; font-size: 0.88rem;
  color: rgba(255,255,255,0.55); padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: var(--black);
  padding: 0;
  overflow: hidden;
  min-height: 480px;
  display: flex; align-items: stretch;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
}
.page-hero-text { padding: 70px 40px 70px 0; }
.page-hero-text .hero-eyebrow { color: var(--yellow); margin-bottom: 8px; }
.page-hero-text .hero-sub { color: #fff; }
.page-hero-text .hero-title { margin-bottom: 28px; }
.page-hero-img {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative; min-height: 480px;
}
.page-hero-img img {
  position: absolute; bottom: 0;
  max-height: 460px; width: auto;
  object-fit: contain;
}

/* ========== ABOUT STRIP (motorcycle/cdl pages) ========== */
.about-strip { background: var(--offwhite); padding: 60px 24px; }
.about-strip-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.about-strip p {
  font-size: 1.05rem; color: #444; max-width: 820px;
  margin: 0 auto 12px; line-height: 1.75;
}
.about-strip h2 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(1.6rem,3vw,2.4rem);
  text-transform: uppercase; color: var(--black);
  margin-bottom: 6px;
}
.smooth-words {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2rem,4vw,3rem);
  text-transform: uppercase;
  color: var(--red);
}

/* ========== EXAM LOCATIONS (maps) ========== */
.exam-section { background: #1a3a4a; padding: 80px 24px; }
.exam-inner { max-width: 1200px; margin: 0 auto; }
.exam-section .section-label { color: #f5c800; }
.exam-section .section-heading { color: #fff; }
.exam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.exam-card h3 {
  font-family: var(--font-d); font-weight: 800;
  font-size: 1.3rem; text-transform: uppercase;
  color: #f5c800; margin-bottom: 6px;
}
.exam-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.exam-card iframe { width: 100%; height: 240px; border: 0; display: block; border: 2px solid rgba(255,255,255,0.1); }

/* ========== CTA CALL SECTION ========== */
.cta-call {
  background: var(--dark2);
  padding: 32px 24px;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.cta-call-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-call h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase; color: #fff;
  margin: 0;
  letter-spacing: 0.03em;
  flex: 1;
  min-width: 220px;
}
.cta-call h2 span { color: var(--yellow); }
.cta-call .phone {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--yellow);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
}
.cta-call .phone:hover { color: #fff; }
.cta-call .cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== REFUND POLICY ========== */
.refund-section { background: var(--black); padding: 60px 24px; }
.refund-inner { max-width: 1200px; margin: 0 auto; }
.refund-section .section-label { color: var(--yellow); }
.refund-section .section-heading { color: #fff; margin-bottom: 28px; }
.refund-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.refund-card {
  background: #1a1a1a;
  border-top: 3px solid var(--red);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.refund-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.refund-card-text strong {
  display: block;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 6px;
}
.refund-card-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
}

/* ========== LEGAL PAGES ========== */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 70px 24px 90px; }
.legal-wrap h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2rem,4vw,3rem);
  text-transform: uppercase; color: var(--black);
  margin-bottom: 32px; padding-bottom: 18px;
  border-bottom: 4px solid var(--red);
}
.legal-wrap h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: 1.15rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--black);
  margin: 36px 0 12px;
}
.legal-wrap p { font-size: 0.95rem; line-height: 1.8; color: #444; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.legal-wrap ul li { font-size: 0.95rem; line-height: 1.75; color: #444; margin-bottom: 8px; }
.legal-wrap strong { color: var(--black); }
.legal-wrap a { color: var(--yellow); }

/* ========== PREPARE PAGE ========== */
.tips-section { background: #fff; padding: 80px 24px; }
.tips-inner { max-width: 1200px; margin: 0 auto; }
.tips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.tip-card {
  border: 1px solid var(--lgray);
  padding: 28px 24px;
  border-top: 4px solid var(--yellow);
  transition: box-shadow 0.2s;
}
.tip-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.tip-card .tip-icon { font-size: 2rem; margin-bottom: 14px; }
.tip-card h3 {
  font-family: var(--font-d); font-weight: 800;
  font-size: 1.05rem; text-transform: uppercase;
  color: var(--black); margin-bottom: 10px;
}
.tip-card p { font-size: 0.9rem; color: #555; line-height: 1.65; }

.checklist-section { background: var(--dark); padding: 80px 24px; }
.checklist-inner { max-width: 1200px; margin: 0 auto; }
.checklist-section .section-heading { color: #fff; }
.checklist-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 36px;
}
.check-card {
  background: rgba(255,255,255,0.05);
  border-top: 3px solid var(--yellow);
  padding: 24px 20px;
}
.check-card h4 {
  font-family: var(--font-d); font-weight: 800;
  font-size: 1rem; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.check-card p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .steps-inner { grid-template-columns: repeat(2,1fr); }
  .step-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .step-card:nth-child(2n) { }
  .step-card:last-child { border-bottom: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .checklist-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 0 20px; text-align: center; align-items: center; }
  .hero-right { min-height: 280px; }
  .hero-right img { position: relative; right: auto; max-height: 280px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-text { padding: 60px 0 20px; text-align: center; align-items: center; display: flex; flex-direction: column; }
  .page-hero-img { min-height: 240px; }
  .page-hero-img img { position: relative; max-height: 240px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ready-grid { grid-template-columns: 1fr; gap: 28px; }
  .exam-grid { grid-template-columns: 1fr; }
  .cta-call-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-call h2 { font-size: 1rem; }
  .refund-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 3rem; }
  .hero-right img { max-height: 220px; }
  .blog-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-inner { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
  .cform-row input { margin-bottom: 12px; }
  .legal-wrap { padding: 50px 16px 60px; }
  .cta-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .refund-grid { grid-template-columns: 1fr; }
}

/* === Dark header overrides === */
.site-header { box-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.main-nav > a { color: rgba(255,255,255,0.85); }
.main-nav > a:hover,
.main-nav > a.active { color: var(--yellow); }
.mobile-nav a { color: rgba(255,255,255,0.85); }
.mobile-nav a:hover { color: var(--yellow); }
