/* ===========================
   BeatCarousel — Global Styles
   =========================== */

:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --accent: #EC4899;
  --accent-light: #F9A8D4;
  --dark: #0F0820;
  --dark-2: #1A1035;
  --dark-3: #271A4A;
  --light: #FAF7FF;
  --light-2: #F3EEFF;
  --white: #FFFFFF;
  --text: #1A1035;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-dark: rgba(255,255,255,0.12);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow: 0 4px 24px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 12px 48px rgba(124, 58, 237, 0.2);

  --transition: 0.25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

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

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

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

ul {
  list-style: none;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-muted); line-height: 1.75; }

/* ===========================
   Layout
   =========================== */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.45);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

/* ===========================
   Header / Nav
   =========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(15, 8, 32, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--accent-light);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 8, 32, 0.92) 0%,
    rgba(27, 10, 55, 0.8) 50%,
    rgba(124, 58, 237, 0.3) 100%
  );
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #C084FC, #F9A8D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 560px;
}

/* Hero form */
.hero-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  max-width: 480px;
}

.hero-form h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-form p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-input:focus {
  border-color: rgba(124, 58, 237, 0.7);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}

.form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.form-note a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

/* ===========================
   Benefits
   =========================== */

.benefits {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(124, 58, 237, 0.2);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.benefit-card h4 {
  color: var(--text);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ===========================
   Format Section
   =========================== */

.format {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

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

.format-visual {
  position: relative;
}

.format-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.format-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.format-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.format-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.format-badge-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 700;
}

.format-badge-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.format-content .section-label {
  color: var(--accent-light);
}

.format-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.format-content > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

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

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

.format-item-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.format-item-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.format-item-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
}

/* ===========================
   Who It's For
   =========================== */

.audience {
  background: var(--white);
}

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

.audience-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--primary);
  background: var(--light-2);
}

.audience-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.audience-card h4 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1rem;
}

.audience-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===========================
   Process / Steps
   =========================== */

.process {
  background: var(--light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.25;
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.step h4 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  font-size: 0.875rem;
}

/* ===========================
   FAQ
   =========================== */

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: rgba(124, 58, 237, 0.35);
}

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

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.25s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--primary);
  color: white;
}

.faq-arrow svg {
  width: 14px;
  height: 14px;
  transition: fill 0.25s;
}

.faq-item.open .faq-arrow svg path {
  fill: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   Main Lead Form
   =========================== */

.lead-form-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1A0A3E 50%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  pointer-events: none;
}

.lead-form-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-inner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.lead-form-inner > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  font-size: 1.0625rem;
}

.main-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(24px);
  text-align: left;
}

.main-form .form-label {
  color: rgba(255,255,255,0.75);
}

.main-form .form-input {
  font-size: 1.0625rem;
  padding: 16px 18px;
}

.main-form .btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1.0625rem;
}

.form-consent {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.6;
}

.form-consent a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

/* ===========================
   Footer
   =========================== */

.footer {
  background: #070512;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9375rem;
  margin-top: 16px;
  max-width: 360px;
  line-height: 1.7;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
}

.footer-links h5 {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ===========================
   Cookie Banner
   =========================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(15, 8, 32, 0.97);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

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

.cookie-banner.hidden {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-light);
  text-decoration: underline;
}

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

.cookie-accept {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}

.cookie-accept:hover {
  opacity: 0.9;
}

.cookie-close {
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}

.cookie-close:hover {
  background: rgba(255,255,255,0.12);
}

/* ===========================
   Success Page
   =========================== */

.success-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-inner {
  max-width: 520px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.success-inner h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.success-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

/* ===========================
   Legal Pages
   =========================== */

.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}

.legal-header {
  background: var(--dark);
  padding: 80px 0 60px;
  text-align: center;
}

.legal-header h1 {
  color: var(--white);
  font-size: 2.25rem;
}

.legal-header p {
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

.legal-content {
  padding: 72px 0;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-size: 1.375rem;
  color: var(--text);
  margin: 40px 0 12px;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-inner p {
  font-size: 0.9375rem;
  margin-bottom: 16px;
  color: #4B5563;
  line-height: 1.75;
}

.legal-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-inner ul li {
  font-size: 0.9375rem;
  color: #4B5563;
  margin-bottom: 8px;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 48px;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 12px;
}

/* ===========================
   Responsive
   =========================== */

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .hero { padding: 100px 0 64px; }

  .hero-form { padding: 24px; }

  .steps::before { display: none; }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-accept, .cookie-close {
    flex: 1;
  }

  .main-form { padding: 28px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* ===========================
   Animations
   =========================== */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
