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

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

:root {
  --bg: #0d0f14;
  --bg-2: #131720;
  --bg-3: #1a1f2e;
  --accent: #e8a43a;
  --accent-hover: #f5b84a;
  --accent-light: rgba(232, 164, 58, 0.12);
  --text: #e8eaf0;
  --text-muted: #8a90a0;
  --text-dim: #5a6070;
  --border: rgba(232, 164, 58, 0.15);
  --border-subtle: rgba(255,255,255,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 30px rgba(0,0,0,0.4);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1100px;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--accent);
}

.nav__logo svg {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  background: var(--accent);
  color: #0d0f14 !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav__cta:hover {
  background: var(--accent-hover) !important;
  color: #0d0f14 !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(13, 15, 20, 0.97);
}

.nav__mobile a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__mobile a:last-child {
  border-bottom: none;
  color: var(--accent);
  font-weight: 600;
}

.nav__mobile.open {
  display: flex;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,15,20,0.92) 0%, rgba(13,15,20,0.7) 50%, rgba(13,15,20,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0d0f14;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #0d0f14;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

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

.hero__facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__fact-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero__fact-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOR WHOM ===== */
.for-whom {
  background: var(--bg-2);
}

.for-whom__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.for-whom__card {
  background: var(--bg-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.for-whom__card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.for-whom__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  line-height: 1;
}

.for-whom__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.for-whom__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  background: var(--bg);
}

.how__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.how__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.how__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.how__step {
  display: flex;
  gap: 20px;
}

.how__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
}

.how__step-body {}

.how__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.how__step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== REPERTOIRE ===== */
.repertoire {
  background: var(--bg-2);
}

.repertoire__intro {
  text-align: center;
  margin-bottom: 40px;
}

.repertoire__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.repertoire__item {
  background: var(--bg-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.repertoire__item:hover {
  border-color: var(--border);
  color: var(--text);
}

.repertoire__item strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  font-size: 0.92rem;
}

.repertoire__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ===== RESULTS ===== */
.results {
  background: var(--bg);
}

.results__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.results__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.results__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.results__check svg {
  width: 12px;
  height: 12px;
  color: #0d0f14;
}

.results__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.results__text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.results__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.results__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  object-position: top;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-2);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item.open {
  border-color: var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: var(--font);
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__question svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq__item.open .faq__question svg {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

/* ===== FORM ===== */
.form-section {
  background: var(--bg);
}

.form-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-3);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-box__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.form-box__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 164, 58, 0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a90a0' stroke-width='2'%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;
  background-size: 16px;
  padding-right: 40px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
}

.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  margin-top: 2px;
  cursor: pointer;
}

.form-consent label {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-consent label a {
  color: var(--text-muted);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #0d0f14;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: var(--font);
}

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

.btn-submit:active {
  transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer__brand {}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.footer__logo span {
  color: var(--accent);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer__legal {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text-muted);
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  padding: 20px 24px;
  max-width: 520px;
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideUp 0.4s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--text-muted);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #0d0f14;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
  flex: 1;
}

.cookie-btn-accept:hover {
  background: var(--accent-hover);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-dim);
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-decline:hover {
  border-color: var(--text-dim);
  color: var(--text-muted);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.legal-page .legal-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 10px;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 36px;
  transition: color 0.2s;
}

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

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.success-box {
  text-align: center;
  max-width: 480px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.success-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.success-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0d0f14;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  transition: background 0.2s;
}

.success-home:hover {
  background: var(--accent-hover);
  color: #0d0f14;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .how__layout,
  .results__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results__layout {
    direction: initial;
  }

  .results__image {
    order: -1;
  }

  .results__image img,
  .how__image img {
    height: 260px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 700px) {
  section {
    padding: 56px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero__facts {
    gap: 24px;
  }

  .form-box {
    padding: 28px 20px;
  }

  .for-whom__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 4px;
  }

  .cookie-banner {
    bottom: 12px;
  }
}
