/* ==========================================================================
   Components — Header, Hero, Problem, Services, FAQ, Footer, etc.
   ========================================================================== */

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: var(--sp-4) 0;
  transition: all var(--dur-slow) var(--ease);
}

.header--transparent {
  background: transparent;
}

.header--solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-3) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-text-inv);
  transition: color var(--dur) var(--ease);
}

.header--solid .header__logo {
  color: var(--c-text);
}

.header__logo-icon {
  width: 32px;
  height: 32px;
}

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

.header__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--dur) var(--ease);
}

.header__link:hover {
  color: #ffffff;
}

.header--solid .header__link {
  color: var(--c-text-sec);
}

.header--solid .header__link:hover {
  color: var(--c-primary);
}

.header__cta {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  background: var(--c-accent);
  color: var(--c-text);
  border-radius: var(--r-lg);
  transition: all var(--dur) var(--ease);
}

.header__cta:hover {
  background: var(--c-accent-hover);
  transform: translateY(-1px);
}

/* Burger (mobile) */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--c-text-inv);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.header--solid .header__burger span {
  background: var(--c-text);
}

/* Mobile menu */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-header) + 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
}

.header__mobile-menu.is-open {
  display: flex;
}

.header__mobile-menu a {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
}

.header__mobile-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  font-size: var(--fs-3xl);
  color: var(--c-text);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--c-hero-from), var(--c-hero-to));
  overflow: hidden;
  padding: var(--sp-24) 0 var(--sp-16);
}

/* Mesh gradient decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-full);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.6s var(--ease) 0.1s both;
}

.hero__title {
  color: var(--c-text-inv);
  font-size: var(--fs-5xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.6s var(--ease) 0.2s both;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(248, 250, 252, 0.7);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-8);
  animation: fadeUp 0.6s var(--ease) 0.3s both;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
  animation: fadeUp 0.6s var(--ease) 0.4s both;
}

.hero__stats {
  display: flex;
  gap: var(--sp-4);
  animation: fadeUp 0.6s var(--ease) 0.5s both;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
}

.hero__stat-value {
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--c-accent);
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero preview card */
.hero__preview {
  position: relative;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

/* --- Animated custom property for gauge conic-gradient --- */
@property --preview-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.preview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  backdrop-filter: blur(8px);
  animation: cardFloat 6s ease-in-out 5.5s infinite;
  position: relative;
  overflow: hidden;
}

/* Scan-line sweep on load */
.preview-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-primary), rgba(15, 118, 110, 0.6), transparent);
  box-shadow: 0 0 20px 6px rgba(15, 118, 110, 0.3);
  opacity: 0;
  animation: scanLine 2.5s ease-in-out 0.6s 1 forwards;
  pointer-events: none;
  z-index: 5;
}

@keyframes scanLine {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.preview-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-card__dots {
  display: flex;
  gap: 6px;
}

/* Dots — start dim, blink to life sequentially */
.preview-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.2;
}

.preview-card__dot--red {
  background: #ef4444;
  animation: dotBlink 0.4s ease 0.3s forwards;
}
.preview-card__dot--yellow {
  background: #f59e0b;
  animation: dotBlink 0.4s ease 0.5s forwards;
}
.preview-card__dot--green {
  background: #22c55e;
  animation: dotBlink 0.4s ease 0.7s forwards;
}

@keyframes dotBlink {
  0%   { opacity: 0.2; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.5); }
  100% { opacity: 1;   transform: scale(1); }
}

/* URL bar — typing cursor */
.preview-card__url {
  flex: 1;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Courier New', monospace;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
}

.preview-card__url--typing {
  border-right-color: rgba(255, 255, 255, 0.5);
  animation: cursorBlink 0.6s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { border-right-color: rgba(255, 255, 255, 0.5); }
  50%      { border-right-color: transparent; }
}

.preview-card__score {
  text-align: center;
  margin-bottom: var(--sp-6);
}

/* --- Gauge: animated conic-gradient via @property --- */
.preview-card__gauge {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto var(--sp-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  --preview-angle: 0deg;
  background: conic-gradient(
    #ef4444 0deg,
    #ef4444 var(--preview-angle),
    rgba(255, 255, 255, 0.08) var(--preview-angle)
  );
  animation: gaugeFill 2s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s forwards;
}

/* Pulsing glow ring after gauge fill */
.preview-card__gauge::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  opacity: 0;
  animation: gaugeGlow 2.5s ease-in-out 3.8s infinite;
}

@keyframes gaugeFill {
  to { --preview-angle: 108deg; }
}

@keyframes gaugeGlow {
  0%, 100% {
    box-shadow: 0 0 8px 0 rgba(239, 68, 68, 0);
    opacity: 0;
  }
  50% {
    box-shadow: 0 0 28px 8px rgba(239, 68, 68, 0.3);
    opacity: 1;
  }
}

/* Score number — pop in with overshoot */
.preview-card__gauge-value {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--c-text-inv);
  opacity: 0;
  transform: scale(0.4);
  animation: scorePopIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}

@keyframes scorePopIn {
  to { opacity: 1; transform: scale(1); }
}

