/* ════════════════════════════════
   RLC Web Design — Main Stylesheet
   ════════════════════════════════ */

:root {
  --blue: #1a6fc4;
  --blue-dark: #155da0;
  --blue-light: #e8f1fb;
  --text: #1a1a2e;
  --text-muted: #555;
  --border: #e0e6ef;
  --bg: #ffffff;
  --bg-light: #f4f7fb;
  --bg-dark: #1a1a2e;
  --gold: #f5a623;
  --green: #27ae60;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(26,111,196,0.10);
  --shadow-lg: 0 8px 40px rgba(26,111,196,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 1.125rem;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* ── HEADLINE ACCENT ── */
.accent {
  font-style: italic;
  color: var(--blue);
}

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.10s; }
.fade-up.delay-2 { transition-delay: 0.20s; }
.fade-up.delay-3 { transition-delay: 0.30s; }
.fade-up.delay-4 { transition-delay: 0.40s; }

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(26,111,196,0.25);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,196,0.35);
}
.btn:active {
  background: #0e4880;
  transform: translateY(0);
}

/* ── HERO ── */
.hero {
  background: var(--bg-light);
  padding: 52px 48px 52px;
  text-align: center;
}
/* ── HERO LOGO ── */
.hero-logo {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto 20px;
  transition: opacity 0.18s;
}
.hero-logo:hover { opacity: 0.8; }
.hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  max-width: 1080px;
  margin: 0 auto 24px;
  color: var(--text);
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* ── HERO IMAGE TILES ── */
.hero-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  max-width: 460px;
}
.hero-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s;
  border: none;
  background: none;
  padding: 0;
  width: 100%;
}
.hero-tile:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 48px rgba(26,111,196,0.32);
}
.hero-tile:active { transform: translateY(-2px) scale(1.01); }
.hero-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.hero-tile-label {
  background: var(--blue);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 14px 0;
  transition: background 0.18s;
}
.hero-tile:hover .hero-tile-label { background: var(--blue-dark); }
.hero-tile:active .hero-tile-label { background: #0e4880; }

/* ── LOGOS STRIP ── */
.logos-section {
  padding: 28px 48px 36px;
  background: var(--bg-light);
  text-align: center;
}
.logos-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 22px;
}
.logos-track-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.logos-track {
  display: flex;
  gap: 52px;
  align-items: center;
  width: max-content;
  animation: logos-slide 28s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logos-track img {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: none;
  flex-shrink: 0;
}
@keyframes logos-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION GENERIC ── */
section { padding: 80px 48px; }
.section-tag {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 14px;
}
.value-props .section-title { margin-bottom: 32px; }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ── VALUE PROPS ── */
.value-props { background: #fff; }
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.prop-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.prop-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #1a6fc4 0%, #0d4080 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(26, 111, 196, 0.30);
}
.prop-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}
.prop-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ── STRATEGY CALLOUT ── */
.strategy-callout {
  background: #fff;
  border-radius: 20px;
  padding: 60px 56px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.strategy-callout .eyebrow {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.strategy-callout h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 12px;
}
.strategy-callout p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 1.2rem;
}

