/* ============================================================
   JOE LAURIER PRODUCTION — style.css
   Design: Sombre / Bleu électrique / Hip-Hop professionnel
   Fonts: Bebas Neue (titres) + Rajdhani (corps)
   ============================================================ */

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

:root {
  --bg:         #080808;
  --bg-card:    #111111;
  --bg-nav:     rgba(8, 8, 8, 0.96);
  --accent:     #1E90FF;
  --accent-dark:#0066CC;
  --accent-dim: rgba(30, 144, 255, 0.12);
  --text:       #FFFFFF;
  --text-muted: #888888;
  --border:     #1a1a1a;
  --red:        #FF3B3B;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.04em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s;
}

nav.scrolled { border-bottom-color: var(--border); }

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

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

.btn-lang {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-lang:hover { border-color: var(--accent); color: var(--accent); }
.btn-lang.active { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.btn-beatstars {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  display: inline-block;
}

.btn-beatstars:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile dropdown menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.75rem;
  z-index: 998;
  flex-direction: column;
  gap: 0;
}

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

.nav-mobile a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--accent); }

.nav-mobile .mobile-actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  align-items: center;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 2rem 5rem;
}

/* Hero background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,144,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,144,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Diagonal light beam (studio spotlight effect) */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 900px;
  background: conic-gradient(
    from 270deg at 50% 0%,
    transparent 30%,
    rgba(30,144,255,0.06) 40%,
    rgba(30,144,255,0.10) 50%,
    rgba(30,144,255,0.06) 60%,
    transparent 70%
  );
  z-index: 1;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Equalizer bars at the bottom of hero */
.hero-eq {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 0 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-eq-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(30,144,255,0.35), rgba(30,144,255,0.05));
  border-radius: 2px 2px 0 0;
  animation: eqFloat var(--spd, 1.8s) ease-in-out infinite alternate;
  animation-delay: var(--del, 0s);
}

@keyframes eqFloat {
  0%   { transform: scaleY(0.15); }
  100% { transform: scaleY(1); }
}

/* Radial glows */
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30,144,255,0.11) 0%, transparent 60%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,144,255,0.08) 0%, transparent 65%);
  top: 20%; left: 20%;
  z-index: 0;
  pointer-events: none;
}

.hero-glow-3 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(80,180,255,0.06) 0%, transparent 65%);
  top: 30%; right: 15%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(30, 144, 255, 0.35);
  color: var(--accent);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  background: var(--accent-dim);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.88;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 0 80px rgba(30, 144, 255, 0.25);
}

.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  display: block;
  margin-top: 0.2rem;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 6rem 2rem; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ============================================================
   SOCIAL STRIP
   ============================================================ */
.social-strip {
  background: rgba(30, 144, 255, 0.05);
  border-top: 1px solid rgba(30, 144, 255, 0.12);
  border-bottom: 1px solid rgba(30, 144, 255, 0.12);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-strip-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.social-strip-sep {
  color: var(--border);
  font-size: 1rem;
}

.social-strip-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.social-strip-link:hover { color: var(--accent); }

.social-strip-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ============================================================
   FREE BADGE (Mix & Master)
   ============================================================ */
.free-badge {
  display: inline-block;
  background: rgba(30, 144, 255, 0.08);
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: 6px;
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.free-badge strong { color: #fff; }

/* ============================================================
   BEATS SECTION
   ============================================================ */
#beats { background: var(--bg); }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.45rem 1.4rem;
  border-radius: 30px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover { border-color: rgba(30, 144, 255, 0.5); color: var(--accent); }

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Beats grid */
.beats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* --- Beat Card --- */
.beat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.beat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 144, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.beat-card.playing {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(30, 144, 255, 0.2);
}

/* Cover image area */
.beat-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0c0c0c;
  cursor: pointer;
}

.beat-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.beat-card:hover .beat-cover img {
  opacity: 1;
}

.beat-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.65) 100%);
}

/* Waveform bars */
.waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  padding: 0 10px 10px;
  z-index: 1;
}

.waveform-bar {
  flex: 1;
  background: rgba(30, 144, 255, 0.35);
  border-radius: 2px 2px 0 0;
  min-height: 3px;
  transform-origin: bottom;
  transition: background 0.3s;
}

