/* ===== AERIXA — STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

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

:root {
  --coral: #E8654A;
  --coral-dark: #C94F37;
  --coral-light: #F5886E;
  --peach: #FDF0EB;
  --peach-mid: #F9DDD3;
  --cream: #FDFAF8;
  --dark: #1C1A18;
  --dark-mid: #3A3632;
  --mid: #6B6460;
  --light-border: #E8E0DB;
  --white: #FFFFFF;

  --font-body: 'Manrope', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(28, 26, 24, 0.07);
  --shadow-md: 0 4px 20px rgba(28, 26, 24, 0.10);
  --shadow-lg: 0 8px 40px rgba(28, 26, 24, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4 {
  font-family: var(--font-body);
  line-height: 1.25;
  font-weight: 700;
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
}

/* ===== LAYOUT ===== */

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

section {
  padding: 80px 0;
}

/* ===== HEADER / NAV ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--dark);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-mid);
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
}

.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 0.3s;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: var(--font-body);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.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);
}

.btn-white:hover {
  background: var(--peach);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== HERO ===== */

.hero {
  background: var(--peach);
  padding: 70px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 101, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-label {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 440px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--mid);
}

.hero-trust-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

.hero-img-wrap {
  position: relative;
}

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

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.hero-badge-icon {
  font-size: 1.4rem;
}

.hero-badge strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.hero-badge span {
  color: var(--mid);
  font-size: 0.78rem;
}

/* ===== TRUST STRIP ===== */

.trust-strip {
  background: var(--dark);
  padding: 28px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.trust-icon {
  color: var(--coral);
  font-size: 1.1rem;
}

/* ===== ABOUT AEROBICS ===== */

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

.section-label {
  display: inline-block;
  background: var(--peach-mid);
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--mid);
  max-width: 540px;
  margin-bottom: 48px;
}

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

.about-text p {
  color: var(--mid);
  margin-bottom: 20px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

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

/* ===== BENEFITS ===== */

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

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--peach-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

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

/* ===== FOR WHOM ===== */

.for-whom {
  background: var(--white);
}

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

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

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--peach);
  border-radius: var(--radius);
  border-left: 3px solid var(--coral);
}

.audience-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.audience-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.audience-item p {
  font-size: 0.82rem;
  color: var(--mid);
}

/* ===== FORMAT ===== */

.format {
  background: var(--peach);
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.format-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.format-num {
  width: 44px;
  height: 44px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 16px;
}

.format-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.format-card p {
  font-size: 0.865rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ===== RESULTS ===== */

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

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

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

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--dark-mid);
}

.result-check {
  width: 22px;
  height: 22px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  margin-top: 1px;
}

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

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

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--peach-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */

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

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

.testimonial-card {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.testimonial-stars {
  color: var(--coral);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--dark-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--mid);
}

/* ===== LEAD FORM ===== */

.lead-form-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2D2926 100%);
  padding: 90px 0;
}

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

.lead-form-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.lead-form-text h2 em {
  font-style: normal;
  color: var(--coral-light);
}

.lead-form-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

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

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

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

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

.form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-card .form-sub {
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: 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, 101, 74, 0.12);
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-privacy {
  font-size: 0.75rem;
  color: #A09890;
  text-align: center;
  margin-top: 12px;
}

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

/* ===== SAFETY ===== */

.safety {
  background: var(--peach);
  padding: 60px 0;
}

.safety-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.safety-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.safety-text p {
  font-size: 0.875rem;
  color: var(--mid);
  max-width: 700px;
}

/* ===== FOOTER ===== */

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 32px;
}

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

.footer-brand .logo {
  color: var(--coral);
  margin-bottom: 14px;
  display: block;
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

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

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

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* ===== COOKIE BANNER ===== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

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

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

.btn-cookie-accept {
  padding: 9px 22px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

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

.btn-cookie-decline {
  padding: 9px 22px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* ===== LEGAL PAGES ===== */

.legal-hero {
  background: var(--peach);
  padding: 56px 0 40px;
}

.legal-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 10px;
}

.legal-hero .updated {
  font-size: 0.83rem;
  color: var(--mid);
}

.legal-content {
  padding: 60px 0 80px;
}

.legal-content .container {
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 12px;
}

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

.legal-content p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  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;
  background: var(--peach);
  padding: 40px 24px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  color: var(--white);
}

.success-card h1 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.success-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.success-steps {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 32px;
}

.success-steps h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.success-steps ol {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.success-steps li {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */

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

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

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99;
  }

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

  .nav-links a {
    font-size: 1.1rem;
  }

  .burger {
    display: flex;
  }

  .hero-inner,
  .about-grid,
  .for-whom-grid,
  .results-grid,
  .lead-form-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-img-wrap {
    order: -1;
  }

  .hero-badge {
    bottom: -14px;
    left: 10px;
  }

  .benefits-grid,
  .format-cards,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  section {
    padding: 56px 0;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    gap: 20px;
  }

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

  .success-card {
    padding: 36px 24px;
  }

  .lead-form-section {
    padding: 60px 0;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    flex: 1;
  }

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