/* ============================================
   DESIGN TOKENS — Толковало Benefits Page
   Warm Terracotta + Sage · Light-only Design
   ============================================ */

:root {
  /* Type Scale */
  --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);

  /* Spacing */
  --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;

  /* Fonts */
  --font-display: 'Golos Text', 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

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

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

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

  /* ---- Color Palette ---- */
  --color-bg:             #F9F6F0;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F5F1EA;
  --color-surface-offset: #F0EDE5;
  --color-divider:        #EDE8E0;
  --color-border:         #E0D9CE;

  --color-text:           #2C3E50;
  --color-text-muted:     #6B7B8D;
  --color-text-faint:     #A0AAB4;
  --color-text-inverse:   #FFFFFF;

  --color-primary:        #C4826A;
  --color-primary-hover:  #A96B54;
  --color-primary-active: #8F5A47;
  --color-primary-light:  #FCF0E8;

  --color-accent:         #C4826A;
  --color-accent-hover:   #A96B54;
  --color-accent-light:   #FCF0E8;

  --color-secondary:      #8BA888;
  --color-secondary-light:#EEF3EB;

  --color-blue-light:     #FCF0E8;
  --color-green-light:    #EEF3EB;
  --color-orange-light:   #FEF6E4;

  --shadow-sm: 0 1px 4px rgba(180, 140, 100, 0.06);
  --shadow-md: 0 4px 16px rgba(180, 140, 100, 0.10);
  --shadow-lg: 0 12px 40px rgba(180, 140, 100, 0.14);
}

/* ============================================
   GLOBAL
   ============================================ */
body {
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  gap: var(--space-4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.header__logo svg {
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header__link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.header__link:hover {
  color: var(--color-text);
  background: rgba(196, 130, 106, 0.06);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-6);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition-interactive), box-shadow var(--transition-interactive);
}

.header__cta:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-sm);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 110;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav--open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.mobile-nav__link {
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 600;
}

.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  margin-top: var(--space-4);
}

@media (max-width: 900px) {
  .header__nav,
  .header__cta { display: none; }
  .header__burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-20) var(--space-6) var(--space-16);
}

/* Decorative blobs on hero */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 25% 35%, rgba(196, 130, 106, 0.10), transparent 70%),
    radial-gradient(ellipse 55% 50% at 75% 60%, rgba(139, 168, 136, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 60% 15%, rgba(254, 246, 228, 0.5), transparent),
    var(--color-bg);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(196, 130, 106, 0.06) 0%, transparent 70%);
  border-radius: 50% 40% 60% 30% / 50% 30% 60% 40%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 45%;
  height: 55%;
  background: radial-gradient(circle, rgba(139, 168, 136, 0.06) 0%, transparent 70%);
  border-radius: 40% 50% 30% 60% / 30% 50% 40% 60%;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-12);
  max-width: var(--content-wide);
  width: 100%;
}

.hero__text {
  flex: 1;
  min-width: 0;
}

.hero__image {
  flex: 0 0 auto;
  max-width: 400px;
  width: 100%;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(180, 140, 100, 0.12));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hero__trust-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .hero {
    padding: var(--space-16) var(--space-6) var(--space-12);
    min-height: auto;
  }

  .hero__content {
    flex-direction: column;
    text-align: center;
  }

  .hero__image {
    max-width: 280px;
    order: -1;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
  transition: all var(--transition-interactive);
}

.btn--lg {
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn--primary svg {
  flex-shrink: 0;
}

.btn--outline {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-divider);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  position: relative;
}

.section--alt {
  background: var(--color-surface-2);
}

.section--cta {
  background: var(--color-primary);
  color: #ffffff;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Decorative blob on services section */
#services::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 168, 136, 0.06) 0%, transparent 70%);
  border-radius: 50% 40% 60% 30% / 50% 30% 60% 40%;
  pointer-events: none;
}

/* Decorative blob on benefits section */
#benefits::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(196, 130, 106, 0.05) 0%, transparent 70%);
  border-radius: 40% 50% 30% 60% / 60% 40% 50% 30%;
  pointer-events: none;
}

/* ============================================
   CARDS (Services)
   ============================================ */
.cards {
  display: grid;
  gap: var(--space-8);
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .cards--3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  padding: var(--space-8) var(--space-8) var(--space-10);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: var(--space-6);
}

.card__icon svg { display: block; }

.card__icon--blue {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.card__icon--green {
  background: var(--color-secondary-light);
  color: var(--color-secondary);
}

.card__icon--orange {
  background: var(--color-orange-light);
  color: #B8860B;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Services section illustration */
.section__illustration {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section__illustration img {
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 20px;
  filter: drop-shadow(0 8px 24px rgba(180, 140, 100, 0.10));
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  padding: var(--space-8);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive);
  overflow: hidden;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.benefit-card__image {
  margin: calc(-1 * var(--space-8)) calc(-1 * var(--space-8)) var(--space-5);
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  padding: var(--space-5) var(--space-4);
  border-radius: 16px 16px 0 0;
}

.benefit-card__image img {
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(180, 140, 100, 0.12));
}

.benefit-card__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: rgba(196, 130, 106, 0.18);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.benefit-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.benefit-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #5E8A5B;
  background: var(--color-secondary-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ============================================
   MILITARY GRID (kept for compatibility)
   ============================================ */
.military-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.military-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive);
}

.military-card:hover {
  box-shadow: var(--shadow-md);
}

.military-card--highlight {
  border-color: var(--color-primary);
  border-width: 2px;
  position: relative;
}

.military-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.military-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.military-card__amount {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.military-card__text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.military-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: var(--color-accent-light);
  border-radius: 16px;
  border-left: 4px solid var(--color-accent);
}

.military-note svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.military-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   ADDITIONAL SERVICES
   ============================================ */
.additional-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.additional-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive);
}

