/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #f8f9fb;
  --color-white: #ffffff;
  --color-text: #1a1d26;
  --color-text-muted: #5c6370;
  --color-accent: #2d5a8e;
  --color-accent-dark: #1e3f66;
  --color-accent-light: #e8f0f8;
  --color-border: #e2e6ed;
  --color-card: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 29, 38, 0.06);
  --shadow-lg: 0 12px 48px rgba(26, 29, 38, 0.1);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1120px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.header--scrolled {
  box-shadow: var(--shadow);
}

.header-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}

.header--scrolled .header-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.logo:hover { color: var(--color-accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav__link:hover { color: var(--color-accent); }

.nav__link--cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
}

.nav__link--cta:hover {
  background: var(--color-accent-dark);
  color: #fff !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff !important;
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent) !important;
  border: 2px solid var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff !important;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text) !important;
  border: 2px solid var(--color-border);
}

.btn--outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
}

.btn--sm {
  padding: 12px 20px;
  font-size: 14px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.15s;
}

.case-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.case-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.case-card__result {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  line-height: 1.3;
}

.case-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.case-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
}

.case-card__link:hover {
  color: var(--color-accent-dark);
}

.cases-disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: -24px 0 28px;
  max-width: 640px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}

.review-card__stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.video-block {
  margin-bottom: 8px;
}

.video-block__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  border-radius: var(--radius);
  color: #fff !important;
  transition: transform 0.15s, box-shadow 0.2s;
}

.video-block__link:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.video-block__play {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

.video-block__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-block__content strong {
  font-size: 17px;
}

.video-block__content span {
  font-size: 14px;
  opacity: 0.85;
}

.review-shots {
  margin-bottom: 32px;
}

.review-shots__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.review-shots__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.review-shots__grid a {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.15s;
}

.review-shots__grid a:hover {
  transform: scale(1.02);
}

.review-shots__grid img {
  display: block;
  height: 200px;
  width: auto;
  object-fit: cover;
}

.video-embed {
  margin-bottom: 8px;
}

.video-embed__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.video-embed__player {
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius);
  background: #000;
  display: block;
}

.video-embed__note {
  margin-top: 10px;
  font-size: 14px;
}

.video-embed__note a {
  font-weight: 600;
}

/* Mid contacts */
.section--mid-contacts {
  background: var(--color-accent-light);
  padding: 56px 0;
}

.mid-contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-contacts__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mid-contacts__subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
}

.mid-contacts__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(45, 90, 142, 0.4);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.sticky-cta.is-visible {
  display: block;
}

.sticky-cta:hover {
  background: var(--color-accent-dark);
  color: #fff !important;
  transform: translateX(-50%) translateY(-2px);
}

/* Sections */
.hero {
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.hero__note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--color-accent);
  line-height: 1.5;
}

.hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.hero__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__quick {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__quick-label {
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-accent);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.hero__quick-link:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.hero__trust {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-top: 4px;
  border-top: 1px solid var(--color-border);
}

.hero__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__photo {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Punch lines — creative block */
.punch {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: #0c1018;
  color: #eef2f8;
}

.punch__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.punch__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: punch-float 12s ease-in-out infinite;
}

.punch__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, #2d5a8e 0%, transparent 70%);
}

.punch__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, #c0392b 0%, transparent 70%);
  animation-delay: -6s;
}

.punch__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

@keyframes punch-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 16px) scale(1.08); }
}

.punch__inner {
  position: relative;
  z-index: 1;
}

.punch__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

.punch__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 12px #e74c3c;
  animation: punch-pulse 2s ease-in-out infinite;
}

@keyframes punch-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.punch__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.punch__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px 24px;
  align-items: start;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(28px) skewY(1deg);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s,
              background 0.3s;
}

.punch.is-visible .punch__item {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

.punch.is-visible .punch__item:nth-child(1) { transition-delay: 0.05s; }
.punch.is-visible .punch__item:nth-child(2) { transition-delay: 0.15s; }
.punch.is-visible .punch__item:nth-child(3) { transition-delay: 0.25s; }
.punch.is-visible .punch__item:nth-child(4) { transition-delay: 0.35s; }

.punch__item:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}

.punch__item--alt {
  margin-left: clamp(0px, 5vw, 48px);
}

.punch__item--accent {
  border-color: rgba(45, 90, 142, 0.5);
  background: linear-gradient(135deg, rgba(45,90,142,0.25) 0%, rgba(255,255,255,0.04) 100%);
}

.punch__num {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}

.punch__text {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
}

