/* ── Soho Font Face ── */
@font-face {
  font-family: 'SohoStd-Bold';
  src: local('SohoStd-Bold'),
       url('fonts/SohoStd-Bold.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ============================================================
   iDriveSafely — FL Permit Test v4
   Base: v1 (conservative, professional)
   Creative accents: poster headline, marquee, squiggly lines,
   tilted cards, color-band steps, polaroid reviews, guarantee
   watermark, bold bottom CTA
   ============================================================ */

/* ── Variables ── */
:root {
  --blue:         #0ba8cf;
  --blue-dark:    #00586e;
  --blue-hover:   #008fb0;
  --yellow:       #efae00;
  --yellow-dark:  #d49a00;
  --white:        #ffffff;
  --bg-gray:      #ecf2f7;
  --bg-light:     #f9f9f9;
  --border:       #ececec;
  --border-mid:   #d8e1e6;
  --ink:          #0f2a35;
  --text:         #333333;
  --text-mid:     #3d3d3d;
  --text-light:   #5a5a5a;
  --green:        #7ac572;
  --font-head:    'SohoStd-Bold', sans-serif;
  --font-body:    'Oxygen', 'Lato', sans-serif;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { font-size: 0.95rem; font-weight: 400; color: var(--text-mid); line-height: 1.7; }

/* ── Buttons ── */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--yellow);
  color: #111;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-shadow: none;
  transition: background .15s ease-in-out, transform .1s;
  white-space: nowrap;
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-yellow.btn-lg { font-size: 1.15rem; padding: 16px 36px; }
.btn-yellow.btn-block { display: block; width: 100%; text-align: center; }

.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .15s ease-in-out;
  white-space: nowrap;
}
.btn-blue:hover { background: #333; }
.btn-blue.btn-block { display: block; width: 100%; text-align: center; }
.btn-blue.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
}

/* ── Section Headers ── */
.section-header { margin-bottom: 36px; }
.section-header h2 { margin-bottom: 8px; }
.section-header p { max-width: 520px; font-weight: 400; }
.section-header-centered { text-align: center; }
.section-header-centered p { margin: 0 auto; }

/* ── Squiggly SVG line ── */
.section-squiggle {
  display: block;
  margin-bottom: 10px;
}
.section-squiggle svg { display: block; }

/* ── Announce Bar ── */
.announce-bar {
  background: var(--blue-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
  padding: 9px 16px;
}
.announce-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.announce-mobile { display: none; }
.announce-desktop { display: inline; }
#timer, #timer-mobile {
  color: #ffd166;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-head);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.header-top { background: #fff; }
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.site-logo { height: 56px; width: auto; display: block; }
.header-right { display: flex; align-items: center; gap: 16px; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
}
.phone-link:hover { color: var(--blue); }
.btn-login {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  padding: 7px 16px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  transition: all .15s;
}
.btn-login:hover { background: var(--blue); color: #fff; }

/* ============================================================
   HERO — Poster Headline Style
   ============================================================ */
.hero {
  background: linear-gradient(125deg, #00586e 0%, #007a9a 55%, #0092b8 100%);
  color: #fff;
  padding: 52px 0 0;
  position: relative;
  overflow: hidden;
}

/* Animated blob shapes in hero bg */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(11,168,207,.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  animation: blob-drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(239,174,0,.08) 0%, transparent 70%);
  bottom: 60px;
  left: 0;
  pointer-events: none;
  animation: blob-drift 16s ease-in-out infinite alternate-reverse;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
}
.hero-content { padding-bottom: 48px; }

/* Poster headline classes */
.ph-small {
  font-size: 0.85rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 4px;
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
}
.ph-big {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: .95;
  text-transform: uppercase;
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 4px;
}
.ph-white { color: #fff; }
.ph-yellow { color: var(--yellow); }
.ph-underline { position: relative; display: inline; }
.ph-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.poster-headline { margin-bottom: 28px; }

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  text-wrap: pretty;
  line-height: 1.35;
}
.check-icon {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  stroke-width: 3;
  flex-shrink: 0;
  fill: none;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  flex-wrap: wrap;
}
.hero-stars { color: #ffd166; font-size: 0.95rem; letter-spacing: 1px; }
.hero-trust-sep { color: rgba(255,255,255,.3); }

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 0;
}
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,.32));
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 8px;
  padding: 9px 13px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  z-index: 3;
  white-space: nowrap;
}
.hero-badge div { display: flex; flex-direction: column; }
.hero-badge strong { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.hero-badge span { font-size: 0.7rem; color: var(--text-light); }
.hero-badges-stack {
  position: absolute;
  top: 28px;
  right: -8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   DOUBLE SCROLLING MARQUEE
   ============================================================ */
.marquee-section { overflow: hidden; }

.marquee-row {
  overflow: hidden;
  padding: 14px 0;
}
.marquee-row-dark { background: #00586e; }
.marquee-row-light { background: #ecf2f7; }

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}
.marquee-track-left  { animation: scroll-left  22s linear infinite; }
.marquee-track-right { animation: scroll-right 18s linear infinite; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.marquee-row-dark  .marquee-item { color: #fff; }
.marquee-row-light .marquee-item { color: #00586e; }

.marquee-dot-yellow { color: #efae00; font-size: 0.7rem; }
.marquee-dot-blue   { color: #0ba8cf; font-size: 0.85rem; }

@keyframes scroll-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); }    }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-mid);
  padding: 14px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
}
.trust-sep {
  width: 1px;
  height: 22px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ============================================================
   PRICING SECTION — Tilted Cards
   ============================================================ */
.pricing-section {
  padding: 72px 0 80px;
  background: var(--bg-gray);
}

.pricing-header {
  margin-bottom: 40px;
}
.pricing-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 8px;
}
.pricing-header p {
  max-width: 520px;
  font-weight: 400;
}

/* Tabs */
.audience-tabs {
  display: inline-flex;
  gap: 0;
  margin-bottom: 44px;
  background: #dce8ef;
  border: 2px solid var(--border-mid);
  border-radius: 6px;
  padding: 4px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 4px;
  transition: color .15s, background .15s, box-shadow .15s;
}
.tab-btn svg { stroke: currentColor; fill: none; }
.tab-btn.active {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.tab-btn.active svg { stroke: #fff; }
.tab-btn:hover:not(.active) { color: var(--blue-dark); background: rgba(0,88,110,.08); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Tilted cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.cards-grid-1col {
  grid-template-columns: 1fr;
  max-width: 440px;
}

/* Pricing card */
.course-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 4px 4px 0 rgba(0,88,110,.2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.course-card:hover {
  transform: rotate(0deg) !important;
  box-shadow: 0 8px 32px rgba(0,88,110,.18) !important;
}

/* Featured card */
.course-card-featured {
  border-top: 4px solid var(--blue);
  box-shadow: 4px 4px 0 rgba(11,168,207,.25);
  z-index: 2;
}

/* Crown banner */
.card-crown {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-dark);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.card-audience-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
  display: block;
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.card-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}
.card-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
}

/* v4 price block — disambiguation format */
.card-price-block {
  margin: 0 0 4px;
  padding: 14px 0;
  border-top: 1px dotted var(--border-mid);
  border-bottom: 1px dotted var(--border-mid);
}
.discount-pct {
  font-size: 0.95em;
  font-weight: 700;
  color: #c62828;
  font-family: var(--font-head);
}
.sale-price-wrap {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-head);
  margin-left: 6px;
  line-height: 1;
}
.price-cents {
  font-size: 0.45em;
  vertical-align: super;
  font-family: var(--font-head);
}
.reg-price-line {
  display: block;
  font-size: 0.82em;
  color: var(--text-light);
  margin-top: 5px;
  font-weight: 400;
  font-family: var(--font-body);
}
.orig-price { text-decoration: line-through; }

.card-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.45;
}
.cf-check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.guarantee-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  font-family: var(--font-body);
}

.pricing-footnote {
  margin-top: 28px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  text-align: center;
}

.adult-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  background: #e7f2f6;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================================
   HOW IT WORKS — "Zero to License" Color Band Steps
   ============================================================ */
.how-section {
  background: var(--white);
  padding: 72px 0 80px;
}

.how-header {
  margin-bottom: 36px;
}
.how-title {
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.hiw-tabs {
  display: inline-flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg-gray);
  border: 2px solid var(--border-mid);
  border-radius: 6px;
  padding: 4px;
}
.hiw-tab {
  background: transparent;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.hiw-tab.active {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.hiw-tab:hover:not(.active) { color: var(--blue-dark); }

.steps-wrap { display: none; }
.steps-wrap.active { display: block; }

/* Color band steps */
.step-bands { margin: 0 -24px; }

.step-band {
  border-top: 2px solid rgba(0,0,0,.07);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.step-band-white  { background: #fff; }
.step-band-gray   { background: #ecf2f7; }
.step-band-blue   { background: #0ba8cf; }
.step-band-dark   { background: #00586e; }

.step-band-inner {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Watermark number */
.step-wm-num {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-band-white  .step-wm-num,
.step-band-gray   .step-wm-num { color: rgba(0,88,110,.1); }
.step-band-blue   .step-wm-num { color: rgba(255,255,255,.12); }
.step-band-dark   .step-wm-num { color: rgba(255,255,255,.1); }

.step-num-big {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  font-weight: 700;
}
.step-band-white  .step-num-big,
.step-band-gray   .step-num-big { color: var(--blue-dark); opacity: .3; }
.step-band-blue   .step-num-big { color: rgba(255,255,255,.4); }
.step-band-dark   .step-num-big { color: rgba(255,255,255,.35); }

.step-text-col h4 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: 4px;
}
.step-text-col p {
  font-size: 0.88rem;
  font-weight: 400;
  max-width: 560px;
}
.step-band-white  .step-text-col h4,
.step-band-gray   .step-text-col h4 { color: var(--ink); }
.step-band-white  .step-text-col p,
.step-band-gray   .step-text-col p  { color: var(--text-mid); }
.step-band-blue   .step-text-col h4,
.step-band-dark   .step-text-col h4 { color: #fff; }
.step-band-blue   .step-text-col p,
.step-band-dark   .step-text-col p  { color: rgba(255,255,255,.85); }

.step-band-cta {
  flex-shrink: 0;
}

.hiw-cta {
  margin-top: 36px;
  text-align: center;
}

/* ============================================================
   WHY IDRIVESAFELY — Features Grid
   ============================================================ */
.features-section {
  background: var(--bg-gray);
  padding: 72px 0 80px;
}
.features-section .section-header {
  margin-bottom: 44px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,88,110,.06);
  transition: box-shadow .2s;
}
.feature-item:hover { box-shadow: 0 4px 20px rgba(0,88,110,.12); }
.feat-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.feature-item h4 { color: var(--ink); font-size: 1.02rem; }
.feature-item p { font-size: 0.87rem; font-weight: 400; }

/* ============================================================
   REVIEWS — Polaroid Tilted Cards
   ============================================================ */
.reviews-section {
  background: var(--white);
  padding: 80px 0;
}

.reviews-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}

.reviews-heading { }
.reviews-heading .rh-what {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: .95;
}
.reviews-heading .rh-students {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  line-height: .95;
}
.reviews-heading .rh-say {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--blue-dark);
  line-height: .95;
}
.reviews-heading .overall-rating {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rating-stars { color: #ffd166; font-size: 1.1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; font-weight: 400; color: var(--text-light); }

.reviews-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Polaroid review cards */
.review-card {
  background: #fff;
  border: 2px solid var(--ink);
  padding: 20px 20px 48px;
  box-shadow: 5px 5px 0 rgba(0,88,110,.18);
  border-radius: 2px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover {
  transform: rotate(0deg) !important;
  box-shadow: 6px 6px 0 var(--blue) !important;
}

.rv-stars { color: #ffd166; font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-card > p {
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.rv-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rv-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-gray);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.rv-author div { display: flex; flex-direction: column; }
.rv-author strong { font-size: 0.85rem; font-family: var(--font-head); color: var(--ink); }
.rv-author span { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.guarantee-section {
  background: var(--yellow);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.guarantee-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 10rem);
  color: rgba(0,0,0,.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  user-select: none;
  line-height: 1;
}

.guarantee-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-copy { flex: 1; min-width: 260px; }
.guarantee-copy .g-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0,0,0,.6);
  margin-bottom: 8px;
}
.guarantee-copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 10px;
}
.guarantee-copy p {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(0,0,0,.7);
  max-width: 560px;
}

.guarantee-cta { flex-shrink: 0; }
.btn-guarantee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-guarantee:hover { background: #000; transform: translateY(-1px); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--bg-gray);
  padding: 72px 0 80px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.faq-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-left p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-mid);
}
.faq-item:first-child { border-top: 1px solid var(--border-mid); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color .15s;
}
.faq-q:hover { color: var(--blue); }
.faq-arr {
  font-size: 1.2rem;
  color: var(--blue);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arr { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 16px; }
.faq-a p { font-size: 0.9rem; font-weight: 400; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   BOTTOM CTA — Bold Dramatic
   ============================================================ */
.bottom-cta-v4 {
  background: #00586e;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Starburst decorations */
.bottom-cta-v4::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(11,168,207,.18) 0%, transparent 65%);
  top: -200px;
  left: -100px;
  pointer-events: none;
}
.bottom-cta-v4::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(239,174,0,.12) 0%, transparent 65%);
  bottom: -150px;
  right: -80px;
  pointer-events: none;
}

.bcta-inner {
  position: relative;
  z-index: 1;
}
.bcta-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.bcta-h2 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: .9;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.bcta-h2-white { color: #fff; display: block; }
.bcta-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 3px var(--yellow);
}
.bcta-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.bcta-micro {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
.bcta-micro span::before {
  content: '✓ ';
  color: var(--green);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--border-mid);
  box-shadow: 0 -4px 20px rgba(0,0,0,.14);
  z-index: 200;
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform .3s ease-in-out;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta-text { display: flex; flex-direction: column; }
.sticky-cta-text strong { font-family: var(--font-head); font-size: 0.95rem; color: var(--text); }
.sticky-cta-text span { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #fff; }
.footer-main { padding: 56px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 12px;
}
.footer-phone {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.footer-phone a {
  color: var(--blue);
  font-family: var(--font-head);
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}
.footer-bottom p a { color: rgba(255,255,255,.65); text-decoration: underline; }
.footer-bottom p a:hover { color: #fff; }
.payment-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-cards { height: 24px; width: auto; }
.payment-pay { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .65; }

/* ============================================================
   RESPONSIVE — 960px
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { padding-bottom: 0; }
  .hero-checks {
    align-items: flex-start;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { padding-bottom: 0; max-width: 500px; margin: 0 auto; }
  .hero-badges-stack { display: none; }

  .cards-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
.course-card-featured { transform: none; box-shadow: 4px 4px 0 rgba(11,168,207,.25); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-inner { grid-template-columns: 1fr; gap: 36px; }
  .reviews-cards { flex-direction: column; max-width: 440px; margin: 0 auto; }

  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { text-align: center; }
  .faq-left .btn-blue { margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .step-band-inner { grid-template-columns: 80px 1fr auto; }

  .guarantee-inner { flex-direction: column; text-align: center; }
  .guarantee-icon { margin: 0 auto; }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  html { font-size: 15px; }

  .announce-desktop { display: none; }
  .announce-mobile { display: inline; }

  .header-top-inner { height: 60px; }
  .site-logo { height: 44px; }
  .phone-text { display: none; }

  .hero { padding: 36px 0 0; }
  .ph-big { font-size: clamp(1.8rem, 10vw, 2.8rem); }

  .marquee-item { font-size: 0.75rem; }

  .trust-inner { gap: 0; }
  .trust-sep { display: none; }
  .trust-item { width: 50%; justify-content: center; border-bottom: 1px solid var(--border-mid); padding: 8px 12px; }

  .audience-tabs { display: flex; flex-direction: column; width: 100%; }
  .tab-btn { justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }

  .step-band-inner { grid-template-columns: 60px 1fr; }
  .step-band-cta { display: none; }
  .step-num-big { font-size: 2.8rem; }

  .faq-left { display: none; }
  .faq-layout { grid-template-columns: 1fr; }

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

  .bcta-outline { -webkit-text-stroke: 2px var(--yellow); }

  .sticky-mobile-cta { display: block; }

  .hiw-tabs { display: flex; flex-direction: column; width: 100%; }
  .hiw-tab { text-align: center; }
}
