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

:root {
  /* === EMOTION & WARMTH PALETTE === */
  --c-bg: #FFFBF5;                  /* warm cream */
  --c-bg-alt: #FFF5EC;              /* deeper cream */
  --c-bg-warm: #FCEFE0;             /* peachy warmth */
  --c-bg-dark: #1A0F1A;             /* deep wine-black */
  --c-bg-dark-2: #2A1A2A;           /* plum */

  --c-text: #1A0F0A;                /* near-black for max contrast */
  --c-text-soft: #4A3528;           /* warm dark brown */
  --c-text-light: #8D6E63;          /* light brown */
  --c-text-inv: #FFFBF5;            /* warm white */
  --c-text-inv-soft: #D4B8A8;       /* warm beige */

  /* Brand colors */
  --c-primary: #D4734A;             /* terracotta coral */
  --c-primary-dark: #B85535;
  --c-primary-soft: #FBE5D6;
  --c-rose: #E89B8C;
  --c-gold: #D4A574;
  --c-coral: #FF6B6B;

  --c-border: #E8D5C4;
  --c-border-dark: #4A2D3D;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #D4734A 0%, #E89B8C 50%, #D4A574 100%);
  --grad-sunset: linear-gradient(135deg, #D4734A 0%, #E89B8C 50%, #D4A574 100%);
  --grad-rose: linear-gradient(135deg, #E89B8C 0%, #D4734A 100%);
  --grad-text: linear-gradient(120deg, #D4734A 0%, #E89B8C 30%, #D4A574 60%, #E89B8C 80%, #D4734A 100%);
  --grad-text-size: 200%;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(180, 100, 60, .06), 0 1px 3px rgba(180, 100, 60, .08);
  --shadow-md: 0 4px 6px rgba(180, 100, 60, .05), 0 10px 25px rgba(180, 100, 60, .1);
  --shadow-lg: 0 10px 30px rgba(180, 100, 60, .12), 0 30px 60px rgba(180, 100, 60, .15);
  --shadow-glow: 0 8px 30px rgba(212, 115, 74, .35);
  --shadow-warm: 0 20px 60px rgba(232, 155, 140, .3);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 860px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --transition: 0.4s cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== PARTICLES CANVAS (subtle) ===== */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 120px 0; position: relative; }
.section--white { background: #FFFFFF; }
.section--cream { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); color: var(--c-text-inv); }

.section__head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 115, 74, .2);
  font-family: var(--font-sans);
}
.section__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.section__eyebrow--light {
  color: var(--c-gold);
  background: rgba(212, 165, 116, .15);
  border-color: rgba(212, 165, 116, .3);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--c-text);
}
.section__lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--c-text-soft);
  font-weight: 400;
}

/* === GRADIENT TEXT === */
.text-grad {
  background: var(--grad-text);
  background-size: var(--grad-text-size);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
  font-style: italic;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.text-grad-warm {
  background: linear-gradient(135deg, #E89B8C 0%, #D4A574 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad-sunset);
  background-size: 200% 200%;
  color: white;
  box-shadow: var(--shadow-glow);
  animation: gradShift 8s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 115, 74, .45);
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left 0.6s ease;
}
.btn--primary:hover::after { left: 100%; }
.btn--ghost {
  background: white;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn--ghost:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
  font-size: 13px;
  padding: 10px 0;
  position: relative;
  z-index: 50;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__pill {
  background: var(--c-coral);
  color: white;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.topbar__link { color: var(--c-gold); font-weight: 600; }
.topbar__link:hover { color: var(--c-text-inv); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 251, 245, .98);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  font-style: italic;
}
.logo__text { color: var(--c-text); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-soft);
  border-radius: 10px;
  transition: all var(--transition);
}
.nav__link:hover { color: var(--c-primary); background: var(--c-primary-soft); }
.nav__cta { margin-left: 12px; padding: 12px 22px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================ */
/* HERO: SPLIT SCREEN — max readability         */
/* ============================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  background: var(--c-bg);
}

/* Left: solid background with text */
.hero-split__text {
  background: var(--c-bg);
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}
.hero-split__text::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: linear-gradient(to right, transparent, var(--c-bg));
  z-index: 2;
}
.hero-split__content {
  max-width: 640px;
}
.hero-split__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--c-border);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--c-text-soft);
  box-shadow: var(--shadow-sm);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
  position: relative;
}
.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-primary);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}
.hero-split__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--c-text);
  font-style: italic;
}
.hero-split__title .text-grad {
  font-style: italic;
}
.hero-split__subtitle {
  font-size: 20px;
  line-height: 1.55;
  color: var(--c-text-soft);
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 400;
}
.hero-split__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-split__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 600px;
  padding-top: 36px;
  border-top: 2px solid var(--c-border);
}
.stat__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  font-style: italic;
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.4;
}