/* ── REVIEWS ── */
.reviews-section { background: #fff; }
.reviews-section .section-sub { margin-bottom: 14px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.review-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.review-header img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 1.2rem; }
.reviewer-title { font-size: 1rem; color: var(--text-muted); margin-top: 2px; }
.stars { color: var(--gold); font-size: 1.5rem; margin-bottom: 4px; }
.review-text { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

/* ── ABOUT ── */
.about-section { background: var(--bg-light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 520px; object-fit: cover; display: block; }
.about-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.about-content .section-tag { font-size: 1.1rem; text-align: left; }
.about-content p { color: var(--text-muted); font-size: 1.2rem; line-height: 1.65; margin-bottom: 18px; }

/* ── WHAT WE DO ── */
.whatwedo-section { background: #fff; }
.whatwedo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.service-list { display: flex; flex-direction: column; gap: 28px; }
.service-item { display: flex; gap: 18px; align-items: flex-start; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}
.service-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service-item p { font-size: 1.2rem; color: var(--text-muted); line-height: 1.6; }
.whatwedo-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.whatwedo-img img { width: 100%; height: 520px; object-fit: cover; display: block; }

/* ── NEXT STEPS ── */
.nextsteps-section { background: var(--bg-light); text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 30px auto 48px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.step-card .step-num {
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step-card p { font-size: 1.2rem; color: var(--text-muted); }

/* ── WHO THIS IS FOR ── */
.who-section { background: #fff; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.who-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.who-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}
.who-card p { font-size: 1.2rem; color: var(--text-muted); line-height: 1.55; }

/* ── FAQ ── */
.faq-section { background: var(--bg-light); }
.faq-list {
  max-width: 860px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 28px 22px;
}

/* ── FOOTER CTA ── */
.footer-cta {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.footer-cta .step-num {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.footer-cta h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px; }
.footer-cta p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 32px; }
.footer-cta .disclaimer {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
}
footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: #fff; }

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.2rem;
  margin: 36px 0 10px;
}
.legal-page p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-page ul {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0 0 14px 20px;
}
.legal-page a { color: var(--blue); }

/* ════════════════════════════════
   QUIZ OVERLAY
════════════════════════════════ */
#quiz-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.82);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#quiz-overlay.active { display: flex; }
.quiz-modal {
  background: #fff;
  border-radius: 20px;
  padding: 52px 56px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: quiz-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes quiz-in {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.quiz-close {
  position: absolute;
  top: 18px; right: 24px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: #aaa; line-height: 1;
  transition: color 0.15s;
}
.quiz-close:hover { color: var(--text); }
.quiz-logo {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
}
.quiz-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 50px;
  margin-bottom: 32px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 50px;
  transition: width 0.4s ease;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: step-in 0.3s ease; }
@keyframes step-in {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quiz-step-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: none;
  margin-bottom: 10px;
  text-align: center;
}
.quiz-step h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 6px;
  line-height: 1.25;
  text-align: center;
}
.quiz-hint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
/* 2x2 grid for options */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.quiz-options.single-col {
  grid-template-columns: 1fr;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  text-align: left;
}
.quiz-option:hover { border-color: var(--blue); background: var(--blue-light); }
.quiz-option.selected { border-color: var(--blue); background: var(--blue-light); color: var(--blue); font-weight: 600; }
/* Multi-select shows a circle checkbox */
.quiz-option .multi-check {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  transition: border-color 0.18s, background 0.18s;
  display: flex; align-items: center; justify-content: center;
}
.quiz-option.selected .multi-check {
  border-color: var(--blue);
  background: var(--blue);
}
.quiz-option.selected .multi-check::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}
.quiz-option .opt-icon { font-size: 1.3rem; flex-shrink: 0; }
/* Inline validation */
.quiz-error {
  color: #d0021b;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 6px 0 16px;
  display: none;
}
.quiz-error.visible { display: block; }
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.quiz-nav .btn { padding: 14px 32px; font-size: 1rem; }
.btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  padding: 8px 0;
  transition: color 0.15s;
}
.btn-back:hover { color: var(--text); }
/* Form fields */
.quiz-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.quiz-field-wrap { position: relative; }
.quiz-field-icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}
.quiz-field-wrap input {
  width: 100%;
  padding: 15px 16px 15px 44px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.quiz-field-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
}
.quiz-field-wrap input.invalid { border-color: #d0021b; }
.field-error {
  color: #d0021b;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}
.field-error.visible { display: block; }
/* Phone row */
.quiz-phone-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.quiz-phone-row:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
}
.quiz-phone-row.invalid { border-color: #d0021b; }
.phone-flag {
  padding: 15px 12px 15px 16px;
  font-size: 1rem;
  border-right: 1px solid var(--border);
  background: var(--bg-light);
  white-space: nowrap;
  color: var(--text-muted);
  font-weight: 600;
  cursor: default;
}
.quiz-phone-row input {
  flex: 1;
  padding: 15px 16px;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
}
/* Privacy checkbox */
.quiz-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.quiz-privacy input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.quiz-privacy a { color: var(--blue); text-decoration: underline; }
.quiz-privacy-error {
  color: #d0021b;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: -12px;
  margin-bottom: 12px;
  display: none;
}
.quiz-privacy-error.visible { display: block; }
/* Security note */
.quiz-secure {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}
/* Result */
.quiz-result { text-align: center; }
.quiz-result .result-icon { font-size: 3rem; margin-bottom: 16px; }
.quiz-result h2 { font-size: 1.8rem; margin-bottom: 12px; }
.quiz-result p { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; line-height: 1.65; }
.result-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}
.result-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--blue-light);
  border-radius: 10px;
  font-size: 0.97rem;
  color: var(--text);
}
.result-highlight .check { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  section { padding: 60px 32px; }
  .hero { padding: 32px 32px 50px; }
  .logos-section { padding: 24px 32px 28px; }
}
@media (max-width: 700px) {
  .container { padding: 0 20px; }
  section { padding: 48px 20px; }
  .hero { padding: 28px 20px 44px; }
  .logos-section { padding: 20px 20px 24px; }
  .props-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid,
  .about-inner,
  .whatwedo-inner,
  .who-grid { grid-template-columns: 1fr; }
  .about-img img, .whatwedo-img img { height: 280px; }
  .quiz-modal { padding: 32px 22px; }
  .quiz-options { grid-template-columns: 1fr; }
  .strategy-callout { padding: 36px 24px; }
  .legal-page { padding: 40px 20px 60px; }
  /* Typography scale-down for mobile */
  .prop-card h3 { font-size: 1.05rem; }
  .strategy-callout p { font-size: 1rem; max-width: 100%; }
  .reviewer-name { font-size: 1.05rem; }
  .reviewer-title { font-size: 0.9rem; }
  .review-header img { width: 64px; height: 64px; }
  .about-content p { font-size: 1rem; }
  .about-content .section-tag { font-size: 1rem; }
  .service-item h4 { font-size: 1.05rem; }
  .service-item p { font-size: 1rem; }
  .step-card h3 { font-size: 1.05rem; }
  .step-card p { font-size: 1rem; }
  .who-card p { font-size: 1rem; }
  .footer-cta .disclaimer { font-size: 0.9rem; }
  .stars { font-size: 1.2rem; }
}
