/* ============================================
   Шарик & Тузик — Premium Warm Design v3
   Тёплая, дизайнерская, премиальная тема
   Целевая аудитория: 30–40+
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Palette — Warm Teal + Gold */
  --c-primary: #0F766E;
  --c-primary-light: #14B8A6;
  --c-primary-dark: #0D5E58;
  --c-primary-50: #F0FDFA;
  --c-primary-100: #CCFBF1;

  --c-accent: #C2820E;
  --c-accent-light: #F59E0B;
  --c-accent-50: #FFFBEB;
  --c-accent-100: #FEF3C7;

  /* Backgrounds — Warm, layered */
  --c-bg: #FFFDF7;
  --c-bg-warm: #FBF8F1;
  --c-bg-cool: #F5F5F0;
  --c-bg-card: #FFFFFF;
  --c-bg-hero: linear-gradient(170deg, #FFFDF7 0%, #F0FDFA 40%, #FFFDF7 70%, #FFFBEB 100%);

  /* Text */
  --c-text: #1C1917;
  --c-text-secondary: #57534E;
  --c-text-muted: #A8A29E;
  --c-heading: #0C0A09;

  /* Borders */
  --c-border: #E7E5E4;
  --c-border-hover: #D6D3D1;

  /* Status */
  --c-success: #16A34A;
  --c-warning: #D97706;
  --c-star: #EAB308;

  /* Gradients */
  --g-primary: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
  --g-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --g-hero-glow: radial-gradient(ellipse 70% 50% at 65% 30%, rgba(15, 118, 110, 0.07) 0%, transparent 70%);
  --g-hero-glow-2: radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
  --g-section-warm: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  --g-section-cool: linear-gradient(180deg, var(--c-bg-cool) 0%, var(--c-bg) 100%);

  /* Typography */
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --f-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --f-sm: clamp(0.8125rem, 0.76rem + 0.26vw, 0.875rem);
  --f-base: clamp(0.9375rem, 0.87rem + 0.33vw, 1rem);
  --f-md: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --f-lg: clamp(1.125rem, 1rem + 0.63vw, 1.25rem);
  --f-xl: clamp(1.25rem, 1.05rem + 1vw, 1.5rem);
  --f-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --f-3xl: clamp(1.875rem, 1.4rem + 2.4vw, 2.75rem);
  --f-4xl: clamp(2.25rem, 1.6rem + 3.25vw, 3.5rem);
  --f-display: clamp(2.75rem, 1.8rem + 4.75vw, 4.5rem);

  /* Spacing */
  --s-xs: 0.25rem;
  --s-sm: 0.5rem;
  --s-md: 1rem;
  --s-lg: 1.5rem;
  --s-xl: 2rem;
  --s-2xl: 3rem;
  --s-3xl: 4rem;
  --s-4xl: 6rem;
  --s-section: clamp(5rem, 4rem + 5vw, 8rem);

  /* Radius */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 1rem;
  --r-xl: 1.25rem;
  --r-2xl: 1.75rem;
  --r-full: 9999px;

  /* Shadows — warm-tinted */
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06), 0 1px 2px rgba(28, 25, 23, 0.03);
  --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.06), 0 2px 4px rgba(28, 25, 23, 0.03);
  --shadow-lg: 0 10px 24px rgba(28, 25, 23, 0.07), 0 4px 8px rgba(28, 25, 23, 0.03);
  --shadow-xl: 0 20px 48px rgba(28, 25, 23, 0.09), 0 8px 16px rgba(28, 25, 23, 0.03);
  --shadow-card: 0 1px 3px rgba(28, 25, 23, 0.05), 0 8px 20px rgba(28, 25, 23, 0.03);
  --shadow-card-hover: 0 10px 40px rgba(28, 25, 23, 0.1), 0 4px 12px rgba(28, 25, 23, 0.04);
  --shadow-btn: 0 4px 14px rgba(15, 118, 110, 0.25);
  --shadow-btn-hover: 0 8px 25px rgba(15, 118, 110, 0.35);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --header-h: 4.5rem;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-sans);
  font-size: var(--f-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--c-primary-dark);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Focus Styles ---------- */
