/*
Theme Name: ROG Optima
Theme URI: https://rogoptima.com
Author: Realty ONE Group Optima
Description: Custom recruiting website for Realty ONE Group Optima – Houston/Katy TX 100% commission brokerage.
Version: 1.0.0
Text Domain: rogoptima
*/

/* ============================================================
   Realty ONE Group Optima — Shared Stylesheet
   ============================================================ */

/* ── MUSEO SANS — ROG Official Brand Font ── */
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans-100.otf') format('opentype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans-100Italic.otf') format('opentype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans-300.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans-300Italic.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans_500.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans_500_Italic.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans_700.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans-700Italic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans_900.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo Sans'; src: url('fonts/MuseoSans-900Italic.otf') format('opentype'); font-weight: 900; font-style: italic; font-display: swap; }

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --gold:    #C5A95E;
  --gold-lt: #E8D49A;
  --gold-dk: #8A7033;
  --ink:     #000000;
  --dark:    #0A0A0A;
  --panel:   #141414;
  --card:    #1E1E1E;
  --smoke:   #2C2C2C;
  --fog:     #6A6A6A;
  --rule:    rgba(255,255,255,.08);
  --white:   #FFFFFF;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Museo Sans', sans-serif;
  font-weight: 300;
  font-size: 16px; line-height: 1.65;
  color: rgba(255,255,255,.72);
  background: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINERS ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-sm{ max-width: 880px;  margin: 0 auto; padding: 0 48px; }

/* ── TYPE ── */
.eyebrow {
  font-family: 'Museo Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--gold); flex-shrink: 0;
}

.section-h2 {
  font-family: 'Bebas Neue', 'Museo Sans', sans-serif;
  font-weight: 400; font-style: normal;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: .95; letter-spacing: .04em;
  color: var(--white);
}
.section-h2 em { color: var(--gold); font-style: normal; }

.section-h3 {
  font-family: 'Museo Sans', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: var(--white); line-height: 1.2;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Museo Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 2px;
  border: 2px solid transparent;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark  { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }
.btn-arrow::after { content: '→'; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(5px); }

/* ── NAVIGATION ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,8,14,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s;
}
#site-nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.5); }
.nav-logo img { height: 64px; width: auto; max-width: none; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: 'Museo Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold); color: var(--ink);
  font-family: 'Museo Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 24px; border-radius: 2px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold-lt); }
.nav-phone {
  font-family: 'Museo Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.4);
}

/* ── FOOTER ── */
.site-footer {
  background: #05050A;
  border-top: 1px solid var(--rule);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('TEXTURES/fabric.avif') center / cover;
  opacity: .18;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  gap: 64px; align-items: start;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.footer-logo { display: block; text-align: center; }
.footer-logo img { height: 72px; opacity: .7; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline {
  font-size: .82rem; color: rgba(255,255,255,.22);
  line-height: 1.7; text-align: center;
  font-family: 'Museo Sans', sans-serif; font-weight: 600;
}
.footer-nav-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px;
}
.footer-nav-col h4 {
  font-family: 'Museo Sans', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.22); margin-bottom: 18px;
}
.footer-nav-col a {
  display: block; padding: 5px 0;
  font-family: 'Museo Sans', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  transition: color .2s;
}
.footer-nav-col a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-contact h4 {
  font-family: 'Museo Sans', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.22); margin-bottom: 18px;
}
.footer-contact p, .footer-contact a {
  font-size: .82rem; line-height: 1.9; color: rgba(255,255,255,.28);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.15);
  position: relative; z-index: 1;
}
.footer-bottom a { color: rgba(255,255,255,.15); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .45s; }

/* ── GOLD RULE ── */
.gold-rule { width: 40px; height: 3px; background: var(--gold); }
.gold-rule.wide { width: 80px; }

