@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0d0d0d;
  --bg-alt: #111111;
  --bg-card: #181818;
  --bg-card-hover: #1e1e1e;
  --accent: #E87722;
  --accent-hover: #FF8C30;
  --text: #E0E0E0;
  --text-muted: #8a8a8a;
  --border: #2a2a2a;
  --red: #C0392B;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; position: relative; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 48px;
}

.section-head { margin-bottom: 48px; }

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #17100a;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(232, 119, 34, 0.55);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(232, 119, 34, 0.1);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(13, 13, 13, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.logo img { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:not(.btn-primary):hover { color: var(--accent); }

.nav-links a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:not(.btn-primary):hover::after { width: 100%; }

.nav-cta { padding: 11px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.75) 55%, var(--bg) 100%), url('images/hero-drums.jpg') center 30% / cover no-repeat;
  padding-top: 76px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(232,119,34,0.12), transparent 55%);
  pointer-events: none;
}

.hero-inner { max-width: 760px; position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,119,34,0.4);
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(32px, 5.4vw, 58px);
  margin-bottom: 22px;
}

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

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat strong {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--accent);
  display: block;
}

.hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
}

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

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,119,34,0.4);
  background: var(--bg-card-hover);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(232,119,34,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-head);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

.about-section { background: var(--bg-alt); }

.audience-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.audience-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.audience-image img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }

.audience-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.65) 100%);
}

.audience-list { display: flex; flex-direction: column; gap: 20px; }

.audience-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}

.audience-item .num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  width: 36px;
}

.audience-item h4 { font-size: 17px; margin-bottom: 6px; }
.audience-item p { color: var(--text-muted); font-size: 14.5px; }

.skills-section { background: var(--bg-alt); }

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.skill-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
}

.skill-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: rgba(232,119,34,0.35);
  flex-shrink: 0;
}

.skill-card h4 { font-size: 17px; margin-bottom: 6px; }
.skill-card p { color: var(--text-muted); font-size: 14.5px; }

.accordion { display: flex; flex-direction: column; gap: 14px; }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.accordion-header .left { display: flex; align-items: center; gap: 18px; }

.accordion-tag {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--accent);
  font-size: 14px;
  border: 1px solid rgba(232,119,34,0.4);
  padding: 5px 11px;
  border-radius: 20px;
  flex-shrink: 0;
}

.accordion-header h3 { font-size: 18px; font-weight: 700; font-family: var(--font-body); }

.accordion-meta { color: var(--text-muted); font-size: 13px; white-space: nowrap; }

.accordion-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.3s ease;
}

.accordion-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.accordion-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

.accordion-item.active .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body { max-height: 600px; }

.accordion-body-inner {
  padding: 0 28px 26px;
  color: var(--text-muted);
  font-size: 15px;
}

.accordion-body-inner ul { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.accordion-body-inner li { padding-left: 20px; position: relative; }
.accordion-body-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.format-section { background: var(--bg-alt); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
}

.timeline-step { position: relative; }

.timeline-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.timeline-step h4 { font-size: 16.5px; margin-bottom: 8px; }
.timeline-step p { color: var(--text-muted); font-size: 14px; }

.form-section {
  background: linear-gradient(160deg, #1a1410 0%, var(--bg) 55%);
  border-top: 1px solid var(--border);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232,119,34,0.18), transparent 70%);
  pointer-events: none;
}

.form-intro h2 { font-size: clamp(24px, 3.2vw, 32px); margin-bottom: 16px; }
.form-intro p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 28px; }

.form-perks { display: flex; flex-direction: column; gap: 14px; }

.form-perk { display: flex; gap: 12px; align-items: center; font-size: 14.5px; color: var(--text); }
.form-perk .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.lead-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

.form-group input, .form-group select, .form-group textarea {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.15);
}

.form-group.error input, .form-group.error select { border-color: var(--red); }
.field-error { color: var(--red); font-size: 12.5px; display: none; }
.form-group.error .field-error { display: block; }

.privacy-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.privacy-note a { color: var(--accent); text-decoration: underline; }

.faq-section { background: var(--bg); }

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 48px 0 30px;
}

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

.footer-nav, .footer-legal {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a, .footer-legal a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover, .footer-legal a:hover { color: var(--accent); }

.footer-bottom {
  font-size: 12.5px;
  color: #555;
  line-height: 1.8;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}

.footer-logo img { width: 26px; height: 26px; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #141414;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p { font-size: 13.5px; color: var(--text-muted); max-width: 640px; }
.cookie-inner p a { color: var(--accent); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-actions .btn-primary, .cookie-actions .btn-secondary { padding: 10px 20px; font-size: 13.5px; }

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: 0.08s; }
.fade-in.d2 { transition-delay: 0.16s; }
.fade-in.d3 { transition-delay: 0.24s; }
.fade-in.d4 { transition-delay: 0.32s; }
.fade-in.d5 { transition-delay: 0.4s; }

.legal-hero {
  padding: 150px 0 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.legal-hero h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.legal-hero p { color: var(--text-muted); }

.legal-content { padding: 60px 0; max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; margin: 36px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; font-size: 15.5px; }
.legal-content ul { margin: 0 0 16px 0; display: flex; flex-direction: column; gap: 8px; }
.legal-content li { color: var(--text-muted); padding-left: 22px; position: relative; font-size: 15.5px; }
.legal-content li::before { content: ''; position: absolute; left: 0; top: 10px; width: 9px; height: 2px; background: var(--accent); }
.legal-content strong { color: var(--text); }

.success-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 60px;
  text-align: center;
}

.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
  font-family: var(--font-head);
}

.success-section h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.success-section p { color: var(--text-muted); font-size: 16.5px; max-width: 460px; margin: 0 auto 36px; }

@media (max-width: 1000px) {
  .form-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .audience-wrap { grid-template-columns: 1fr; }
  .audience-image img { min-height: 280px; }
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
  .nav-cta { width: 100%; text-align: center; }
  .hamburger { display: flex; }
  .grid-3, .grid-2, .skills-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 26px; }
  .timeline { grid-template-columns: 1fr; }
  .accordion-header { padding: 18px 20px; }
  .accordion-header h3 { font-size: 16px; }
  .accordion-meta { display: none; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
