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

:root {
  --primary: #5B2D8E;
  --primary-light: #7B4DB8;
  --primary-dark: #3D1D6B;
  --accent: #E84E1B;
  --accent-hover: #C93D0F;
  --bg: #FAFAF8;
  --bg-alt: #F2EBF9;
  --bg-dark: #1C1929;
  --text: #1C1929;
  --text-muted: #6B6880;
  --border: #E0D6F0;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(91, 45, 142, 0.12);
  --shadow-lg: 0 8px 40px rgba(91, 45, 142, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.nav__logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-decoration: none;
}

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

.nav__cta {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  padding: 72px 0 80px;
  overflow: hidden;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 18px;
}

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

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

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 78, 27, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 78, 27, 0.4);
}

.hero__note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.hero__image-wrap {
  position: relative;
}

.hero__image-wrap img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.hero__image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero__image-badge span {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
}

/* SECTION COMMON */
.section {
  padding: 80px 0;
}

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

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section--dark .section__label {
  color: #C49DFF;
}

.section__title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.section--dark .section__subtitle {
  color: #B0A8C8;
}

/* PROBLEM */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.problem__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

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

.problem__card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.problem__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.problem__transition {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  color: var(--white);
}

.problem__transition p {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.problem__transition strong {
  color: #FFD166;
}

/* FORMAT */
.format__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.format__num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.format__item-text h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.format__item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.format__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* BENEFITS */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
}

.benefit__icon {
  font-size: 1.8rem;
  min-width: 40px;
}

.benefit__card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
}

.benefit__card p {
  font-size: 0.88rem;
  color: #B0A8C8;
  line-height: 1.55;
}

/* AUDIENCE */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.audience__emoji {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.audience__card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.audience__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* FORM SECTION */
.form-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
}

.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.form-section__info {
  color: var(--white);
}

.form-section__info .section__label {
  color: #C49DFF;
}

.form-section__info .section__title {
  color: var(--white);
}

.form-section__info .section__subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.form-section__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.form-section__perk::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.form-box__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 16px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.form__input,
.form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 45, 142, 0.12);
}

.form__select {
  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='%236B6880' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form__submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(232, 78, 27, 0.35);
}

.form__submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.form__legal {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form__legal a {
  color: var(--primary);
}

/* FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

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

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

.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.25s, background 0.2s;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer__brand .nav__logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer__links li a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer__company {
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 660px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 999;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--primary);
}

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

.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

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

.btn-cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 9px 16px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

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

/* LEGAL PAGES */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.legal-page .updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(91, 45, 142, 0.3);
}

.success-page h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.success-page p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.success-page .btn-primary {
  margin-top: 12px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__image-wrap {
    order: -1;
  }

  .hero__image-badge {
    bottom: -12px;
    left: -8px;
  }

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

  .format__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .format__image {
    order: -1;
  }

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

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

  .form-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .section__title {
    font-size: 1.75rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-reject {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 60px;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .section {
    padding: 56px 0;
  }

  .nav__cta {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

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