.preview-card__gauge-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fadeIn 0.5s ease 2.2s forwards;
}

/* --- Violation cards: staggered slide-in from right --- */
.preview-card__violations {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.preview-card__violation {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-md);
  border-left: 3px solid;
  opacity: 0;
  transform: translateX(30px) scale(0.96);
  animation: violationSlideIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.preview-card__violation:nth-child(1) { animation-delay: 2.8s; }
.preview-card__violation:nth-child(2) { animation-delay: 3.1s; }
.preview-card__violation:nth-child(3) { animation-delay: 3.4s; }
.preview-card__violation:nth-child(4) { animation-delay: 3.7s; }

@keyframes violationSlideIn {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.preview-card__violation--critical { border-color: var(--c-red); }
.preview-card__violation--high { border-color: var(--c-amber); }
.preview-card__violation--medium { border-color: var(--c-yellow); }

.preview-card__violation-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* Badge with shimmer sweep */
.preview-card__violation-badge {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-left: auto;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.preview-card__violation-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: badgeShimmer 0.8s ease-in-out 4.5s 1 forwards;
}

@keyframes badgeShimmer {
  to { left: 200%; }
}

.preview-card__violation-badge--critical {
  background: var(--c-red-bg);
  color: var(--c-red);
}

.preview-card__violation-badge--high {
  background: var(--c-amber-bg);
  color: var(--c-amber);
}

.preview-card__violation-badge--medium {
  background: var(--c-yellow-bg);
  color: var(--c-yellow);
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .preview-card,
  .preview-card::after,
  .preview-card__dot,
  .preview-card__dot--red,
  .preview-card__dot--yellow,
  .preview-card__dot--green,
  .preview-card__gauge,
  .preview-card__gauge::before,
  .preview-card__gauge-value,
  .preview-card__gauge-label,
  .preview-card__violation,
  .preview-card__violation-badge::after,
  .preview-card__url--typing {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .preview-card__dot { opacity: 1; }
  .preview-card__gauge { --preview-angle: 108deg; }
}

/* ===== PROBLEM SECTION ===== */
.problem-card {
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-5);
  font-size: 1.75rem;
}

.problem-card__icon--red {
  background: var(--c-red-bg);
}

.problem-card__icon--amber {
  background: var(--c-amber-bg);
}

.problem-card__icon--yellow {
  background: var(--c-yellow-bg);
}

.problem-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.problem-card__fine {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-3);
}

.problem-card__fine--red {
  background: var(--c-red-bg);
  color: var(--c-red);
}

.problem-card__fine--amber {
  background: var(--c-amber-bg);
  color: var(--c-amber);
}

.problem-card__text {
  font-size: var(--fs-sm);
  color: var(--c-text-sec);
  line-height: var(--lh-normal);
}

.problem-card__ref {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* ===== CHECKS GRID ===== */
.check-card {
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
}

.check-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-md);
}

.check-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--c-primary-bg);
  margin-bottom: var(--sp-3);
  font-size: 1.25rem;
}

.check-card__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
  color: var(--c-text);
}

.check-card__text {
  font-size: var(--fs-sm);
  color: var(--c-text-sec);
  line-height: 1.5;
}

/* ===== PRICING / SERVICES ===== */
.pricing-card {
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--c-primary);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Популярный';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--sp-1) var(--sp-4);
  background: var(--c-primary);
  color: var(--c-text-inv);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-full);
}

.pricing-card__name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-sec);
  margin-bottom: var(--sp-6);
}

.pricing-card__price {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}

.pricing-card__price span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--c-text-muted);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: var(--sp-8);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-sec);
}

.pricing-card__feature::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--c-green-bg);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2322c55e' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light), var(--c-accent));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-text-inv);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.step__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-3);
}

.step__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
  color: var(--c-text);
}

.step__text {
  font-size: var(--fs-sm);
  color: var(--c-text-sec);
}

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

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.faq-item[open] {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color var(--dur) var(--ease);
}

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

.faq-item summary::after {
  content: '+';
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--c-text-muted);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
  margin-left: var(--sp-4);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--c-primary);
}

.faq-item__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--c-text-sec);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  animation: slideDown var(--dur) var(--ease);
}

/* ===== CONTACTS ===== */
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contacts__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.contacts__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-bg);
  border-radius: var(--r-lg);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contacts__label {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

.contacts__value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
}

.contacts__value a {
  color: var(--c-primary);
}

.contacts__value a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-text-inv);
  margin-bottom: var(--sp-4);
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text-inv);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur) var(--ease);
}

.footer__link:hover {
  color: var(--c-text-inv);
}

.footer__bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-6);
}

.footer__legal {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  max-width: 600px;
  line-height: var(--lh-normal);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--c-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--sp-5) 0;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.cookie-banner__text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--c-primary-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: all var(--dur) var(--ease);
}

.cookie-banner__btn--accept {
  background: var(--c-primary);
  color: var(--c-text-inv);
}

.cookie-banner__btn--accept:hover {
  background: var(--c-primary-light);
}

.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Responsive (components) ===== */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: var(--fs-4xl);
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__preview {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .steps::before {
    display: none;
  }

  .contacts__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

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

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