:focus-visible {
  outline: 2px solid var(--c-primary-light);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

/* ---------- Section ---------- */
.section {
  padding: var(--s-section) 0;
  position: relative;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: var(--f-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  margin-bottom: var(--s-lg);
}

.section__label::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--c-primary-light);
  border-radius: var(--r-full);
}

.section__title {
  font-family: var(--f-serif);
  font-size: var(--f-3xl);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--s-md);
  letter-spacing: -0.01em;
  color: var(--c-heading);
}

.section__subtitle {
  font-size: var(--f-lg);
  color: var(--c-text-secondary);
  max-width: 600px;
  line-height: 1.65;
}

.section__header {
  text-align: center;
  margin-bottom: var(--s-3xl);
}

.section__header .section__subtitle {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding: 0.875rem 2rem;
  font-size: var(--f-base);
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--g-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
  color: #fff;
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--c-bg-card);
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--shadow-xs);
}

.btn--secondary:hover {
  background: var(--c-bg-warm);
  border-color: var(--c-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: var(--f-md);
}

.btn--block {
  width: 100%;
}

/* ---------- Cards ---------- */
.card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
}

.card:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.9rem;
  font-size: var(--f-xs);
  font-weight: 600;
  border-radius: var(--r-full);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-text-secondary);
  box-shadow: var(--shadow-xs);
}

.badge--highlight {
  background: var(--c-accent-50);
  border-color: var(--c-accent-100);
  color: var(--c-accent);
}

/* ============================================
   A) HEADER — Proper warm look
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #FFFDF7;
  border-bottom: 1px solid var(--c-border);
  transition: all var(--t-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: #FFFDF7;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--f-xl);
  font-weight: 800;
  color: var(--c-heading);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.header__logo:hover {
  color: var(--c-heading);
}

.header__logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}

.header__nav-list {
  display: flex;
  gap: 0.25rem;
}

.header__nav-link {
  font-size: var(--f-sm);
  font-weight: 600;
  color: #44403C;
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}

.header__nav-link:hover {
  color: var(--c-primary);
  background: var(--c-primary-50);
}

.header__cta {
  padding: 0.625rem 1.5rem;
  font-size: var(--f-sm);
}

/* Mobile menu */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  padding: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: var(--r-full);
  transition: all var(--t-base);
  transform-origin: center;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 253, 247, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: var(--s-2xl) var(--s-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.mobile-nav__link {
  font-size: var(--f-xl);
  font-weight: 600;
  color: var(--c-text);
  padding: var(--s-md);
  border-radius: var(--r-lg);
}

.mobile-nav__link:hover {
  color: var(--c-primary);
  background: var(--c-primary-50);
}

@media (max-width: 768px) {

  .header__nav-list,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}

/* ============================================
   B) HERO — Warm, inviting
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--s-2xl));
  padding-bottom: var(--s-4xl);
  position: relative;
  overflow: hidden;
  background: var(--c-bg-hero);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-hero-glow), var(--g-hero-glow-2);
  pointer-events: none;
}

/* Subtle pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: radial-gradient(circle, var(--c-text) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  margin-bottom: var(--s-lg);
}

.hero__title {
  font-family: var(--f-serif);
  font-size: var(--f-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-lg);
  color: var(--c-heading);
}

.hero__title-highlight {
  color: var(--c-primary);
  position: relative;
}

.hero__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.1em;
  background: var(--c-accent-100);
  border-radius: var(--r-full);
  z-index: -1;
}

.hero__subtitle {
  font-size: var(--f-lg);
  color: var(--c-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--s-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--s-md);
  margin-bottom: var(--s-2xl);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: var(--s-sm);
  flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__image-wrapper {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: var(--r-2xl);
  background: var(--c-bg-warm);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-placeholder {
  z-index: 1;
  width: 200px;
  height: auto;
}

/* Decorative gold accent on the image card */
.hero__image-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: calc(var(--r-2xl) + 2px);
  background: linear-gradient(135deg, var(--c-primary-light) 0%, transparent 40%, transparent 60%, var(--c-accent-light) 100%);
  z-index: -1;
  opacity: 0.5;
}

