/* ==============================================================================
   TheModelSuite.com — Minimalist Responsive Landing Page Styles (MyFitnessPal Inspired)
   Ultra-Clean, High-Whitespace, High-Contrast Typography, 100% English Only
   ============================================================================== */

:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --color-primary: #0066ee;
  --color-primary-hover: #0052cc;
  --color-primary-light: rgba(0, 102, 238, 0.08);
  --color-primary-border: rgba(0, 102, 238, 0.2);

  --color-dark: #0f172a;
  --color-slate: #1e293b;
  --color-text: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #64748b;
  --color-bg: #ffffff;
  --color-bg-subtle: #f8fafc;
  --color-bg-surface: #f1f5f9;
  --color-border: #e2e8f0;
  --color-border-subtle: #edf2f7;

  --color-green: #10b981;
  --color-green-light: rgba(16, 185, 129, 0.1);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 12px 32px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-elevated: 0 20px 40px rgba(15, 23, 42, 0.12);

  --container-max: 1180px;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 102, 238, 0.25);
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 16px rgba(0, 102, 238, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--color-text) !important;
  border-color: var(--color-border);
  box-shadow: var(--shadow-subtle);
}
.btn-secondary:hover {
  background-color: var(--color-bg-subtle);
  border-color: var(--color-text-muted);
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--color-dark);
  color: #ffffff !important;
}
.btn-dark:hover {
  background-color: var(--color-slate);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary) !important;
  border-color: var(--color-primary-border);
}
.btn-outline:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
}

/* ==================== BADGES ==================== */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-pill-blue {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-border);
}
.badge-pill-green {
  background-color: var(--color-green-light);
  color: var(--color-green);
}

/* ==================== NAVIGATION ==================== */
.landing-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  padding: 0.85rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-brand-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-link:hover {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.45rem;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-drawer.active {
  display: flex;
}
.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at 50% 10%, #f0f7ff 0%, #ffffff 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--color-text);
  margin: 1rem 0 1.25rem;
}
.hero-title span {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.hero-avatars {
  display: flex;
  align-items: center;
}
.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}
.hero-avatar:first-child {
  margin-left: 0;
}

/* ==================== HERO EDITORIAL COMP CARD ==================== */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-title-centered {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--color-text);
  margin: 0 auto 1.35rem;
  max-width: 880px;
}
.hero-title-centered span {
  color: var(--color-primary);
}

.hero-subtitle-centered {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.hero-cta-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Luxury Agency Comp Card Preview */
.hero-compcard-card {
  width: 100%;
  max-width: 860px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.03);
  padding: 1.75rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.compcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--color-text);
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.compcard-agency-title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.compcard-talent-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1;
}
.compcard-division-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Measurements Ribbon — STRICTLY MEASUREMENTS ONLY, NO WEIGHT */
.compcard-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.compcard-stat-item {
  font-size: 0.76rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.compcard-stat-item strong {
  color: var(--color-text);
  margin-left: 0.25rem;
}

/* 4-Photo Vertical Portrait Composite Grid (True Modeling Aspect Ratio) */
.compcard-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 0.85rem;
}
.compcard-photo-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 380px;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
}
.compcard-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.compcard-photo-card:hover .compcard-photo {
  transform: scale(1.02);
}
.compcard-photo-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 6px;
  border-radius: 4px;
  text-align: center;
}

.compcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ==================== SPOTLIGHT VISUAL COMPONENT STYLES ==================== */
/* Radar Spotlight Card */
.spotlight-radar-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.radar-flex-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.radar-svg-wrap {
  flex-shrink: 0;
  text-align: center;
}
.radar-specs-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.radar-spec-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.radar-spec-line span { color: var(--color-text-secondary); font-weight: 600; }
.radar-spec-line strong { color: var(--color-text); font-weight: 700; }

/* 360 Turn Strip */
.spotlight-turn-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.turn-sequence-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.turn-sequence-step {
  text-align: center;
}
.turn-sequence-step img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  margin-bottom: 0.4rem;
}
.turn-sequence-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  padding: 2.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-subtle);
  text-align: center;
}
.trust-bar-text {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-badge-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.75;
}

