/* ===========================
   BEATRA — STYLES.CSS
   =========================== */

:root {
  --pink-50: #fff0f5;
  --pink-100: #fde8ef;
  --pink-200: #fac8da;
  --pink-300: #f7a8c3;
  --pink-400: #f37ea9;
  --pink-500: #ec5e90;
  --pink-600: #d44076;
  --pink-700: #b02c5e;
  --berry: #7c2d5b;
  --text-dark: #1a1020;
  --text-mid: #4a3050;
  --text-muted: #8a6e82;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-tinted: #fff8fb;
  --border: #f0d8e8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 24px rgba(124, 45, 91, 0.08);
  --shadow-btn: 0 4px 14px rgba(236, 94, 144, 0.35);
  --font-body: 'Nunito', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --trans: 0.22s ease;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION */
.section { padding: 88px 0; }
.section-tinted { background: var(--bg-tinted); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  padding: 13px 28px;
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-700) 100%);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(236, 94, 144, 0.45); filter: brightness(1.06); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--pink-600);
  border: 2px solid var(--pink-300);
}
.btn-ghost:hover { background: var(--pink-50); border-color: var(--pink-500); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-full { width: 100%; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(124,45,91,0.09); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--berry);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo-white { color: var(--white); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-mid);
  transition: color var(--trans);
}
.main-nav a:hover { color: var(--pink-600); }
.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-700) 100%);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 3px 10px rgba(236,94,144,0.28);
  transition: all var(--trans);
}
.main-nav .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(236,94,144,0.38); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--berry);
  border-radius: 2px;
  transition: all var(--trans);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, #fde8ef 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, #fff0f5 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-tag {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-hints span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-visual { display: flex; justify-content: center; }
.hero-image-wrap { position: relative; display: inline-block; }
.hero-img-placeholder {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(124,45,91,0.14);
}
.hero-img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(124,45,91,0.12);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  animation: float 4s ease-in-out infinite;
}
.badge-icon { font-size: 22px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===========================
   HOW IT WORKS
   =========================== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 280px;
  background: var(--bg-tinted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.step:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.step-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--pink-200);
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.step-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step-body p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.step-arrow {
  font-size: 28px;
  color: var(--pink-300);
  padding-top: 44px;
  flex-shrink: 0;
  user-select: none;
}

/* ===========================
   BENEFITS
   =========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.benefit-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.benefit-icon { font-size: 36px; margin-bottom: 14px; }
.benefit-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.benefit-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   PROGRAM
   =========================== */
.program-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.program-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.program-item:last-child { border-bottom: none; }
.program-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  flex-shrink: 0;
  margin-top: 6px;
}
.program-content h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.program-content p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   INSTRUCTOR
   =========================== */
.instructor-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.instructor-img-wrap { display: flex; justify-content: center; }
.instructor-img-placeholder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(124,45,91,0.12);
}
.instructor-img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.instructor-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.instructor-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.instructor-text .btn { margin-top: 8px; }

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--pink-600); }
.faq-icon {
  font-size: 22px;
  color: var(--pink-400);
  font-weight: 400;
  transition: transform var(--trans);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--pink-600); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   LEAD FORM
   =========================== */
.lead-form-section {
  background: linear-gradient(135deg, #fff0f5 0%, #fde8ef 50%, #fac8da 100%);
  padding: 80px 0;
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  background: var(--white);
  border-radius: 24px;
  padding: 56px 52px;
  box-shadow: 0 8px 48px rgba(124,45,91,0.1);
}
.form-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.form-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.form-assurance { display: flex; flex-direction: column; gap: 10px; }
.form-assurance li { font-size: 15px; color: var(--pink-600); font-weight: 700; }

/* FORM FIELDS */
.lead-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group select::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; 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='%238a6e82' 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; padding-right: 40px; cursor: pointer; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(236,94,144,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #e05050; }
.field-error { font-size: 13px; color: #c94040; font-weight: 600; min-height: 18px; }

/* CHECKBOX */
.form-checkbox { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--pink-500);
  border-color: var(--pink-500);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-1px);
}
.checkbox-label a { color: var(--pink-600); text-decoration: underline; }
.checkbox-label a:hover { color: var(--pink-700); }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--berry);
  color: rgba(255,255,255,0.75);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { font-size: 15px; line-height: 1.6; margin-bottom: 6px; }
.footer-company { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 14px; line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 680px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 36px rgba(124,45,91,0.15);
  z-index: 999;
  animation: slideUp 0.4s ease;
}
.cookie-banner.visible { display: flex; }
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner p { font-size: 14px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.cookie-banner a { color: var(--pink-600); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.legal-page .legal-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page p, .legal-page li {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-page ul { padding-left: 20px; list-style: disc; }
.legal-page a { color: var(--pink-600); text-decoration: underline; }

/* ===========================
   SUCCESS PAGE
   =========================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #fff0f5 0%, #fde8ef 60%, #fac8da 100%);
}
.success-card {
  background: var(--white);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 12px 56px rgba(124,45,91,0.12);
}
.success-icon { font-size: 64px; margin-bottom: 24px; }
.success-card h1 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.success-card p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.success-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: 38px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .instructor-inner { grid-template-columns: 1fr; text-align: center; }
  .instructor-img-wrap { order: -1; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .step { max-width: 100%; width: 100%; }
  .form-wrap { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 72px; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; box-shadow: 0 8px 24px rgba(124,45,91,0.1); }
  .main-nav.open { display: flex; }
  .main-nav .nav-cta { display: inline-flex; align-self: flex-start; }
  .burger { display: flex; }
  .site-header { position: relative; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-actions { justify-content: center; }
  .form-wrap { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-img-placeholder svg { width: 260px; height: auto; }
  .instructor-img-placeholder svg { width: 220px; height: auto; }
  .success-card { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .hero-hints { flex-direction: column; gap: 8px; }
  .form-assurance { gap: 8px; }
}
