/* ============================================
   ПОДЕЛИСЬ — Design Tokens & Component Styles
   ============================================ */

/* --- Type Scale --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Nunito', 'Helvetica Neue', sans-serif;
  --font-body: 'Nunito', 'Helvetica Neue', sans-serif;
}

/* --- Color Palette: Light Only --- */
:root {
  --color-bg:             #fdfcfa;
  --color-surface:        #ffffff;
  --color-surface-2:      #f8f4f0;
  --color-surface-offset: #f4efea;
  --color-divider:        #ebe6e0;
  --color-border:         #e2dbd3;

  --color-text:           #3a3145;
  --color-text-muted:     #827890;
  --color-text-faint:     #b5adbe;
  --color-text-inverse:   #ffffff;

  /* Decorative loop color */
  --color-loop:           #93e2de;

  /* Primary — Lighter Purple */
  --color-primary:        #7b5aac;
  --color-primary-hover:  #6a4a99;
  --color-primary-active: #5b3d85;
  --color-primary-light:  #f0eaf8;

  /* Accent — Warm Coral (lighter) */
  --color-accent:         #f0917f;
  --color-accent-hover:   #e87a68;
  --color-accent-light:   #fef3f0;

  /* Accent 2 — Teal (lighter) */
  --color-teal:           #55c4bf;
  --color-teal-light:     #eaf8f7;

  /* Accent 3 — Warm Gold (lighter) */
  --color-gold:           #f0be5a;
  --color-gold-light:     #fef9ed;

  --shadow-sm: 0 1px 3px rgba(58, 49, 69, 0.05);
  --shadow-md: 0 4px 16px rgba(58, 49, 69, 0.07);
  --shadow-lg: 0 12px 32px rgba(58, 49, 69, 0.10);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-primary);
}
.header__logo-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.header__nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header__nav a:hover {
  color: var(--color-primary);
}
.header__nav a:hover::after {
  width: 100%;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.header__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 90, 172, 0.3);
}
.header__controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Hamburger animation */
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 0;
}
.hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
  height: 14px;
  position: relative;
}
.hamburger__lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  transform-origin: center;
}
.hamburger__lines.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger__lines.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger__lines.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-nav a {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav a:hover {
  color: var(--color-primary);
}
.mobile-nav__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (max-width: 800px) {
  .header__nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123, 90, 172, 0.06) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(240, 145, 127, 0.05) 0%, transparent 60%);
  z-index: 0;
}
.hero__inner {
  max-width: var(--content-default);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero__title span {
  color: var(--color-primary);
}
.hero__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.hero__decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Floating decorative dots in hero */
.hero__float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatBob 6s ease-in-out infinite;
}
.hero__float--1 {
  width: 120px;
  height: 120px;
  background: var(--color-primary);
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.hero__float--2 {
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  top: 60%;
  right: 10%;
  animation-delay: -2s;
}
.hero__float--3 {
  width: 60px;
  height: 60px;
  background: var(--color-teal);
  bottom: 20%;
  left: 15%;
  animation-delay: -4s;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* ============================================
   DECORATIVE LOOPS (brand element)
   ============================================ */
.loop-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}
.loop-deco--hero-1 {
  width: 55%;
  min-width: 360px;
  bottom: -5%;
  left: -8%;
}
.loop-deco--hero-2 {
  width: 45%;
  min-width: 300px;
  top: -10%;
  right: -8%;
}
.section-loop-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin: calc(-1 * var(--space-6)) 0;
  z-index: 3;
}
.loop-deco--between {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.section--has-loop {
  position: relative;
  overflow: hidden;
}
.loop-deco--reviews {
  width: 35%;
  min-width: 260px;
  top: -5%;
  right: -5%;
  opacity: 0.2;
}
.cta-section {
  overflow: hidden;
}
.loop-deco--cta-1 {
  width: 50%;
  min-width: 320px;
  top: -15%;
  left: -5%;
  opacity: 1;
}
.loop-deco--cta-2 {
  width: 45%;
  min-width: 280px;
  bottom: -20%;
  right: -5%;
  opacity: 1;
}

@media (max-width: 800px) {
  .loop-deco--hero-1 { width: 80%; min-width: 240px; bottom: -8%; left: -20%; }
  .loop-deco--hero-2 { width: 70%; min-width: 220px; top: -5%; right: -15%; }
  .loop-deco--reviews { width: 60%; min-width: 180px; }
  .section-loop-wrapper { height: 40px; }
  .hero__float--1 { width: 80px; height: 80px; left: 2%; }
  .hero__float--2 { width: 50px; height: 50px; right: 4%; }
  .hero__float--3 { width: 40px; height: 40px; left: 5%; }
}

/* ============================================
   STATS BAR — Social Proof
   ============================================ */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-8) var(--space-6);
}
.stats-bar__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}
.stat-item__value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.stat-item__suffix {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
}
.stat-item__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: var(--space-2);
  white-space: nowrap;
}
.stat-item__divider {
  width: 1px;
  height: 40px;
  background: var(--color-divider);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-bar__inner {
    gap: var(--space-6);
  }
  .stat-item__divider {
    display: none;
  }
  .stat-item {
    min-width: 100px;
  }
  .stat-item__number {
    font-size: var(--text-xl);
  }
  .stat-item__suffix {
    font-size: var(--text-lg);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 90, 172, 0.3);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(123, 90, 172, 0.2);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 90, 172, 0.15);
}
.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 145, 127, 0.3);
}
.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ============================================
   SECTIONS — Common
   ============================================ */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.section--alt {
  background: var(--color-surface-2);
}
.section__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}
.section__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: var(--space-4) auto 0;
}