/* Right: image with subtle parallax */
.hero-split__image {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-dark);
}
.hero-split__image-bg {
  position: absolute;
  inset: -10%;
  background-image: url('assets/v2/hero-love.png');
  background-size: cover;
  background-position: center;
  will-change: transform, filter, opacity;
  opacity: 1;
  filter: saturate(1.1);
  transform: scale(1.15);
  transition: opacity 1.5s cubic-bezier(.16, 1, .3, 1), filter 1.5s cubic-bezier(.16, 1, .3, 1);
}
.hero-split__image-bg.is-loaded {
  opacity: 1;
  filter: saturate(1.1);
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-split__image-bg {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
  }
}
.hero-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 115, 74, .2) 100%);
}
.hero-split__image-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(26, 15, 26, .85);
  backdrop-filter: blur(20px);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .15);
}
.hero-split__image-caption svg { color: var(--c-rose); flex-shrink: 0; }

/* ============================================ */
/* MOBILE HERO — photo first, then text         */
/* ============================================ */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh auto;
  }
  .hero-split__image {
    order: 1;
    min-height: 50vh;
  }
  .hero-split__text {
    order: 2;
    padding: 40px 0 64px;
  }
  .hero-split__text::before { display: none; }
  .hero-split__image-caption {
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-rows: 38vh auto;
  }
  .hero-split__image {
    min-height: 38vh;
  }
  .hero-split__title {
    font-size: clamp(36px, 11vw, 56px);
    margin-bottom: 20px;
  }
  .hero-split__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .hero-split__badge {
    margin-bottom: 18px;
    padding: 7px 12px;
    font-size: 11px;
  }
  .hero-split__cta {
    margin-bottom: 32px;
    flex-direction: column;
    gap: 10px;
  }
  .hero-split__cta .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
  .hero-split__stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
  }
  .stat__num {
    font-size: 28px;
  }
  .stat__label {
    font-size: 11px;
  }
  .hero-split__image-caption {
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 11px;
    padding: 8px 12px;
  }
  .hero-split__text {
    padding: 32px 0 56px;
  }
}

@media (max-width: 480px) {
  .hero-split {
    grid-template-rows: 35vh auto;
  }
  .hero-split__image {
    min-height: 35vh;
  }
  .hero-split__title {
    font-size: clamp(32px, 10vw, 48px);
  }
}

/* ============================================ */
/* STATEMENT: Bold editorial quote              */
/* ============================================ */
.statement {
  padding: 140px 0;
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 115, 74, .2), transparent 70%);
  pointer-events: none;
}
.statement__num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
}
.statement__text {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  font-style: italic;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.statement__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-text-inv-soft);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
  perspective: 1200px;
}
.service-card {
  position: relative;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform 0.3s var(--ease-bounce), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--c-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 115, 74, .12), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card--featured {
  border-color: var(--c-primary);
  background: linear-gradient(180deg, #FBE5D6 0%, #FFFBF5 60%);
}
.service-card--featured::before { transform: scaleX(1); background: var(--c-primary); }
.service-card__tag {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--grad-sunset);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
}
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent, var(--c-primary)) 14%, white);
  color: var(--accent, var(--c-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transform: translateZ(20px);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  font-style: italic;
  transform: translateZ(15px);
  color: var(--c-text);
}
.service-card__text {
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  transform: translateZ(10px);
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
  font-style: italic;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  transition: all var(--transition);
}
.service-card__link:hover { color: var(--c-primary); gap: 12px; }

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col__media {
  position: relative;
}
.two-col__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-warm);
  transition: transform 0.6s var(--ease-bounce);
}
.two-col__media:hover img { transform: scale(1.02); }

/* Gallery variant — main + secondary image */
.two-col__media--gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.two-col__media--gallery .two-col__media-main {
  border-radius: var(--radius-xl);
}
.two-col__media--gallery .two-col__media-secondary {
  border-radius: var(--radius-lg);
  height: 240px;
  object-fit: cover;
}
.two-col__media--gallery .floating-card {
  bottom: -28px;
  left: -28px;
}

.floating-card {
  position: absolute;
  bottom: -28px; left: -28px;
  background: white;
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.floating-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad-rose);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-card__value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-text);
  font-style: italic;
}
.floating-card__label {
  font-size: 12px;
  color: var(--c-text-light);
}

