/* ==========================================================================
   BLOGDISTRIBUTOR — PREMIER YOUTUBE TALENT AGENCY DESIGN SYSTEM
   Modern, Dark-Mode First, High-Converting UI Architecture
   ========================================================================== */

/* ── DESIGN TOKENS & ROOT VARIABLES ── */
:root {
  /* Surface & Background Colors */
  --bg-darkest: #07080c;
  --bg-body: #0a0c12;
  --bg-card: rgba(16, 19, 28, 0.72);
  --bg-card-hover: rgba(22, 27, 40, 0.85);
  --bg-surface: #121520;
  --bg-surface-elevated: #181d2c;
  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-glass-active: rgba(255, 255, 255, 0.07);

  /* Border & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-bright: rgba(255, 255, 255, 0.22);
  --border-glow-red: rgba(255, 26, 64, 0.45);
  --border-glow-blue: rgba(59, 130, 246, 0.45);

  /* Brand Accents */
  --yt-red: #ff1a40;
  --yt-red-bright: #ff3355;
  --yt-red-dark: #cc0029;
  --yt-red-glow: rgba(255, 26, 64, 0.35);
  --yt-red-bg: rgba(255, 26, 64, 0.1);

  --electric-blue: #3b82f6;
  --electric-blue-glow: rgba(59, 130, 246, 0.35);
  --electric-blue-bg: rgba(59, 130, 246, 0.1);

  --cyan-accent: #06b6d4;
  --emerald-green: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --amber-gold: #f59e0b;
  --purple-glow: rgba(139, 92, 246, 0.25);

  /* Text & Typography */
  --text-primary: #ffffff;
  --text-secondary: #c5cbd8;
  --text-muted: #848e9f;
  --text-subtle: #566072;
  --text-inverse: #0a0c12;

  /* Typography Scales */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radius Scales */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow-red: 0 0 30px rgba(255, 26, 64, 0.2);
  --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.2);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: var(--bg-darkest);
  color-scheme: dark;
}

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* Ambient Background Light Mesh */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 18% 15%, rgba(255, 26, 64, 0.075) 0%, transparent 45%),
    radial-gradient(circle at 82% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(139, 92, 246, 0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Selection */
::selection {
  background: var(--yt-red);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* ── LAYOUT CONTAINER ── */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 960px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 54px;
}

.section-header.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.18;
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ── BADGES & PILLS ── */
.badge-subtle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}

.badge-subtle svg {
  color: var(--yt-red);
}

.badge-glow-red {
  background: var(--yt-red-bg);
  border-color: rgba(255, 26, 64, 0.3);
  color: #ff99aa;
}

.badge-glow-blue {
  background: var(--electric-blue-bg);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

.partner-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--emerald-green);
  box-shadow: 0 0 10px var(--emerald-green);
  animation: pulseGreen 2s infinite;
}

.status-dot.red {
  background-color: var(--yt-red);
  box-shadow: 0 0 10px var(--yt-red);
  animation: pulseRed 2s infinite;
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes pulseRed {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--yt-red) 0%, #d4002e 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px var(--yt-red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-smooth);
  user-select: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 26, 64, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, var(--yt-red-bright) 0%, var(--yt-red) 100%);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-bright);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.35);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-outline-blue:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.6);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ── HEADER / NAVIGATION ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: all var(--transition-smooth);
}

header.scrolled {
  padding: 10px 24px;
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(12, 15, 23, 0.82);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  user-select: none;
}

.play-badge {
  width: 36px;
  height: 26px;
  background: linear-gradient(135deg, var(--yt-red) 0%, #b80024 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 14px var(--yt-red-glow);
  transition: transform var(--transition-bounce);
}

.brand-logo:hover .play-badge {
  transform: scale(1.08) rotate(-2deg);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffffff;
  margin-left: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-tag-badge {
  font-size: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(255, 26, 64, 0.15);
  border: 1px solid rgba(255, 26, 64, 0.35);
  color: #ff6b85;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-link.creator-link {
  color: #60a5fa;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link.creator-link:hover {
  color: #93c5fd;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-apply {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--yt-red) 0%, #c9002a 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 12px var(--yt-red-glow);
  transition: all var(--transition-smooth);
}

.btn-nav-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 26, 64, 0.5);
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 6px;
}

/* Mobile drawer navigation */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 75px;
  left: 20px;
  right: 20px;
  background: rgba(14, 18, 28, 0.96);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-drawer a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* ── HERO SECTION ── */
.hero {
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

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

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.8px;
  color: #ffffff;
  margin-bottom: 22px;
}