/* Floating orbs — soft and warm */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 280px;
  height: 280px;
  background: var(--c-primary-100);
  top: 5%;
  right: -3%;
}

.hero__orb--2 {
  width: 200px;
  height: 200px;
  background: var(--c-accent-100);
  bottom: 15%;
  left: -3%;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.03);
  }
}

@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + var(--s-xl));
    padding-bottom: var(--s-2xl);
    background: url('/assets/img/hero-dogs.jpg') top center / cover no-repeat;
    position: relative;
  }

  /* Cool overlay matching the teal/light-blue photo palette */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(230, 245, 248, 0.90) 0%,
        rgba(220, 240, 245, 0.80) 35%,
        rgba(240, 248, 250, 0.92) 100%);
    z-index: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: var(--f-3xl);
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ============================================
   C) SOCIAL PROOF — Warm background strip
   ============================================ */
.social-proof {
  background: var(--c-bg-warm);
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.social-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-bottom: var(--s-3xl);
}

.stat-card {
  text-align: center;
  padding: var(--s-xl) var(--s-md);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}

.stat-card__number {
  font-family: var(--f-serif);
  font-size: var(--f-3xl);
  font-weight: 800;
  color: var(--c-primary);
  display: block;
  line-height: 1.2;
}

.stat-card__label {
  font-size: var(--f-sm);
  color: var(--c-text-secondary);
  margin-top: var(--s-xs);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.review-card {
  padding: var(--s-xl);
}

.review-card__stars {
  color: var(--c-star);
  font-size: var(--f-md);
  margin-bottom: var(--s-md);
  letter-spacing: 2px;
}

.review-card__text {
  font-size: var(--f-sm);
  color: var(--c-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--s-lg);
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--f-sm);
  color: var(--c-primary);
  border: 2px solid var(--c-primary-100);
}

.review-card__name {
  font-weight: 600;
  font-size: var(--f-sm);
  color: var(--c-text);
}

.review-card__role {
  font-size: var(--f-xs);
  color: var(--c-text-muted);
}

@media (max-width: 768px) {
  .social-proof__stats {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 968px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   D) PROGRAM — Clean accordion
   ============================================ */
.program {
  background: var(--c-bg);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.accordion__item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  box-shadow: var(--shadow-xs);
}

.accordion__item:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-sm);
}

.accordion__item.active {
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 1px var(--c-primary-light), var(--shadow-md);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s-lg) var(--s-xl);
  font-size: var(--f-md);
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  transition: all var(--t-fast);
  gap: var(--s-md);
}

.accordion__header:hover {
  color: var(--c-primary);
}

.accordion__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r-md);
  background: var(--c-primary-50);
  color: var(--c-primary);
  font-size: var(--f-sm);
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--c-primary-100);
}

.accordion__item.active .accordion__number {
  background: var(--g-primary);
  color: #fff;
  border-color: transparent;
}

.accordion__title-group {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  flex: 1;
}

.accordion__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--c-text-muted);
  border-radius: 2px;
  transition: all var(--t-base);
}

.accordion__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.accordion__item.active .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.accordion__content {
  padding: 0 var(--s-xl) var(--s-xl);
  padding-left: calc(var(--s-xl) + 2.25rem + var(--s-md));
  color: var(--c-text-secondary);
  font-size: var(--f-sm);
  line-height: 1.8;
}

.accordion__content ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.accordion__content li {
  position: relative;
  padding-left: var(--s-lg);
}

.accordion__content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-primary-light);
  font-weight: 700;
}

/* ============================================
   E) BENEFITS — Warm background
   ============================================ */