/* ── STATS BAND ── */
.stats-band { background: var(--panel); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
  padding: 56px 40px; text-align: center;
  border-right: 1px solid var(--rule);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', 'Museo Sans', sans-serif;
  font-weight: 400; font-style: normal;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  color: var(--gold); line-height: 1; margin-bottom: 10px;
  letter-spacing: .03em;
}
.stat-label {
  font-family: 'Museo Sans', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding-top: 76px;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.28) saturate(.8);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; padding: 80px 0;
}
.page-hero-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Bebas Neue', 'Museo Sans', sans-serif;
  font-weight: 400; font-style: normal;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .92; letter-spacing: .04em;
  color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,.55); max-width: 600px;
}

/* ── CTA BAND ── */
.cta-band {
  background: url('TEXTURES/goldfoil.jpg') center / cover;
  padding: 56px 0;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-band h3 {
  font-family: 'Bebas Neue', 'Museo Sans', sans-serif;
  font-weight: 400; font-style: normal;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink); line-height: 1.0; letter-spacing: .04em;
}
.cta-band p { font-size: .9rem; color: rgba(0,0,0,.55); margin-top: 6px; }
.btn-ink { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-ink:hover { background: var(--dark); border-color: var(--dark); }

/* ── MARQUEE ── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mq-row { display: flex; overflow: hidden; padding: 20px 0; }
.mq-row + .mq-row { border-top: 1px solid var(--rule); padding: 18px 0; }
.mq-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: mqFwd 32s linear infinite;
}
.mq-row:nth-child(2) .mq-track { animation-name: mqRev; }
@keyframes mqFwd { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mqRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.mq-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Museo Sans', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--fog);
}
.mq-item .dot { color: var(--gold); font-size: .45rem; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card); max-width: 460px; width: 100%;
  border: 1px solid var(--rule); border-radius: 3px; overflow: hidden;
  transform: translateY(20px); transition: transform .3s var(--ease);
}
.modal-overlay.open .modal { transform: none; }
.modal-head {
  background: var(--panel);
  border-bottom: 1px solid var(--rule);
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-head-title { font-family: 'Museo Sans', sans-serif; font-weight: 700; font-size: .95rem; color: var(--white); }
.modal-head-sub   { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: 4px; }
.modal-close { background: none; border: none; color: rgba(255,255,255,.3); font-size: 1.4rem; cursor: pointer; padding: 0; transition: color .2s; }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 24px 28px 28px; }
.modal-input {
  width: 100%; padding: 13px 16px; margin-bottom: 10px;
  background: var(--smoke); border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px; color: var(--white);
  font-family: 'Museo Sans', sans-serif; font-size: .9rem; outline: none;
  transition: border-color .2s;
}
.modal-input:focus { border-color: var(--gold); }
.modal-input::placeholder { color: var(--fog); }
.modal-submit {
  width: 100%; padding: 14px;
  background: var(--gold); color: var(--ink);
  font-family: 'Museo Sans', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  margin-top: 6px; transition: background .2s;
}
.modal-submit:hover { background: var(--gold-lt); }
.modal-success { display: none; text-align: center; padding: 20px 0 8px; }
.modal-success-icon { font-size: 2rem; margin-bottom: 10px; }
.modal-success-msg { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── LIGHT SECTIONS ── */
.section-light { background: #F5F3EE !important; }
.section-white { background: #FFFFFF !important; }
.section-light .section-h2, .section-white .section-h2 { color: var(--ink) !important; }
.section-light .section-h3, .section-white .section-h3 { color: var(--ink) !important; }
.section-light .eyebrow, .section-white .eyebrow { color: var(--gold-dk) !important; }
.section-light .eyebrow::before, .section-white .eyebrow::before { background: var(--gold-dk) !important; }
.section-light p, .section-white p { color: #3A3A50; }
.section-light .pillar, .section-white .pillar { background: #FFFFFF !important; border-color: #E2DED6 !important; }
.section-light .pillar:hover, .section-white .pillar:hover { background: #F5F3EE !important; }
.section-light .pillar h3, .section-white .pillar h3 { color: var(--ink) !important; }
.section-light .pillar p, .section-white .pillar p { color: #5A5A70 !important; }
.section-light .diff-card, .section-white .diff-card { background: #FFFFFF !important; }
.section-light .diff-card h3, .section-white .diff-card h3 { color: var(--ink) !important; }
.section-light .diff-card p, .section-white .diff-card p { color: #5A5A70 !important; }
.section-light .tool-card, .section-white .tool-card { background: #FFFFFF !important; }
.section-light .tool-card:hover, .section-white .tool-card:hover { background: #F0EDE7 !important; }
.section-light .tool-name, .section-white .tool-name { color: var(--ink) !important; }
.section-light .tool-desc, .section-white .tool-desc { color: #5A5A70 !important; }
.section-light .support-card, .section-white .support-card { background: #FFFFFF !important; }
.section-light .support-card h4, .section-white .support-card h4 { color: var(--ink) !important; }
.section-light .support-card p, .section-white .support-card p { color: #5A5A70 !important; }
.section-light .value-card, .section-white .value-card { background: #FFFFFF !important; }
.section-light .value-card:hover, .section-white .value-card:hover { background: #F5F3EE !important; }
.section-light .value-title, .section-white .value-title { color: var(--ink) !important; }
.section-light .value-desc, .section-white .value-desc { color: #5A5A70 !important; }
.section-light .pillars-grid, .section-white .pillars-grid,
.section-light .difference-grid, .section-white .difference-grid,
.section-light .tools-grid, .section-white .tools-grid,
.section-light .support-grid, .section-white .support-grid,
.section-light .values-grid, .section-white .values-grid { background: #E2DED6 !important; border-color: #E2DED6 !important; }
.section-light .faq-item, .section-white .faq-item { background: #FFFFFF !important; }
.section-light .faq-q, .section-white .faq-q { color: var(--ink) !important; }
.section-light .faq-a, .section-white .faq-a { color: #5A5A70 !important; }
.section-light .faq-grid, .section-white .faq-grid { background: #E2DED6 !important; border-color: #E2DED6 !important; }
.section-light .stat-cell, .section-white .stat-cell { border-color: #E2DED6 !important; }
.section-light .stat-label, .section-white .stat-label { color: #7A7A90 !important; }
.section-light .pillar-link, .section-white .pillar-link { color: var(--gold-dk) !important; border-color: rgba(138,112,51,.3) !important; }
.section-light .pillar-num, .section-white .pillar-num { color: rgba(138,112,51,.12) !important; }
.section-light .how-step, .section-white .how-step { background: #FFFFFF !important; border-color: #E2DED6 !important; }
.section-light .how-step-content h4, .section-white .how-step-content h4 { color: var(--ink) !important; }
.section-light .how-step-content p, .section-white .how-step-content p { color: #5A5A70 !important; }

/* ── CALC + SCHOOL MODALS ── */
.panel-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  padding: 1.5rem;
}
.panel-overlay.open { opacity: 1; pointer-events: all; }
.panel-card {
  background: var(--panel);
  border: 1px solid rgba(197,169,94,.2);
  border-radius: 12px;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 580px; width: 100%;
  position: relative;
  max-height: 90vh; overflow-y: auto;
}
.panel-card-wide { max-width: 640px; }
.panel-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.panel-close:hover { color: #fff; }
.panel-eyebrow {
  font-family: 'Museo Sans', sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.panel-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: .04em; color: #fff; margin-bottom: .4rem; line-height: 1.1;
}
.panel-sub {
  font-size: .875rem; color: rgba(255,255,255,.45);
  line-height: 1.6; margin-bottom: 1.8rem;
}
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.calc-field label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .45rem;
  font-family: 'Museo Sans', sans-serif;
}
.calc-field input {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 6px;
  padding: .7rem 1rem; color: #fff; font-size: 1rem;
  font-family: 'Museo Sans', sans-serif;
  transition: border-color .2s; box-sizing: border-box;
}
.calc-field input:focus { outline: none; border-color: rgba(197,169,94,.5); }
.calc-divider { height: 1px; background: rgba(255,255,255,.08); margin: 0 0 1.4rem; }
.calc-commission-total { text-align: center; margin-bottom: 1.5rem; }
.calc-commission-total .cct-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  font-family: 'Museo Sans', sans-serif; margin-bottom: .25rem;
}
.calc-commission-total .cct-amount {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem;
  letter-spacing: .04em; color: #fff; line-height: 1;
}
.calc-results { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1.1rem; border-radius: 7px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
}
.calc-row.calc-row-rog { background: rgba(197,169,94,.1); border-color: rgba(197,169,94,.3); }
.calc-row-label { font-size: .82rem; color: rgba(255,255,255,.6); font-family: 'Museo Sans', sans-serif; font-weight: 600; }
.calc-row.calc-row-rog .calc-row-label { color: var(--gold); }
.calc-row-amt { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .04em; color: rgba(255,255,255,.55); }
.calc-row.calc-row-rog .calc-row-amt { color: var(--gold); font-size: 1.5rem; }
.calc-advantage {
  text-align: center; padding: .75rem 1rem;
  background: rgba(197,169,94,.07); border-radius: 7px;
  border: 1px solid rgba(197,169,94,.15);
  font-family: 'Museo Sans', sans-serif; font-size: .82rem;
  color: rgba(255,255,255,.5); line-height: 1.5;
}
.calc-advantage strong { color: var(--gold); }
.calc-note { font-size: .72rem; color: rgba(255,255,255,.25); text-align: center; margin-top: 1rem; line-height: 1.5; }
.school-steps { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.school-step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.1rem; border-radius: 8px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
}
.school-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(197,169,94,.15); border: 1px solid rgba(197,169,94,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  letter-spacing: .04em; color: var(--gold); flex-shrink: 0;
}
.school-step-text { font-family: 'Museo Sans', sans-serif; font-size: .875rem; color: rgba(255,255,255,.75); line-height: 1.5; padding-top: .3rem; }
.school-step-text strong { color: #fff; display: block; margin-bottom: .15rem; }
.school-cta-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.school-note { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.5; }

/* ── TESTIMONIAL CAROUSEL ── */
.testimonial-section { background: var(--dark); padding: 5.5rem 0 5rem; overflow: hidden; position: relative; }
.testimonial-section .section-header { text-align: center; margin-bottom: 3.5rem; }
.testimonial-section .section-header .section-h2 { margin-bottom: 0; }
.testimonial-carousel { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.testimonial-track { display: grid; }
.testimonial-slide { grid-area: 1 / 1; opacity: 0; transition: opacity .7s ease; pointer-events: none; text-align: center; padding: 0 1rem; }
.testimonial-slide.active { opacity: 1; pointer-events: auto; }
.testimonial-quote-mark { font-family: 'Bebas Neue', sans-serif; font-size: 6rem; line-height: .5; color: var(--gold); opacity: .35; margin-bottom: 1.5rem; display: block; user-select: none; }
.testimonial-text { font-size: 1.08rem; line-height: 1.85; color: rgba(255,255,255,.82); font-style: italic; font-family: 'Museo Sans', sans-serif; font-weight: 400; margin: 0 auto 2.2rem; max-width: 680px; }
.testimonial-agent { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid rgba(197,169,94,.45); flex-shrink: 0; }
.testimonial-agent-info { text-align: left; }
.testimonial-agent-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: .08em; color: var(--gold); line-height: 1.1; }
.testimonial-agent-role { font-size: .72rem; color: rgba(255,255,255,.38); letter-spacing: .1em; text-transform: uppercase; font-family: 'Museo Sans', sans-serif; font-weight: 600; margin-top: .2rem; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.8rem; }
.testimonial-arrow { background: none; border: 1px solid rgba(197,169,94,.25); color: rgba(197,169,94,.5); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: border-color .3s, color .3s; flex-shrink: 0; }
.testimonial-arrow:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-dots { display: flex; gap: .55rem; align-items: center; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.18); border: none; cursor: pointer; transition: background .35s, transform .35s; padding: 0; }
.t-dot.active { background: var(--gold); transform: scale(1.4); }
.t-dot:hover:not(.active) { background: rgba(197,169,94,.45); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container, .container-sm { padding: 0 32px; }
  #site-nav { padding: 0 32px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--rule); }
  .stat-cell:nth-child(4) { border-right: none; border-top: 1px solid var(--rule); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; grid-column: span 2; }
}
@media (max-width: 768px) {
  .container, .container-sm { padding: 0 24px; }
  #site-nav { padding: 0 24px; }
  .nav-links, .nav-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
}