.highlight-red {
  color: var(--yt-red);
  background: linear-gradient(135deg, #ff4060 0%, var(--yt-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-blue {
  color: #38bdf8;
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Agency Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.stat-card {
  text-align: left;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.stat-value.red {
  color: #ff3355;
}

.stat-value.blue {
  color: #60a5fa;
}

.stat-value.green {
  color: #34d399;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

/* ── SPOTLIGHT CREATOR CARD (HERO EMBED) ── */
.spotlight-card {
  background: linear-gradient(145deg, rgba(22, 26, 38, 0.85) 0%, rgba(14, 17, 26, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.spotlight-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

.spotlight-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.spotlight-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 6px;
}

.creator-spotlight-body {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.creator-avatar-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yt-red) 0%, var(--electric-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.creator-meta-name {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 7px;
}

.verified-icon {
  width: 17px;
  height: 17px;
  color: #38bdf8;
  flex-shrink: 0;
}

.creator-meta-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.spotlight-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.spotlight-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.spotlight-metric .num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.spotlight-metric .lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.spotlight-recent-deals {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 12px;
}

.spotlight-deal-label {
  color: #93c5fd;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.manager-avatar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.manager-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  object-fit: cover;
}

.manager-name {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.manager-role {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── APPLICATION & BOOKING FORM CARDS ── */
.form-card {
  background: linear-gradient(145deg, rgba(20, 24, 35, 0.9) 0%, rgba(13, 16, 24, 0.98) 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(255, 26, 64, 0.06);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yt-red) 0%, var(--electric-blue) 100%);
}

@media (max-width: 640px) {
  .form-card {
    padding: 24px 18px;
  }
}

.form-header {
  margin-bottom: 26px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 18px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(8, 10, 15, 0.7);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 14px;
  transition: all var(--transition-fast);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: rgba(14, 18, 28, 0.9);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23848e9f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

select option {
  background: #121520;
  color: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 85px;
  line-height: 1.5;
}

/* Custom Checkbox */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 24px 0;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(8, 10, 15, 0.7);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  margin-top: 2px;
}

.custom-checkbox svg {
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.checkbox-container input:checked ~ .custom-checkbox {
  background: var(--yt-red);
  border-color: var(--yt-red);
}

.checkbox-container input:checked ~ .custom-checkbox svg {
  opacity: 1;
}

.checkbox-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-text a {
  color: #60a5fa;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--yt-red) 0%, #c9002a 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px var(--yt-red-glow);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 26, 64, 0.5);
  background: linear-gradient(135deg, var(--yt-red-bright) 0%, var(--yt-red) 100%);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Success Confirmation State */
.form-success-state {
  display: none;
  text-align: center;
  padding: 36px 20px;
}

.success-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--emerald-green);
  color: var(--emerald-green);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 0 25px var(--emerald-glow);
}

.success-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.success-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

/* ── MARQUEE TICKER ── */
.ticker-section {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(8, 10, 15, 0.6);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: tickerSlide 35s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
}

.ticker-item .dot {
  color: var(--yt-red);
}

.ticker-item .blue-dot {
  color: var(--electric-blue);
}

/* Brand Partners Logo Row */
.brand-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 0;
  opacity: 0.75;
}

.brand-partner-item {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.brand-partner-item:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── RATE CALCULATOR SECTION ── */
.calculator-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .calculator-card {
    grid-template-columns: 1fr;
  }
}

.calc-controls {
  padding: 40px;
  border-right: 1px solid var(--border-subtle);
}

@media (max-width: 640px) {
  .calc-controls {
    padding: 24px;
  }
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
}

.calc-field {
  margin-bottom: 28px;
}

.calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calc-val-badge {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* Range Slider */
input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #1f2538;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yt-red);
  box-shadow: 0 0 14px var(--yt-red-glow);
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.deal-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.deal-type-btn {
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.deal-type-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.deal-type-btn.active {
  background: rgba(255, 26, 64, 0.15);
  border-color: var(--yt-red);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(255, 26, 64, 0.2);
}

/* Calculator Results Right Pane */
.calc-results-pane {
  background: linear-gradient(180deg, rgba(18, 22, 33, 0.95) 0%, rgba(12, 15, 23, 0.95) 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media (max-width: 640px) {
  .calc-results-pane {
    padding: 28px 24px;
  }
}

.results-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #60a5fa;
  margin-bottom: 8px;
}

.est-deal-amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.est-deal-amount span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: normal;
}

.calc-comparison {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 24px 0 28px 0;
}

.comp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
}

.comp-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── 3-STEP PROCESS SECTION ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.step-number-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--yt-red);
  background: var(--yt-red-bg);
  border: 1px solid rgba(255, 26, 64, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 18px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── PERKS / WHY US SECTION ── */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }
}

.perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
}

.perk-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.perk-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.perk-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.perk-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── FAQ ACCORDION ── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-medium);
  background: rgba(22, 27, 40, 0.85);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--yt-red);
  color: #ffffff;
}

.faq-content {
  display: none;
  padding: 0 24px 22px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-content {
  display: block;
}

/* ── CREATOR PAGE: HERO PROFILE & MEDIA KIT ── */
.creator-hero {
  padding-top: 130px;
  padding-bottom: 60px;
}

.creator-header-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
  position: relative;
}

.creator-banner {
  height: 220px;
  background: 
    linear-gradient(180deg, rgba(7, 8, 12, 0.2) 0%, rgba(7, 8, 12, 0.95) 100%),
    linear-gradient(135deg, #1e1b4b 0%, #0f172a 50%, #172554 100%);
  position: relative;
}

.creator-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 26, 64, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(59, 130, 246, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.creator-profile-bar {
  padding: 0 36px 36px 36px;
  position: relative;
  margin-top: -64px;
}

@media (max-width: 640px) {
  .creator-profile-bar {
    padding: 0 20px 24px 20px;
    margin-top: -48px;
  }
}

.avatar-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.avatar-box {
  position: relative;
}

.avatar-img {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--yt-red) 0%, var(--electric-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  border: 4px solid var(--bg-surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.verified-check-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--electric-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg-surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.creator-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.creator-info-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.creator-handle {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.creator-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 22px;
}

.niche-tags-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.niche-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

/* Creator Key Metrics Grid */
.creator-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .creator-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-module {
  background: rgba(8, 10, 15, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-smooth);
}

.stat-module:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-num.red {
  color: #ff3355;
}

.stat-num.blue {
  color: #60a5fa;
}

.stat-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-detail {
  font-size: 12px;
  color: var(--text-subtle);
}

/* Representation callout */
.representation-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 26, 64, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  flex-wrap: wrap;
}

.rep-manager {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.4);
  object-fit: cover;
}

.rep-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.rep-text strong {
  color: #ffffff;
}

/* ── VIDEO SHOWCASE & CASE STUDIES ── */
.filter-tabs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tab {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.filter-tab.active {
  background: var(--yt-red);
  border-color: var(--yt-red);
  color: #ffffff;
  box-shadow: 0 2px 12px var(--yt-red-glow);
}

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

@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.video-thumb-wrap {
  position: relative;
  height: 180px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-bg-gradient-1 {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.thumb-bg-gradient-2 {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
}

.thumb-bg-gradient-3 {
  background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
}

.thumb-bg-gradient-4 {
  background: linear-gradient(135deg, #3730a3 0%, #581c87 100%);
}

.thumb-bg-gradient-5 {
  background: linear-gradient(135deg, #7c2d12 0%, #9a3412 100%);
}

.thumb-bg-gradient-6 {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.sponsor-badge-floating {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.sponsor-badge-floating span {
  color: var(--yt-red);
}

.play-overlay-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 26, 64, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-bounce);
}

.video-thumb-wrap:hover .play-overlay-btn {
  transform: scale(1.15);
  background: var(--yt-red);
}

.video-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 2px 6px;
  border-radius: 4px;
}

.video-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-deliverable-type {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.video-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}

.video-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  margin-bottom: 16px;
  text-align: center;
}

.v-val {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.v-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.btn-view-campaign-details {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-view-campaign-details:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

/* ── DEMOGRAPHICS & ANALYTICS ── */
.demographics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 800px) {
  .demographics-grid {
    grid-template-columns: 1fr;
  }
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.demo-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bar-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.bar-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
}

.bar-fill.red {
  background: linear-gradient(90deg, #ff1a40 0%, #f43f5e 100%);
}

/* ── COMMERCIAL PACKAGES & RATE CARDS ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(26, 32, 48, 0.85) 0%, rgba(16, 20, 30, 0.95) 100%);
  border-color: rgba(255, 26, 64, 0.4);
  box-shadow: 0 0 40px rgba(255, 26, 64, 0.15);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yt-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--yt-red-glow);
}

.package-tier-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.package-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.package-pricing {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.strikethrough-pkg {
  font-size: 14px;
  color: var(--text-subtle);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.current-pkg-rate {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.deliverables-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.deliverable-item svg {
  color: var(--emerald-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.btn-select-pkg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-select-pkg:hover {
  background: var(--yt-red);
  border-color: var(--yt-red);
  box-shadow: 0 4px 16px var(--yt-red-glow);
}

.package-card.featured .btn-select-pkg {
  background: linear-gradient(135deg, var(--yt-red) 0%, #d4002e 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px var(--yt-red-glow);
}

/* ── BOOKING INQUIRY SECTION ── */
.inquiry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

@media (max-width: 900px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
}

.inquiry-left-info {
  padding: 44px;
  background: rgba(8, 10, 15, 0.6);
  border-right: 1px solid var(--border-subtle);
}

@media (max-width: 640px) {
  .inquiry-left-info {
    padding: 24px;
  }
}

.inquiry-form-wrap {
  padding: 44px;
}

@media (max-width: 640px) {
  .inquiry-form-wrap {
    padding: 24px;
  }
}

/* ── MODAL COMPONENT ── */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.video-modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #121622;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.8);
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-top {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-content-inner {
  padding: 24px;
}

.modal-video-placeholder {
  background: #080a0f;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
footer {
  padding: 60px 0 40px 0;
  border-top: 1px solid var(--border-subtle);
  background: rgba(6, 7, 10, 0.95);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-subtle);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