.punch__strike {
  position: relative;
  display: inline;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.punch__strike::after {
  content: '';
  position: absolute;
  left: -2%;
  top: 52%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
  border-radius: 2px;
  animation: punch-strike 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
  animation-play-state: paused;
}

.punch.is-visible .punch__strike::after {
  animation-play-state: running;
}

@keyframes punch-strike {
  to { width: 104%; }
}

.punch__dash {
  color: rgba(255,255,255,0.35);
  margin: 0 0.15em;
}

.punch__em {
  font-style: normal;
  color: #f39c12;
  text-shadow: 0 0 24px rgba(243, 156, 18, 0.35);
}

.punch__highlight {
  position: relative;
  color: #fff;
}

.punch__highlight::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 40%;
  background: rgba(231, 76, 60, 0.35);
  z-index: -1;
  transform: skewX(-6deg);
}

.punch__wobble {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #a8c4e8 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: punch-shimmer 4s linear infinite;
}

@keyframes punch-shimmer {
  to { background-position: 200% center; }
}

.punch__glow {
  display: inline-block;
  margin-top: 0.25em;
  background: linear-gradient(90deg, #7eb8ff, #fff, #7eb8ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: punch-shimmer 3s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .punch__orb,
  .punch__eyebrow-dot,
  .punch__wobble,
  .punch__glow {
    animation: none;
  }

  .punch__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .punch__strike::after {
    width: 104%;
    animation: none;
  }

  .punch__wobble,
  .punch__glow {
    -webkit-text-fill-color: #fff;
    color: #fff;
    background: none;
  }
}

@media (max-width: 640px) {
  .punch {
    padding: 56px 0 64px;
  }

  .punch__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 20px;
  }

  .punch__item--alt {
    margin-left: 0;
  }

  .punch__num {
    font-size: 11px;
  }
}

/* Manifest — second creative block */
.manifest {
  position: relative;
  padding: 64px 0 72px;
  background: linear-gradient(165deg, #eef4fb 0%, #fff 45%, #f0f5fa 100%);
  overflow: hidden;
}

.manifest::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.manifest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.manifest__panel {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.manifest.is-visible .manifest__panel--about {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.manifest.is-visible .manifest__panel--cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.manifest__panel--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(145deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  border-color: transparent;
  color: #fff;
}

.manifest__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.manifest__lead {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.manifest__reject {
  position: relative;
  display: inline;
}

.manifest__reject-text {
  display: inline;
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-color: #e74c3c;
  text-decoration-thickness: 2px;
}

.manifest__stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg) scale(0);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e74c3c;
  border: 2px solid #e74c3c;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.manifest.is-visible .manifest__stamp {
  animation: manifest-stamp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

@keyframes manifest-stamp {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-12deg) scale(2); }
  70% { opacity: 1; transform: translate(-50%, -50%) rotate(-12deg) scale(0.95); }
  100% { opacity: 0.92; transform: translate(-50%, -50%) rotate(-12deg) scale(1); }
}

.manifest__truth {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.manifest__pain {
  color: #c0392b;
  position: relative;
}

.manifest__pain::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: rgba(192, 57, 43, 0.2);
  z-index: -1;
}

.manifest__cost {
  color: var(--color-accent);
  font-weight: 700;
}

.manifest__journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.manifest__journey-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.manifest__journey-tag--light {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.manifest__journey-text {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.manifest__chaos {
  display: inline-block;
  color: #ffb4a2;
  animation: manifest-jitter 3s ease-in-out infinite;
}

@keyframes manifest-jitter {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  25% { transform: translate(-1px, 1px) rotate(-0.5deg); }
  50% { transform: translate(1px, -1px) rotate(0.5deg); }
  75% { transform: translate(-1px, -1px) rotate(-0.3deg); }
}

.manifest__map {
  display: inline-block;
  background: linear-gradient(90deg, #fff, #a8d4ff, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: punch-shimmer 3s linear infinite;
}

.manifest__journey-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.6);
}

.manifest__journey-line {
  display: block;
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

.manifest__journey-head {
  font-size: 22px;
  animation: manifest-arrow 1.5s ease-in-out infinite;
}

@keyframes manifest-arrow {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(6px); opacity: 1; }
}

.manifest__btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fff !important;
  color: var(--color-accent-dark) !important;
  border: none;
  z-index: 1;
}

.manifest__btn:hover {
  background: #f0f6ff !important;
  color: var(--color-accent-dark) !important;
}

.manifest__btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: manifest-shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes manifest-shine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

@media (prefers-reduced-motion: reduce) {
  .manifest__chaos,
  .manifest__map,
  .manifest__journey-head,
  .manifest__btn-shine {
    animation: none;
  }

  .manifest__panel {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .manifest__stamp {
    opacity: 0.92;
    transform: translate(-50%, -50%) rotate(-12deg) scale(1);
    animation: none;
  }

  .manifest__map {
    -webkit-text-fill-color: #fff;
    color: #fff;
    background: none;
  }
}

@media (max-width: 768px) {
  .manifest__grid {
    grid-template-columns: 1fr;
  }

  .manifest__journey {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .manifest__journey-arrow {
    flex-direction: row;
    justify-content: center;
  }

  .manifest__journey-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5));
  }

  .manifest__journey-head {
    transform: rotate(90deg);
  }

  @keyframes manifest-arrow {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(6px); }
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--light {
  background: var(--color-white);
}

.section--accent {
  background: var(--color-accent);
  color: #fff;
}

.section--contacts {
  background: linear-gradient(160deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  color: #fff;
}

.section__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__title--light { color: #fff; }

.section__subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 640px;
}

.section--accent .section__subtitle,
.section--accent .text-light { color: rgba(255,255,255,0.85); }

.section__footer-text {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-muted);
}

.text-light {
  font-size: 18px;
  margin-bottom: 32px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--color-text);
}