/* ==================== 3-STEP VALUE FLOW ==================== */
.section {
  padding: 5.5rem 0;
}
.section-subtle {
  background-color: var(--color-bg-subtle);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

.step-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.step-number-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  border: 1.5px solid var(--color-primary-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ==================== DUAL AUDIENCE SECTION ==================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

.audience-card {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.audience-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  position: relative;
}

.audience-card-top {
  margin-bottom: 2rem;
}
.audience-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.audience-card p {
  color: var(--color-text-secondary);
  font-size: 0.98rem;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.benefit-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ==================== FEATURE SPOTLIGHTS ==================== */
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.spotlight-row:last-child {
  margin-bottom: 0;
}
.spotlight-row.reverse {
  direction: rtl;
}
.spotlight-row.reverse > * {
  direction: ltr;
}

.spotlight-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.spotlight-content p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.spotlight-visual-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-quote {
  font-size: 0.98rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--color-text);
}
.author-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==================== BOTTOM CTA ==================== */
.bottom-cta-section {
  background: linear-gradient(135deg, #0052cc 0%, #0066ee 100%);
  color: #ffffff;
  padding: 5.5rem 0;
  text-align: center;
}
.bottom-cta-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #ffffff !important;
}
.bottom-cta-desc {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 2.25rem;
  opacity: 0.9;
}
.bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.landing-footer {
  background: var(--color-dark);
  color: #94a3b8;
  padding: 4.5rem 0 2.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==================== MODALS ==================== */
.landing-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.landing-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.landing-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: var(--shadow-elevated);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

/* ==================== A11Y & COMPLIANCE STYLES ==================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-primary);
  color: #ffffff !important;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s ease;
  box-shadow: var(--shadow-elevated);
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==================== COOKIE & STORAGE NOTICE ==================== */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 860px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  z-index: 9000;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  animation: slideUpFade 0.3s ease-out;
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-banner-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #cbd5e1;
}
.cookie-banner-text strong {
  color: #ffffff;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* ==================== LEGAL POLICY MODAL ==================== */
.legal-nav-tabs {
  display: flex;
  gap: 0.4rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
}
.legal-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--color-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.legal-tab-btn:hover {
  color: var(--color-text);
  background: var(--color-bg-surface);
}
.legal-tab-btn.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.legal-content-section {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.legal-content-section h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 1.25rem 0 0.45rem 0;
}
.legal-content-section h4:first-child {
  margin-top: 0;
}
.legal-content-section p {
  margin-bottom: 0.85rem;
}
.legal-content-section ul, .legal-content-section ol {
  margin: 0.5rem 0 1rem 1.25rem;
}
.legal-content-section li {
  margin-bottom: 0.35rem;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title-centered {
    font-size: 2.65rem;
  }
  .radar-flex-layout {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .radar-specs-list {
    width: 100%;
  }
  .step-flow-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }
  .spotlight-row, .spotlight-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-title-centered {
    font-size: 2rem;
  }
  .hero-subtitle-centered {
    font-size: 1.02rem;
  }
  .hero-compcard-card {
    padding: 1.25rem 1rem;
  }
  .compcard-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .compcard-photo-card {
    height: 240px;
  }
  .compcard-stats-strip {
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
  }
  .compcard-stat-item {
    font-size: 0.7rem;
  }
  .turn-sequence-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-card {
    padding: 2.25rem 1.35rem;
  }
  .audience-card h3 {
    font-size: 1.38rem;
  }
  .audience-card p {
    font-size: 0.92rem;
  }
  .benefit-item {
    font-size: 0.88rem;
  }
  .btn {
    white-space: normal;
  }
  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 0.96rem;
  }
  .bottom-cta-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 1rem;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-desc {
    font-size: 0.92rem;
  }
  .audience-card {
    padding: 1.85rem 1.15rem;
    border-radius: var(--radius-md);
  }
  .audience-card h3 {
    font-size: 1.25rem;
  }
  .audience-card-top {
    margin-bottom: 1.35rem;
  }
  .benefit-list {
    margin-bottom: 1.75rem;
    gap: 0.75rem;
  }
}
