/* ═══════════════════════════════════════════
   RADIOLOGY ROADMAP — style.css
   Deep Navy · Electric Blue · Yellow CTA · Manrope
═══════════════════════════════════════════ */

/* ─── RESET & BASE ───────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:         #0A1929;
  --navy-mid:     #0F2847;
  --navy-card:    #132B50;
  --navy-light:   #1E3A8A;
  --blue-accent:  #3B82F6;
  --blue-glow:    rgba(59, 130, 246, 0.15);
  --yellow:       #FFD23F;
  --yellow-dk:    #E6B800;
  --bg:           #0A1929;
  --text:         #FFFFFF;
  --text-muted:   rgba(255, 255, 255, 0.60);
  --text-dim:     rgba(255, 255, 255, 0.38);
  --border:       rgba(255, 255, 255, 0.08);
  --border-blue:  rgba(59, 130, 246, 0.28);
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.4);
  --shadow-md:    0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.6);
  --shadow-yellow: 0 8px 32px rgba(255,210,63,.32);
  --shadow-blue:  0 8px 32px rgba(59,130,246,.22);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --font:         'Manrope', system-ui, -apple-system, sans-serif;
  --transition:   220ms ease;
  --max-width:    1160px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── LAYOUT ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(59,130,246,0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in:nth-child(2) { transition-delay: 0.08s; }
.animate-fade-in:nth-child(3) { transition-delay: 0.16s; }
.animate-fade-in:nth-child(4) { transition-delay: 0.24s; }
.animate-fade-in:nth-child(5) { transition-delay: 0.32s; }

/* ─── TYPOGRAPHY ─────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label--light {
  color: var(--yellow);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .15);
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: var(--white);
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-sm  { font-size: 14px; padding: 9px 18px; }
.btn-lg  { font-size: 16px; padding: 14px 28px; }
.btn-xl  { font-size: 18px; padding: 18px 38px; }

.btn-primary {
  background: var(--yellow);
  color: #071420;
  border-color: var(--yellow);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255,210,63,.22);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-blue);
}
.btn-outline:hover {
  background: var(--blue-glow);
  border-color: var(--blue-accent);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.22);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--yellow);
  color: #071420;
  border-color: var(--yellow);
  font-size: 18px;
  padding: 18px 44px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255,210,63,.22);
}
.btn-accent:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

/* ─── NAVIGATION ─────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 25, 41, .90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -.02em;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover,
.nav-link--active { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────── */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(165deg, #0A1929 0%, #0F2847 55%, #0A1929 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59,130,246,.13) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.30);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  box-shadow: 0 0 24px rgba(59,130,246,.10);
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.hero-headline {
  font-size: clamp(42px, 6.5vw, 74px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.headline-highlight {
  background: linear-gradient(90deg, #93C5FD 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-break { display: none; }

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  line-height: 1.62;
  max-width: 500px;
  margin: 0 auto 52px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-reassurance {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ─── LOGOS BAR ──────────────────────────── */
.logos-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}

.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-muted);
}

/* ─── HERO VIDEO ─────────────────────────── */
.hero-video-section {
  padding: 48px 0 72px;
  background: var(--navy-mid);
}

/* ─── PAIN SECTION ───────────────────────── */
.pain-section {
  background: var(--bg);
}

.pain-heading {
  max-width: 680px;
  margin-bottom: 52px;
}

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

.pain-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.pain-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.22);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  margin-bottom: 22px;
}

.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CALL GUIDE ─────────────────────────── */
.callguide {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--bg) 100%);
}

.callguide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 60px;
}

.callguide-mockup {
  display: flex;
  justify-content: center;
}

.callguide-promo-img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-lg), 0 0 64px rgba(59,130,246,.14);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 44px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: #071420;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.callguide-cta-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-reassurance {
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials {
  background: var(--navy-mid);
}

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

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}

.stars {
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,.8);
  font-style: normal;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--blue-accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── NEWSLETTER ─────────────────────────── */
.newsletter {
  background: linear-gradient(140deg, #0F2847 0%, #1E3A8A 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,.18) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-heading { color: var(--white); }
.newsletter-sub {
  color: rgba(255,255,255,.68);
  max-width: 500px;
  margin-bottom: 36px;
}

.newsletter-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 44px;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}

.nf-icon { font-size: 18px; }

.newsletter-fine {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin-top: 16px;
}

/* ─── YOUTUBE ────────────────────────────── */
.youtube { background: var(--bg); }

.main-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-card);
  box-shadow: var(--shadow-lg);
}

.main-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.shorts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin: 56px 0 20px;
}

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

.shorts-grid + .shorts-grid {
  margin-top: 12px;
}

.short-card {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--navy-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition);
}

.short-card:hover {
  transform: scale(1.03);
  border-color: var(--border-blue);
}

.short-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}

.short-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.short-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.short-card:hover .short-overlay { background: rgba(0,0,0,.52); }

.short-overlay span {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.92);
  color: #071420;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding-left: 3px;
  transition: transform var(--transition);
}

.short-card:hover .short-overlay span { transform: scale(1.1); }

.youtube-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── ABOUT ──────────────────────────────── */
.about {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--blue-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(59,130,246,.25), 0 0 0 8px rgba(59,130,246,.08), var(--shadow-blue);
}

.founder-initials {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
}

.about-heading { margin-bottom: 24px; }

.founder-bio p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.founder-signoff {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin-top: 24px !important;
}

/* ─── FAQ ────────────────────────────────── */
.faq { background: var(--bg); }

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-inner .section-heading { margin-bottom: 48px; }

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: rgba(255,255,255,.75); }

.faq-chevron {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer { padding-bottom: 24px; }

.faq-answer p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-muted);
}

/* ─── FINAL CTA ──────────────────────────── */
.final-cta {
  background: linear-gradient(160deg, #0F2847 0%, #1E3A8A 50%, #0F2847 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,.22) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.62);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.65;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: #060F1A;
  color: rgba(255,255,255,.5);
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.footer-tagline { font-size: 13px; }

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--yellow);
  color: #071420;
  border-color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.28);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .callguide-grid { grid-template-columns: 1fr; gap: 48px; }
  .callguide-mockup { order: -1; }
  .about-inner { gap: 48px; }
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 4px;
    border-top: 1px solid var(--border);
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-link {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 0;
    color: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .nav-links .btn { width: 100%; margin-top: 16px; justify-content: center; }

  .hero { padding: 80px 0 64px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 360px; }

  .pain-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .shorts-grid { grid-template-columns: repeat(3, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .founder-photo { margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .footer-social { justify-content: center; }

  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn { width: 100%; max-width: 340px; }
}

@media (min-width: 900px) {
  .desktop-break { display: block; }
}