/* Lists */
.check-list {
  list-style: none;
  margin: 0 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 17px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.quote {
  border-left: 4px solid var(--color-accent);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--color-accent-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  font-style: italic;
  color: var(--color-text);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: var(--shadow); }

.card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}

.card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Approach box */
.approach-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.approach-box__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.approach-box__text {
  font-size: 16px;
  opacity: 0.9;
}

/* Topic list */
.topic-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.topic-list li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.45;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step__text {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
}

.cta-block__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-block__text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.cta-block__note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Won't grid */
.wont-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.wont-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.wont-item__icon {
  flex-shrink: 0;
  font-size: 20px;
  color: #c0392b;
  font-weight: 700;
  line-height: 1.4;
}

.wont-item__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.wont-item__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.about__intro {
  font-size: 18px;
  margin-bottom: 16px;
}

.about__text {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.stat__value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* FAQ */
.faq { margin-top: 32px; }

.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: 4px 0;
}

.faq__question {
  font-size: 17px;
  font-weight: 600;
  padding: 18px 32px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Contacts */
.contacts__subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.contacts__hint {
  font-size: 14px;
  opacity: 0.75;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 520px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: #fff !important;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  position: relative;
}

.contact-btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff !important;
  transform: translateY(-2px);
}

.contact-btn__label {
  font-size: 13px;
  opacity: 0.8;
}

.contact-btn__name {
  font-size: 18px;
  font-weight: 700;
}

.contact-btn--email {
  cursor: default;
}

.contact-btn__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.contact-btn__email:hover {
  background: rgba(255,255,255,0.15);
}

.copy-icon { opacity: 0.7; }

.copy-toast {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.contacts__note {
  font-size: 15px;
  opacity: 0.85;
  max-width: 640px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #141820;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
  font-size: 14px;
}

.footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer a:hover { color: #fff; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer__sep { opacity: 0.4; }

.footer__disclaimer {
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 800px;
}

.footer__copy {
  font-size: 13px;
  opacity: 0.5;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 14px 24px;
  background: rgba(20, 24, 32, 0.96);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar__text {
  margin: 0;
  max-width: 720px;
  text-align: center;
}

.cookie-bar__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-bar__btn {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--color-accent-dark);
  background: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-bar__btn:hover {
  opacity: 0.9;
}

body.has-cookie-bar {
  padding-bottom: 56px;
}

body.has-cookie-bar.has-sticky-cta {
  padding-bottom: 120px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__photo-wrap {
    max-width: 360px;
    margin: 32px auto 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 12px 0;
    font-size: 16px;
  }

  .nav__link--cta {
    text-align: center;
    margin-top: 8px;
  }

  .section { padding: 56px 0; }

  .stats { grid-template-columns: 1fr; }

  .contacts-grid { grid-template-columns: 1fr 1fr; }

  .header-cta {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .sticky-cta.is-visible { display: block; }

  body.has-sticky-cta { padding-bottom: 80px; }

  body.has-cookie-bar.has-sticky-cta { padding-bottom: 140px; }

  .mid-contacts {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  .sticky-cta.is-visible { display: block; }

  body.has-sticky-cta { padding-bottom: 72px; }

  body.has-cookie-bar.has-sticky-cta { padding-bottom: 128px; }
}

@media (max-width: 480px) {
  .contacts-grid { grid-template-columns: 1fr; }

  .cards, .topic-list { grid-template-columns: 1fr; }
}