.benefits {
  background: var(--c-bg-warm);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.benefit-card {
  text-align: center;
  padding: var(--s-2xl) var(--s-xl);
}

.benefit-card__icon {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto var(--s-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  background: var(--c-primary-50);
  border: 1px solid var(--c-primary-100);
  font-size: 1.5rem;
}

.benefit-card__title {
  font-size: var(--f-lg);
  font-weight: 700;
  margin-bottom: var(--s-sm);
  color: var(--c-heading);
}

.benefit-card__text {
  font-size: var(--f-sm);
  color: var(--c-text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 968px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   F) AUDIENCE
   ============================================ */
.audience {
  background: var(--c-bg);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.audience-card {
  padding: var(--s-2xl) var(--s-xl);
  text-align: center;
}

.audience-card__emoji {
  font-size: 3rem;
  margin-bottom: var(--s-lg);
  display: block;
}

.audience-card__title {
  font-size: var(--f-lg);
  font-weight: 700;
  margin-bottom: var(--s-sm);
  color: var(--c-heading);
}

.audience-card__text {
  font-size: var(--f-sm);
  color: var(--c-text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 968px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   G) RESULTS
   ============================================ */
.results {
  background: var(--c-bg-warm);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-lg);
  padding: var(--s-xl);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}

.result-item:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.result-item__check {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #DCFCE7 0%, #F0FDF4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-success);
  font-weight: 700;
  font-size: var(--f-lg);
  border: 1px solid #BBF7D0;
}

.result-item__title {
  font-weight: 700;
  margin-bottom: var(--s-xs);
  color: var(--c-heading);
}

.result-item__text {
  font-size: var(--f-sm);
  color: var(--c-text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   H) PRICING — Feature section
   ============================================ */
.pricing {
  background: var(--c-bg);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  align-items: stretch;
}

.pricing-card {
  padding: var(--s-2xl);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  background: linear-gradient(180deg, var(--c-primary-50) 0%, #FFFFFF 40%);
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 1px var(--c-primary-light), 0 12px 40px rgba(15, 118, 110, 0.1);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.05);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.5rem;
  background: var(--g-primary);
  color: #fff;
  font-size: var(--f-xs);
  font-weight: 700;
  border-radius: 0 0 var(--r-md) var(--r-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card__name {
  font-family: var(--f-serif);
  font-size: var(--f-xl);
  font-weight: 700;
  margin-bottom: var(--s-sm);
  color: var(--c-heading);
}

.pricing-card__desc {
  font-size: var(--f-sm);
  color: var(--c-text-secondary);
  margin-bottom: var(--s-xl);
  line-height: 1.6;
}

.pricing-card__price {
  margin-bottom: var(--s-xl);
}

.pricing-card__old-price {
  display: block;
  font-size: var(--f-lg);
  color: var(--c-text-muted);
  text-decoration: line-through;
  margin-bottom: var(--s-xs);
  font-weight: 400;
  opacity: 0.7;
}

.pricing-card__amount {
  font-family: var(--f-serif);
  font-size: var(--f-3xl);
  font-weight: 900;
  color: var(--c-heading);
}

.pricing-card__currency {
  font-family: var(--f-sans);
  font-size: var(--f-lg);
  color: var(--c-text-secondary);
  font-weight: 400;
}

.pricing-card__period {
  font-size: var(--f-sm);
  color: var(--c-text-muted);
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: var(--s-xl);
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: var(--f-sm);
  color: var(--c-text-secondary);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--c-success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__feature--disabled {
  opacity: 0.45;
}

.pricing-card__feature--disabled::before {
  content: '—';
  color: var(--c-text-muted);
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ============================================
   I) FAQ
   ============================================ */
.faq {
  background: var(--c-bg-warm);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.faq .accordion {
  max-width: 720px;
}

.faq .accordion__content {
  padding-left: var(--s-xl);
}

/* ============================================
   J) FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
  overflow: hidden;
  background: var(--c-bg);
}

.final-cta__wrapper {
  padding: var(--s-4xl) var(--s-2xl);
  background: linear-gradient(160deg, var(--c-primary-50) 0%, var(--c-accent-50) 50%, var(--c-bg-warm) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
}

.final-cta__wrapper::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--c-primary-100);
  opacity: 0.3;
  filter: blur(80px);
  pointer-events: none;
}

.final-cta__wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--c-accent-100);
  opacity: 0.3;
  filter: blur(80px);
  pointer-events: none;
}

.final-cta__title {
  font-family: var(--f-serif);
  font-size: var(--f-3xl);
  font-weight: 900;
  margin-bottom: var(--s-md);
  position: relative;
  color: var(--c-heading);
}

.final-cta__subtitle {
  font-size: var(--f-lg);
  color: var(--c-text-secondary);
  max-width: 520px;
  margin: 0 auto var(--s-2xl);
  line-height: 1.65;
  position: relative;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--s-md);
  position: relative;
}

/* ============================================
   K) FOOTER — Dark, contrasting
   ============================================ */
.footer {
  background: #1C1917;
  color: #D6D3D1;
  padding: var(--s-3xl) 0 var(--s-xl);
}

.footer a {
  color: #A8A29E;
}

.footer a:hover {
  color: #FAFAF9;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-2xl);
  margin-bottom: var(--s-2xl);
}

.footer .header__logo {
  color: #FAFAF9;
}

.footer .header__logo:hover {
  color: #FAFAF9;
}

.footer__brand-desc {
  font-size: var(--f-sm);
  color: #78716C;
  line-height: 1.65;
  margin-top: var(--s-md);
  max-width: 280px;
}

.footer__title {
  font-size: var(--f-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FAFAF9;
  margin-bottom: var(--s-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: var(--f-sm);
  color: #78716C;
}

.footer__link:hover {
  color: #FAFAF9;
}

.footer__social {
  display: flex;
  gap: var(--s-sm);
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #A8A29E;
  font-size: var(--f-lg);
  transition: all var(--t-fast);
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FAFAF9;
  border-color: rgba(255, 255, 255, 0.15);
}

.footer__bottom {
  padding-top: var(--s-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-md);
}

.footer__copy {
  font-size: var(--f-xs);
  color: #57534E;
}

.footer__bottom-links {
  display: flex;
  gap: var(--s-lg);
}

.footer__bottom-link {
  font-size: var(--f-xs);
  color: #57534E;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.4s;
}

.reveal-delay-6 {
  transition-delay: 0.48s;
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-2xl);
  background: var(--c-bg);
}

.success-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  padding: var(--s-3xl) var(--s-2xl);
}

.success-card__icon {
  font-size: 4rem;
  margin-bottom: var(--s-xl);
  display: block;
}

.success-card__title {
  font-family: var(--f-serif);
  font-size: var(--f-2xl);
  font-weight: 800;
  margin-bottom: var(--s-md);
  color: var(--c-heading);
}

.success-card__text {
  font-size: var(--f-md);
  color: var(--c-text-secondary);
  margin-bottom: var(--s-2xl);
  line-height: 1.65;
}

.success-card__link {
  margin-bottom: var(--s-lg);
}

.success-card__note {
  font-size: var(--f-xs);
  color: var(--c-text-muted);
  line-height: 1.5;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--c-border);
  border-top-color: var(--c-primary);
  border-radius: 50%;
  margin: var(--s-xl) auto;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
  color: var(--c-primary);
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   PURCHASED BANNER
   ============================================ */
.purchased-banner {
  background: linear-gradient(135deg, var(--c-primary-50) 0%, var(--c-accent-50) 100%);
  border-bottom: 1px solid var(--c-primary-100);
  padding: var(--s-md) 0;
  margin-top: var(--header-h);
}

.purchased-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-lg);
  flex-wrap: wrap;
}

.purchased-banner__text {
  font-size: var(--f-md);
  font-weight: 600;
  color: var(--c-heading);
}

.purchased-banner__btn {
  padding: 0.5rem 1.25rem;
  font-size: var(--f-sm);
}

@media (max-width: 480px) {
  .purchased-banner__inner {
    flex-direction: column;
    gap: var(--s-sm);
    text-align: center;
  }

  .purchased-banner__btn {
    width: 100%;
  }
}