/* ============================================
   ADVANTAGES / FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
}
.feature-card__icon--purple { background: var(--color-primary-light); color: var(--color-primary); }
.feature-card__icon--coral { background: var(--color-accent-light); color: var(--color-accent); }
.feature-card__icon--teal { background: var(--color-teal-light); color: var(--color-teal); }
.feature-card__icon--gold { background: var(--color-gold-light); color: var(--color-gold); }

.feature-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  overflow-wrap: break-word;
  word-break: break-word;
}
.feature-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS — Steps
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover .step__number {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(123, 90, 172, 0.3);
}
.step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.step__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* Connector lines between steps (desktop only) */
@media (min-width: 801px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--color-primary) 0,
      var(--color-primary) 6px,
      transparent 6px,
      transparent 12px
    );
    opacity: 0.3;
  }
}

/* ============================================
   FOR WHO
   ============================================ */
.for-who-list {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.for-who-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary-light);
}
.for-who-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.for-who-item__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}
.review-card__stars svg {
  width: 18px;
  height: 18px;
}
.review-card__quote {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.review-card__quote::before {
  content: none;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}
.review-card__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.review-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  min-width: 100px;
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card__avatar:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.team-card__avatar--purple { background: var(--color-primary); }
.team-card__avatar--coral { background: var(--color-accent); }
.team-card__avatar--teal { background: var(--color-teal); }
.team-card__avatar--gold { background: var(--color-gold); }
.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 760px;
  margin: 0 auto;
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  border: 1px solid var(--color-divider);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.product-card--featured .product-card__name,
.product-card--featured .product-card__price,
.product-card--featured .product-card__desc {
  color: #fff;
}
.product-card--featured .product-card__desc {
  opacity: 0.85;
}
.product-card--featured .product-card__icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.product-card__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.product-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.6;
  flex: 1;
}
.product-card .btn {
  width: 100%;
  justify-content: center;
}
.product-card .btn--white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}
.product-card .btn--white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

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

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta-section {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  text-align: center;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  position: relative;
  overflow: hidden;
}
.cta-section__inner {
  max-width: var(--content-default);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: #fff;
}
.cta-section__text {
  font-size: var(--text-base);
  opacity: 0.85;
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.9);
}
.cta-section .btn--white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}
.cta-section .btn--white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: var(--color-primary-light);
}
.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(123, 90, 172, 0.08);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  gap: var(--space-4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-item__question:hover {
  color: var(--color-primary);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-item__answer {
  max-height: 300px;
}
.faq-item__answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   TRUST BAR — Marquee
   ============================================ */
.trust-bar {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  overflow: hidden;
  padding: var(--space-4) 0;
}
.trust-bar__track {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust-bar__content {
  display: flex;
  gap: var(--space-10);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.trust-bar__item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) var(--space-6) var(--space-8);
}
.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
}
.footer__brand-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 340px;
}
.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--color-primary);
}
.footer__bottom {
  max-width: var(--content-wide);
  margin: var(--space-8) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__attribution a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer__attribution a:hover {
  color: var(--color-primary);
}

@media (max-width: 800px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