/* ===== FEATURES ===== */
.features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-rose);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}
.feature strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-text);
}
.feature p {
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 1.55;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 64px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--grad-sunset);
}
.timeline__item {
  position: relative;
  margin-bottom: 44px;
}
.timeline__item:last-child { margin-bottom: 0; }
.timeline__num {
  position: absolute;
  left: -64px;
  top: 0;
  width: 52px; height: 52px;
  background: white;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  z-index: 1;
  font-style: italic;
  transition: all var(--transition);
}
.timeline__item:hover .timeline__num {
  background: var(--grad-sunset);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}
.timeline__body {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: all var(--transition);
}
.timeline__item:hover .timeline__body {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.timeline__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  font-style: italic;
  color: var(--c-text);
}
.timeline__text {
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.timeline__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================================ */
/* PHOTO BANNER: Full-width emotional images     */
/* ============================================ */
.photo-banner {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-bg-dark);
}
.photo-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  animation: bannerZoom 20s ease-in-out infinite alternate;
}
@keyframes bannerZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 15, 26, .55) 0%, rgba(26, 15, 26, .75) 100%);
}
.photo-banner__overlay--light {
  background: linear-gradient(180deg, rgba(26, 15, 26, .4) 0%, rgba(26, 15, 26, .7) 100%);
}
.photo-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.photo-banner__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.2;
  font-weight: 600;
  font-style: italic;
  color: white;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

/* ============================================ */
/* TIMELINE WITH IMAGE THUMBNAILS                */
/* ============================================ */
.timeline__body--with-img {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 28px;
  align-items: stretch;
}
.timeline__content {
  display: flex;
  flex-direction: column;
}
.timeline__thumb {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  min-height: 160px;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-bounce);
}
.timeline__item:hover .timeline__thumb {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .photo-banner {
    height: 50vh;
    min-height: 360px;
  }
  .photo-banner__bg {
    background-attachment: scroll;
  }
  .timeline__body--with-img {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline__thumb {
    min-height: 180px;
    order: -1;
  }
}

/* ============================================ */
/* BIG QUOTE: Emotional break                   */
/* ============================================ */
.big-quote {
  padding: 140px 0;
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-quote::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 155, 140, .2), transparent 70%);
  pointer-events: none;
}
.big-quote__icon {
  color: var(--c-gold);
  margin-bottom: 32px;
  opacity: 0.6;
}
.big-quote__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 48px;
  position: relative;
}
.big-quote__author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.big-quote__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-sunset);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  font-family: var(--font-display);
  font-style: italic;
}
.big-quote__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text-inv);
  text-align: left;
}
.big-quote__case {
  font-size: 13px;
  color: var(--c-text-inv-soft);
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.price-card {
  position: relative;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card--featured {
  border-color: var(--c-primary);
  background: linear-gradient(180deg, #FBE5D6 0%, #FFFBF5 60%);
  box-shadow: var(--shadow-md);
}
.price-card__tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-sunset);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
}
.price-card__header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  font-style: italic;
  color: var(--c-text);
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  font-style: italic;
}
.price-card--featured .price-card__price {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__period {
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 6px;
}
.price-card__list {
  flex: 1;
  margin-bottom: 32px;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--c-text-soft);
  padding: 9px 0;
}
.price-card__list svg { color: var(--c-primary); flex-shrink: 0; }
.pricing__note {
  text-align: center;
  color: var(--c-text-light);
  font-size: 14px;
}

/* ===== STORIES ===== */
.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.story {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--c-border);
}
.story:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.story__img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.story__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.4) 100%);
}
.story__body { padding: 32px; }
.story__stars {
  display: flex;
  gap: 2px;
  color: #FFB400;
  margin-bottom: 18px;
}
.story__quote {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  margin-bottom: 26px;
  font-style: italic;
}
.story__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}
.story__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-sunset);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-display);
  font-style: italic;
}
.story__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.story__case {
  font-size: 12px;
  color: var(--c-text-light);
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq__item[open] {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-style: italic;
  color: var(--c-text);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  color: var(--c-primary);
  transition: transform var(--transition);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 28px 28px;
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 155, 140, .3), transparent 70%);
  pointer-events: none;
}
.cta-box {
  background: var(--c-bg-dark);
  border-radius: var(--radius-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 115, 74, .35) 0%, transparent 70%);
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
}
.cta-box__content { color: white; position: relative; z-index: 1; }
.cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 20px 0;
  font-style: italic;
}
.cta-box__text {
  font-size: 18px;
  color: rgba(255, 251, 245, .85);
  margin-bottom: 32px;
  line-height: 1.65;
}
.cta-box__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-box__contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-gold);
  transition: color var(--transition);
}
.cta-box__contact:hover { color: white; }

