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

:root {
  --coral: #E8533A;
  --coral-dark: #c9402a;
  --coral-light: #f2705a;
  --cream: #FDF8F3;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --gray: #6B6B80;
  --gray-light: #F0EDE8;
  --white: #FFFFFF;
  --font-main: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,26,46,0.10);
  --shadow-lg: 0 8px 40px rgba(26,26,46,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(232,83,58,0.10);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,83,58,0.35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,83,58,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}

.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--coral);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,243,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,83,58,0.10);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
}

.logo__mark {
  width: 38px;
  height: 38px;
  background: var(--coral);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--coral);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta { display: flex; align-items: center; gap: 12px; }

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 16px 0 24px;
}

.mobile-nav.open { display: flex; }

.mobile-nav__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 24px;
  transition: color var(--transition);
}

.mobile-nav__link:hover { color: var(--coral); }

.mobile-nav__cta {
  margin: 16px 24px 0;
  text-align: center;
}

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

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__pulse {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,83,58,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(232,83,58,0); }
}

.hero__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--gray-light);
  margin-left: -10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
}

.hero__avatar:first-child { margin-left: 0; }

.hero__proof-text {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero__proof-text strong {
  color: var(--dark);
  display: block;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-light);
}

.hero__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero__badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,83,58,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hero__badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.hero__badge-text span {
  font-size: 0.78rem;
  color: var(--gray);
}

.hero__floating-card {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,83,58,0.35);
}

.hero__floating-card .big { font-size: 1.8rem; font-weight: 800; }
.hero__floating-card .small { font-size: 0.75rem; opacity: 0.9; }

/* ===== WHY / BENEFITS ===== */
.benefits {
  padding: 80px 0;
}

.benefits__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.benefits__header p {
  color: var(--gray);
  margin-top: 16px;
  font-size: 1.05rem;
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,83,58,0.12);
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(232,83,58,0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.benefit-card h3 { margin-bottom: 10px; }

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== FOR WHOM ===== */
.for-whom {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}

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

.for-whom__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-soft);
}

.for-whom__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.for-whom__content .section-label {
  background: rgba(232,83,58,0.20);
}

.for-whom__content h2 { margin-bottom: 24px; }

.for-whom__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.for-whom__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.55;
}

.for-whom__list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 80px 0;
}

.how__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}

.how__header p {
  margin-top: 16px;
  color: var(--gray);
  font-size: 1.05rem;
}

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

.how__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--coral) 0%, rgba(232,83,58,0.1) 100%);
}

.how__step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.how__step-num {
  width: 80px;
  height: 80px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(232,83,58,0.3);
}

.how__step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.how__step p { color: var(--gray); font-size: 0.9rem; }

/* ===== RESULTS ===== */
.results {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(232,83,58,0.06) 0%, rgba(232,83,58,0.02) 100%);
}

.results__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.results__header p { margin-top: 16px; color: var(--gray); }

.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.result-item__emoji {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.result-item h3 { margin-bottom: 6px; font-size: 1.05rem; }
.result-item p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
}

.testimonials__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.testimonials__header p { margin-top: 16px; color: var(--gray); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: rgba(232,83,58,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card__stars {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232,83,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__meta {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== TRUST BLOCK ===== */
.trust {
  padding: 80px 0;
  background: var(--cream);
}

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

.trust__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray-light);
}

.trust__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust__content h2 { margin-bottom: 20px; }

.trust__content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.trust__stat {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 12px;
}

.trust__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--coral);
}

.trust__stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.faq__header p { margin-top: 16px; color: var(--gray); }

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

.faq__item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item.open { border-color: rgba(232,83,58,0.3); }

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

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

.faq__chevron {
  width: 24px;
  height: 24px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.65rem;
}

.faq__item.open .faq__chevron {
  background: var(--coral);
  color: var(--white);
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding var(--transition);
}

.faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--coral);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section h2 { margin-bottom: 20px; }

.cta-section p {
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-section .section-label {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ===== LEAD FORM ===== */
.lead-form-section {
  padding: 80px 0;
  background: var(--cream);
}

.lead-form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lead-form-section__left h2 { margin-bottom: 16px; }

.lead-form-section__left p {
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.lead-form-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dark);
}

.lead-form-perk-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.lead-form-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.lead-form-card__sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,83,58,0.12);
}

.form-group input::placeholder { color: #B0ABAB; }

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}

.form-privacy a {
  color: var(--coral);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer__legal p { margin-bottom: 4px; }

.footer__legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__legal-links a:hover { color: var(--coral); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  z-index: 9999;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
}

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

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

.cookie-banner__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}

.cookie-banner__text p {
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.cookie-banner__btns {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all var(--transition);
}

.cookie-btn-accept {
  background: var(--coral);
  color: var(--white);
}

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

.cookie-btn-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}

.cookie-btn-decline:hover { background: rgba(255,255,255,0.14); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 80px 0;
}

.legal-page__header {
  margin-bottom: 48px;
}

.legal-page__header h1 { margin-bottom: 12px; }

.legal-page__header p {
  color: var(--gray);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
  color: var(--dark);
}

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

.legal-content p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.legal-content ul {
  color: var(--gray);
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.legal-content a { color: var(--coral); text-decoration: underline; }

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

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(232,83,58,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.success-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .how__steps::before { display: none; }
  .trust__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__cta .btn { display: none; }
  .burger { display: flex; }

  .hero { padding: 48px 0 40px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image-wrap { order: -1; }
  .hero__floating-card { top: 12px; right: 12px; }
  .hero__badge { left: 8px; bottom: -12px; min-width: auto; }

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

  .for-whom__inner { grid-template-columns: 1fr; gap: 40px; }
  .for-whom__image { aspect-ratio: 16/9; }

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

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

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

  .trust__inner { grid-template-columns: 1fr; gap: 40px; }
  .trust__stats { grid-template-columns: repeat(3, 1fr); }

  .lead-form-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .lead-form-card { padding: 28px 20px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
  }
  .cookie-banner__btns { flex-direction: row; }

  .cta-section { padding: 60px 0; }

  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
  .how__steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .trust__stats { grid-template-columns: 1fr; }
}