.beat-card.playing .waveform-bar {
  background: var(--accent);
  animation: waveAnim var(--dur, 0.55s) ease-in-out infinite alternate;
}

@keyframes waveAnim {
  0%   { transform: scaleY(0.25); }
  100% { transform: scaleY(1); }
}

/* Play/pause overlay button */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s;
}

.beat-cover:hover .play-overlay,
.beat-card.playing .play-overlay { opacity: 1; }

.play-btn {
  width: 58px;
  height: 58px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 25px rgba(30, 144, 255, 0.55);
}

.play-btn:hover { transform: scale(1.1); background: var(--accent-dark); }

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Progress bar below cover */
.beat-progress {
  height: 2px;
  background: rgba(255,255,255,0.06);
}

.beat-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.25s linear;
}

/* Beat text info */
.beat-info { padding: 1.1rem 1.25rem 1.25rem; }

.beat-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.beat-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.beat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.06);
}

.beat-tag.genre {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(30, 144, 255, 0.2);
}

.beat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.beat-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}

.beat-price small {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.3;
  text-transform: uppercase;
}

.btn-buy {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-buy:hover {
  background: var(--accent);
  color: #fff;
}


/* ============================================================
   MIX & MASTER SECTION
   ============================================================ */
#mix-master { background: var(--bg); }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 31px);
  right: calc(12.5% + 31px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  opacity: 0.25;
  z-index: 0;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(30, 144, 255, 0.35); }

.step-icon {
  width: 62px;
  height: 62px;
  border: 2px solid rgba(30, 144, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.step-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Requirements grid */
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.req-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.req-box-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.req-box-title::before {
  content: '';
  width: 3px;
  height: 1.1em;
  background: var(--accent);
  border-radius: 2px;
  display: inline-block;
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.req-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.req-list li::before {
  content: '▸';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
}

/* Example submission table */
.example-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.example-table th {
  text-align: left;
  padding: 0.6rem 0.9rem;
  background: rgba(30, 144, 255, 0.08);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.example-table td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.example-table td:first-child {
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
}

.example-table tr:last-child td { border-bottom: none; }

/* Google Drive guide */
.drive-guide {
  background: rgba(30, 144, 255, 0.04);
  border: 1px solid rgba(30, 144, 255, 0.18);
  border-radius: 10px;
  padding: 2rem 2.25rem;
  margin-bottom: 3rem;
}

.drive-guide-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.drive-steps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
  counter-reset: drive-c;
}

.drive-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  counter-increment: drive-c;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.drive-steps li::before {
  content: counter(drive-c);
  min-width: 26px;
  height: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.drive-steps strong { color: var(--text); }

/* ============================================================
   SUBMISSION FORM
   ============================================================ */
.form-container {
  max-width: 740px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.75rem;
}

.form-warning {
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.35);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-label .req { color: var(--accent); }

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: rgba(30, 144, 255, 0.6);
  background: rgba(30, 144, 255, 0.04);
}

.form-control::placeholder { color: #383838; }

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%23666' d='M5 7L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.form-control option { background: #151515; color: #fff; }
select.form-control optgroup { color: var(--accent); font-weight: 700; }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 0.25rem;
}

.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

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

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show { display: block; }

.form-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.form-success h3 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.form-success p { color: var(--text-muted); font-size: 1.05rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: linear-gradient(180deg, var(--bg) 0%, #080a12 50%, var(--bg) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4.5rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-photo-placeholder svg { opacity: 0.3; }

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section-tag { text-align: left; }

.about-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.92;
  margin-bottom: 2rem;
  color: #fff;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: 4px;
  background: var(--accent-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 1.75rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-logo img {
  height: 52px;
  margin-bottom: 1.1rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 290px;
  line-height: 1.7;
}

.footer-col-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.social-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: fill 0.2s;
}

.social-link:hover svg { fill: var(--accent); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright { color: #444; font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .beats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions .btn-beatstars { display: none; }

  section { padding: 4rem 1.25rem; }

  .hero-stats { gap: 2rem; }
  .stat-divider { display: none; }

  .beats-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .requirements-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > :first-child { grid-column: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .steps { grid-template-columns: 1fr; }
  .form-container { padding: 1.5rem 1.25rem; }
  .hero-stats { gap: 1.25rem; }
}