.cta-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.cta-form__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  font-style: italic;
  color: var(--c-text);
}
.form-row { margin-bottom: 14px; }
.form-row input,
.form-row select {
  width: 100%;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 15px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  color: var(--c-text);
  transition: all var(--transition);
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 115, 74, .12);
}
.form-note {
  font-size: 12px;
  color: var(--c-text-light);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  display: none;
  margin-top: 18px;
  padding: 18px;
  background: var(--c-primary-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-primary);
  align-items: center;
  gap: 16px;
}
.form-success.show { display: flex; }
.form-success__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-sunset);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.form-success strong { display: block; font-size: 15px; color: var(--c-text); }
.form-success p { font-size: 13px; color: var(--c-text-soft); margin: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--c-bg-dark);
  color: var(--c-text-inv-soft);
  padding: 96px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 115, 74, .2), transparent 70%);
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  margin-bottom: 64px;
  position: relative;
}
.logo--footer .logo__text { color: white; }
.footer__tagline {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 380px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--grad-sunset);
  color: white;
  transform: translateY(-3px);
}
.footer__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  font-style: italic;
}
.footer__list li { margin-bottom: 12px; }
.footer__list a {
  font-size: 14px;
  color: var(--c-text-inv-soft);
  transition: color var(--transition);
}
.footer__list a:hover { color: var(--c-gold); }
.footer__list--contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--c-text-inv-soft);
}
.footer__list--contacts svg { color: var(--c-gold); flex-shrink: 0; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--c-border-dark);
  font-size: 13px;
}
.footer__legal { display: flex; gap: 28px; }
.footer__legal a { color: var(--c-text-inv-soft); transition: color var(--transition); }
.footer__legal a:hover { color: var(--c-gold); }

/* === Credit link "Создано с любовью LIKE-WEB.RU" === */
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-inv-soft);
  text-decoration: none;
  transition: opacity var(--transition);
}
.footer__credit:hover { opacity: 0.85; }

.footer__credit-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  background: linear-gradient(
    90deg,
    #B8854A 0%,
    #D4A574 20%,
    #F5D9A8 40%,
    #FFE9B8 50%,
    #F5D9A8 60%,
    #D4A574 80%,
    #B8854A 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 3s linear infinite;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-bounce), transform 0.8s var(--ease-bounce), filter 0.8s ease;
  will-change: opacity, transform;
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="down"] { transform: translateY(-40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-bounce), transform 0.6s var(--ease-bounce);
}
[data-reveal-stagger].visible > * {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-stagger].visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-reveal-stagger].visible > *:nth-child(4) { transition-delay: 0.35s; }
[data-reveal-stagger].visible > *:nth-child(5) { transition-delay: 0.45s; }
[data-reveal-stagger].visible > *:nth-child(6) { transition-delay: 0.55s; }
[data-reveal-stagger].visible > *:nth-child(7) { transition-delay: 0.65s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 56px; }
  .features { gap: 24px; }
  .cta-box { grid-template-columns: 1fr; gap: 48px; padding: 56px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }

  .nav {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 16px; }
  .nav__cta { margin: 8px 0 0; }
  .burger { display: flex; }

  .hero-split__title { font-size: clamp(40px, 12vw, 64px); }
  .hero-split__stats { grid-template-columns: 1fr; gap: 24px; }
  .stat__num { font-size: 36px; }

  .statement { padding: 80px 0; }
  .statement__text { font-size: clamp(28px, 7vw, 40px); }

  .big-quote { padding: 80px 0; }
  .big-quote__text { font-size: clamp(24px, 6vw, 36px); }

  .timeline { padding-left: 52px; }
  .timeline__num { left: -52px; width: 44px; height: 44px; font-size: 15px; }
  .timeline::before { left: 21px; }

  .cta-box { padding: 36px 28px; }
  .cta-form { padding: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-split__cta { flex-direction: column; }
  .hero-split__cta .btn { width: 100%; }
  .topbar__text { font-size: 12px; }
}

/* ============================================ */
/* EMERGENCY BLOCK                                */
/* ============================================ */
.emergency {
  padding: 80px 0;
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
}
.emergency__box {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 107, 107, .15) 0%, rgba(212, 115, 74, .15) 100%);
  border: 2px solid rgba(255, 107, 107, .3);
  border-radius: var(--radius-xl);
  padding: 56px;
  overflow: hidden;
}
.emergency__pulse {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 107, .2), transparent 60%);
  pointer-events: none;
  animation: emergencyPulse 3s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.emergency__content { position: relative; z-index: 1; color: white; }
