/* ═══════════════════════════════════════════════════
   UNIVERSAL MEDIA X — Shared Design System
   Fonts: Cormorant Garamond / Montserrat / Lato
   Palette: Navy / Gold / Cream / White
═══════════════════════════════════════════════════ */

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

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

:root {
  --navy: #1a1f3a;
  --navy-deep: #0f1225;
  --gold: #b8965a;
  --gold-light: #d4af7a;
  --cream: #faf8f4;
  --cream-dark: #f2ede4;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,150,90,0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(26,31,58,0.08); }
.nav-logo img { height: 22px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 40px;
}
.marquee-item span { color: var(--gold); margin-right: 40px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION WRAPPER ── */
section { padding: 120px 60px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::before { display: none; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.white { color: var(--white); }
.section-title.center { text-align: center; }

.section-body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
}
.section-body.wide { max-width: 720px; }
.section-body.center { text-align: center; margin: 0 auto; }
.section-body.light { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 18px 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,150,90,0.35);
}
.btn-secondary {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  padding: 17px 38px;
  border: 1px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: transparent;
  padding: 18px 32px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SPLIT SECTIONS ── */
.split-section { background: var(--white); }
.split-section.alt { background: var(--cream); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.split-image:hover img { transform: scale(1.03); }
.split-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.split-content { padding: 20px 0; }
.split-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid);
}
.split-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy-deep);
  padding: 160px 60px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,18,37,0.95) 0%, rgba(26,31,58,0.8) 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero .section-eyebrow { color: var(--gold); }
.page-hero .section-eyebrow::before { background: var(--gold); }
.page-hero .section-title { color: var(--white); font-size: 64px; }
.page-hero .section-body { color: rgba(255,255,255,0.7); max-width: 600px; margin-top: 8px; }
.page-hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* ── FEATURES GRID ── */
.features-section { background: var(--cream); }
.features-header { text-align: center; margin-bottom: 80px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--white);
  padding: 48px 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,31,58,0.1); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 36px; margin-bottom: 24px; display: block; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}
.feature-desc {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--cream-dark); }
.how-header { text-align: center; margin-bottom: 80px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(184,150,90,0.3), var(--gold));
}
.step { padding: 0 40px; text-align: center; }
.step-number {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.step-number span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}
.step-desc {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--cream);
  padding: 120px 60px;
}
.contact-header { text-align: center; margin-bottom: 72px; }
.contact-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0 32px;
  transition: color 0.2s;
}
.contact-info-item:hover { color: var(--gold); }
.contact-info-icon { font-size: 16px; color: var(--gold); }
.contact-info-divider {
  width: 1px;
  height: 24px;
  background: rgba(184,150,90,0.3);
}
.contact-forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form-card {
  background: var(--white);
  padding: 48px 44px;
  border-top: 3px solid var(--navy);
  box-shadow: 0 4px 40px rgba(26,31,58,0.06);
}
.contact-form-card--alt { border-top-color: var(--gold); }
.form-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-card-label--gold { color: var(--gold); }
.form-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}
.form-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(26,31,58,0.12);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,31,58,0.06);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); }
.form-submit-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.form-submit-btn:hover { background: var(--navy-deep); transform: translateY(-1px); }
.form-submit-btn--gold { background: var(--gold); color: var(--navy-deep); }
.form-submit-btn--gold:hover { background: var(--gold-light); }

/* ── DARK SECTION ── */
.dark-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,150,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ── STAT BAND ── */
.stat-band {
  background: var(--navy);
  padding: 80px 60px;
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-band-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-band-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.faq-item {
  background: var(--cream);
  padding: 36px 40px;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--cream-dark); }
.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-answer {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── TESTIMONIAL / QUOTE ── */
.quote-section {
  background: var(--navy);
  padding: 100px 60px;
  text-align: center;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 32px;
  display: block;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 32px;
}
.quote-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 80px 60px 40px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 22px; margin-bottom: 20px; }
.footer-about {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════
   MOBILE RESPONSIVE — UMX Design System
   Breakpoints: 900px (tablet), 768px (mobile), 480px (small)
══════════════════════════════════════════════════ */

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--gold);
  padding: 80px 32px 32px;
  z-index: 9998;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(26,31,58,0.18);
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184,150,90,0.15);
  transition: color 0.2s;
  display: block;
}
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 16px;
  background: var(--navy) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 14px 28px !important;
  border-bottom: none !important;
  display: block;
}
.nav-mobile-cta:hover { background: var(--gold) !important; }