.additional-item:hover {
  box-shadow: var(--shadow-md);
}

.additional-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.additional-item__icon svg { display: block; }

.additional-item__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.additional-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   STEPS (How it works)
   ============================================ */
.steps-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  max-width: 900px;
  margin: 0 auto;
}

.steps-illustration {
  flex: 0 0 auto;
  max-width: 260px;
  width: 100%;
  display: none;
}

.steps-illustration img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 12px 32px rgba(180, 140, 100, 0.12));
}

@media (min-width: 901px) {
  .steps-illustration {
    display: block;
  }
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  position: relative;
  flex: 1;
}

.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary-light), var(--color-divider));
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__content {
  padding-top: var(--space-2);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-5);
}

.cta-block__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.cta-block__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  background: rgba(255, 255, 255, 0.15);
  padding: var(--space-5) var(--space-8);
  border-radius: 16px;
  margin-bottom: var(--space-8);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(8px);
}

.cta-block__price-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.cta-block__price-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: #ffffff;
}

.section--cta .btn--primary {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}

.section--cta .btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}

.cta-block__hint {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-3);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  user-select: none;
  transition: color var(--transition-interactive);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: var(--space-4);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-light);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] .faq-item__question::after {
  content: '−';
  background: var(--color-primary);
  color: #ffffff;
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-6);
}

.faq-item__answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-12) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer__brand svg {
  flex-shrink: 0;
}

.footer__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__links a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

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

.footer__back {
  display: inline-block;
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-interactive);
}

.footer__back:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(196, 130, 106, 0.25);
  color: var(--color-text);
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.section--deco {
  position: relative;
  overflow: hidden;
}

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Hero decorative elements */
.deco--hero-leaf1 {
  top: 12%;
  left: 5%;
  transform: rotate(-15deg);
}

.deco--hero-leaf2 {
  bottom: 18%;
  right: 8%;
  transform: rotate(25deg);
}

.deco--hero-heart1 {
  top: 20%;
  right: 15%;
}

.deco--hero-heart2 {
  bottom: 30%;
  left: 12%;
}

.deco--hero-branch {
  bottom: 8%;
  left: 2%;
  transform: rotate(5deg);
}

.deco--hero-flower {
  top: 30%;
  right: 6%;
}

/* Services section */
.deco--sec-leaf-left {
  top: 10%;
  left: 3%;
  transform: rotate(-20deg);
}

.deco--sec-heart-right {
  top: 15%;
  right: 5%;
}

.deco--sec-flower-left {
  bottom: 12%;
  left: 6%;
}

/* Benefits section */
.deco--ben-branch-right {
  top: 8%;
  right: 2%;
  transform: scaleX(-1);
}

.deco--ben-leaf-left {
  top: 20%;
  left: 2%;
  transform: rotate(15deg);
}

.deco--ben-heart-top {
  top: 5%;
  left: 30%;
}

.deco--ben-flower-right {
  bottom: 10%;
  right: 4%;
}

/* Additional section */
.deco--add-leaf-right {
  top: 8%;
  right: 3%;
  transform: rotate(20deg);
}

.deco--add-heart-left {
  top: 18%;
  left: 5%;
}

.deco--add-branch-bottom {
  bottom: 5%;
  right: 8%;
  transform: rotate(-10deg);
}

/* How it works */
.deco--how-leaf-left {
  top: 15%;
  left: 3%;
  transform: rotate(-10deg);
}

.deco--how-flower-right {
  top: 20%;
  right: 4%;
}

.deco--how-heart-right {
  bottom: 20%;
  right: 8%;
}

/* FAQ */
.deco--faq-branch-left {
  top: 12%;
  left: 2%;
  transform: rotate(8deg);
}

.deco--faq-heart-right {
  top: 20%;
  right: 6%;
}

/* Hide decorative elements on small screens to avoid clutter */
@media (max-width: 768px) {
  .deco {
    display: none;
  }
}

/* ============================================
   GLOBAL BACKGROUND PATTERN
   ============================================ */
body {
  background-image:
    radial-gradient(ellipse 600px 400px at 10% 20%, rgba(196, 130, 106, 0.04), transparent),
    radial-gradient(ellipse 500px 500px at 85% 15%, rgba(139, 168, 136, 0.04), transparent),
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(196, 130, 106, 0.03), transparent),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(139, 168, 136, 0.04), transparent),
    radial-gradient(ellipse 500px 350px at 75% 70%, rgba(196, 130, 106, 0.03), transparent);
  background-attachment: fixed;
}