.emergency__badge {
  display: inline-block;
  background: var(--c-coral);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.emergency__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 20px;
}
.emergency__text {
  font-size: 18px;
  color: rgba(255, 251, 245, .9);
  margin-bottom: 28px;
  line-height: 1.6;
}
.emergency__steps {
  list-style: none;
  counter-reset: step;
  margin-bottom: 32px;
}
.emergency__steps li {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  margin-bottom: 14px;
  color: rgba(255, 251, 245, .95);
  font-size: 16px;
  line-height: 1.5;
}
.emergency__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 32px; height: 32px;
  background: var(--c-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
}
.emergency__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================ */
/* COMPARISON TABLE                               */
/* ============================================ */
.comparison-table {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 720px;
}
.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 15px;
}
.comparison-table th {
  background: var(--c-bg-alt);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--c-text);
  font-size: 17px;
}
.comparison-table th.comparison-table__featured,
.comparison-table td.comparison-table__featured {
  background: var(--c-primary-soft);
  position: relative;
}
.comparison-table th.comparison-table__featured {
  color: var(--c-primary);
}
.comparison-table td.comparison-table__featured {
  font-weight: 600;
  color: var(--c-text);
}
.comparison-note {
  text-align: center;
  color: var(--c-text-soft);
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.comparison-note strong { color: var(--c-primary); }

/* ============================================ */
/* CERTIFICATE CARD                               */
/* ============================================ */
.certificate-list {
  list-style: none;
  margin: 32px 0;
}
.certificate-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--c-text-soft);
}
.certificate-list svg { color: var(--c-primary); flex-shrink: 0; }

.certificate-card {
  background: linear-gradient(180deg, #FFFBF5 0%, #FFF5EC 100%);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.certificate-card::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: 16px; bottom: 16px;
  border: 1px solid var(--c-gold);
  border-radius: calc(var(--radius-lg) - 16px);
  pointer-events: none;
  opacity: 0.4;
}
.certificate-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--c-border);
  margin-bottom: 24px;
}
.certificate-card__logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.certificate-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: var(--c-text);
}
.certificate-card__subtitle {
  font-size: 13px;
  color: var(--c-text-light);
}
.certificate-card__body { position: relative; }
.certificate-card__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 15px;
}
.certificate-card__row span { color: var(--c-text-light); }
.certificate-card__row strong { color: var(--c-text); font-weight: 600; }
.certificate-card__seal {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--c-primary);
  color: white;
  padding: 10px 18px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-glow);
}

/* ============================================ */
/* FACTS GRID                                     */
/* ============================================ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.fact-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.fact-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
  box-shadow: var(--shadow-lg);
}
.fact-card__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}
.fact-card p {
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================ */
/* TELEGRAM CTA                                   */
/* ============================================ */
.telegram-cta {
  padding: 64px 0;
  background: var(--c-bg-alt);
}
.telegram-cta__box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.telegram-cta__icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.telegram-cta__content { flex: 1; min-width: 280px; }
.telegram-cta__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
}
.telegram-cta__text {
  color: var(--c-text-soft);
  font-size: 16px;
  line-height: 1.55;
}

/* ============================================ */
/* SCENARIO BUTTONS (form)                        */
/* ============================================ */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-style: italic;
}
.scenario-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.scenario-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.3;
}
.scenario-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.scenario-btn:hover {
  border-color: var(--c-primary);
  background: white;
}
.scenario-btn input:checked + .scenario-btn__text,
.scenario-btn:has(input:checked) {
  border-color: var(--c-primary);
  background: var(--c-primary-soft);
  color: var(--c-text);
  font-weight: 600;
}
.scenario-btn__icon {
  font-size: 18px;
  flex-shrink: 0;
}
.scenario-btn__text {
  flex: 1;
}

/* ============================================ */
/* COOKIE BANNER                                  */
/* ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-bounce), opacity 0.4s;
}
.cookie-banner--show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 4px;
  color: white;
}
.cookie-banner__text a {
  color: var(--c-gold);
  text-decoration: underline;
}
.cookie-banner__buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .emergency__box { padding: 32px 24px; }
  .emergency__title { font-size: 28px; }
  .emergency__cta { flex-direction: column; }
  .emergency__cta .btn { width: 100%; }
  .scenario-buttons { grid-template-columns: 1fr; }
  .telegram-cta__box { padding: 28px; flex-direction: column; text-align: center; }
  .cookie-banner__content { flex-direction: column; align-items: stretch; }
  .cookie-banner__buttons { flex-direction: column; }
  .cookie-banner__buttons .btn { width: 100%; }
  .certificate-card { padding: 28px; }
}