/* ══ TABLET (≤ 900px) ══ */
@media (max-width: 900px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11px; letter-spacing: 1px; }
  .nav-cta { padding: 10px 20px; font-size: 10px; }
}

/* ══ MOBILE (≤ 768px) ══ */
@media (max-width: 768px) {

  /* Navigation */
  nav { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 18px; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex; }

  /* General sections */
  section { padding: 72px 24px !important; }
  .container { padding: 0 !important; }

  /* Hero (index.html inline-styled) */
  .hero > div:nth-child(3) {
    grid-template-columns: 1fr !important;
    padding: 100px 24px 60px !important;
    gap: 40px !important;
  }
  .hero h1 { font-size: 40px !important; }
  .hero > p { font-size: 16px !important; max-width: 100% !important; }
  .hero > div:nth-child(3) > div:nth-child(2) { display: none !important; }

  /* Page Hero (inner pages) */
  .page-hero { padding: 120px 24px 72px !important; min-height: auto; }
  .page-hero .section-title { font-size: 36px !important; }
  .page-hero-actions { flex-direction: column; gap: 12px; }
  .page-hero-actions a { text-align: center; width: 100%; }

  /* Section titles */
  .section-title { font-size: 34px; }
  .section-title.center { font-size: 30px; }
  .section-body { font-size: 16px; max-width: 100%; }

  /* Feature cards grid — single column */
  .features-section { padding: 72px 24px !important; }
  .features-header { margin-bottom: 48px; }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 2px;
  }
  .feature-card { padding: 32px 28px; }

  /* Split sections */
  .split-section { padding: 72px 24px !important; }
  .split-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    direction: ltr !important;
  }
  .split-grid.reverse { direction: ltr !important; }
  .split-grid.reverse > * { direction: ltr !important; }
  .split-image img { height: 280px; }
  .split-cta { flex-direction: column; gap: 12px; }
  .split-cta a { text-align: center; width: 100%; }

  /* Stat band */
  .stat-band { padding: 48px 24px !important; }
  .stat-band-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .stat-band-item {
    padding: 24px 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-band-item:nth-child(2n) { border-right: none; }
  .stat-band-item:nth-child(3),
  .stat-band-item:nth-child(4) { border-bottom: none; }
  .stat-band-number { font-size: 40px; }

  /* How-it-works steps */
  .how-section { padding: 72px 24px !important; }
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .steps-grid::before { display: none; }
  .step { padding: 0; text-align: left; display: flex; gap: 24px; align-items: flex-start; }
  .step-number { margin: 0; flex-shrink: 0; width: 60px; height: 60px; }
  .step-number span { font-size: 22px; }

  /* FAQ */
  .faq-section { padding: 72px 24px !important; }
  .faq-grid {
    grid-template-columns: 1fr !important;
    margin-top: 40px;
  }
  .faq-item { padding: 28px 24px; }

  /* Contact forms */
  .contact-section { padding: 72px 24px !important; }
  .contact-forms-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .contact-form-card { padding: 32px 28px; }
  .contact-info-bar { flex-direction: column; gap: 16px; }
  .contact-info-divider { display: none; }

  /* Platform feature rows */
  .platform-feature-row {
    grid-template-columns: 56px 1fr !important;
    gap: 16px;
    padding: 28px 0;
  }
  .platform-feature-icon { width: 56px; height: 56px; font-size: 22px; }
  .platform-feature-title { font-size: 20px; }
  .platform-feature-desc { font-size: 15px; }

  /* Dark section (entertainment) */
  .dark-section { padding: 72px 24px !important; }
  .dark-section > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  /* Footer */
  footer { padding: 60px 24px 32px !important; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Quote section */
  .quote-section { padding: 60px 24px !important; }
  .quote-text { font-size: 22px; }

  /* Blog index grid */
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  /* Buttons */
  .btn-primary, .btn-secondary, .btn-ghost {
    padding: 14px 24px;
    font-size: 11px;
  }
}

/* ══ SMALL PHONE (≤ 480px) ══ */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px !important; }
  .page-hero .section-title { font-size: 28px !important; }
  .section-title { font-size: 28px; }
  .section-title.center { font-size: 26px; }
  .stat-band-number { font-size: 32px; }
  .platform-feature-title { font-size: 18px; }
  .quote-text { font-size: 20px; }
  .feature-card { padding: 28px 20px; }
  .faq-item { padding: 24px 20px; }
}
