/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; /* Lenis handles smooth scroll */ }
body { overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --surface: #1a1a1a;
  --card: #161616;
  --border: #222222;
  --accent: #C8A96E;
  --accent-light: #e8c98e;
  --accent-dark: #A8894E;
  --white: #f5f0eb;
  --muted: #888888;
  --green: #2ecc71;
  --red: #e74c3c;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --container-max: 1200px;
  --nav-height: 72px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ===== BASE & TYPOGRAPHY ===== */
body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  cursor: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 2px;
}

em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

p { color: rgba(245, 240, 235, 0.7); }
strong { font-weight: 600; color: var(--white); }

::selection {
  background: var(--accent);
  color: var(--black);
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label-line {
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.section-label span:last-child {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Section Title */
.section-title {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 500px;
}

.section-header {
  margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: var(--black);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}

.btn--primary:hover::before {
  transform: translateX(0);
}

.btn--primary span,
.btn--primary svg {
  position: relative;
  z-index: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 240, 235, 0.2);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--dark {
  background: var(--black);
  color: var(--accent);
}

.btn--dark:hover {
  background: var(--dark);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  opacity: 0;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--accent);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--accent);
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.7);
  transition: color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--black);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 110;
}

.burger-line {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 42px;
  letter-spacing: 4px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  cursor: pointer;
}

.mobile-menu.active .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-cta {
  color: var(--accent);
  font-size: 32px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-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: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -100px;
  right: 10%;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -50px;
  left: 5%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-label-line {
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.hero-label span:last-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(56px, 7vw, 110px);
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1;
}

.hero-title em {
  font-size: 0.75em;
}

.hero-seo-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-title--slogan {
  font-size: clamp(56px, 5.5vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  isolation: isolate;
}

.hero-buttons .btn {
  position: relative;
  z-index: 1;
}

.hero-buttons .btn:hover {
  z-index: 2;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.hero-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.hero-stat-number,
.hero-stat-plus {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 4px;
  width: 100%;
}

/* Hero Right */
.hero-right {
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-image {
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--accent);
  color: var(--black);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-status {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}

/* ===== PAIN POINTS ===== */
.pain {
  padding: 120px 0;
  background: var(--dark);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pain-card {
  background: var(--card);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.pain-card:hover {
  background: var(--surface);
}

.pain-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.pain-card:hover .pain-accent {
  transform: scaleX(1);
}

.pain-number {
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--border);
  line-height: 1;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 16px;
}

.pain-card:hover .pain-number {
  color: rgba(200, 169, 110, 0.15);
}

.pain-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0;
}

.pain-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--black);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-experience-number {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--black);
  line-height: 1;
}

.about-experience-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-lead {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.85);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-credential {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-credential-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.about-credential span {
  font-size: 14px;
  color: rgba(245, 240, 235, 0.7);
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--dark);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.services-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--card);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card--featured {
  background: var(--accent);
  color: var(--black);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--black);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.service-card--featured .service-type {
  color: rgba(10, 10, 10, 0.5);
}

.service-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card--featured .service-name {
  color: var(--black);
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card--featured .service-desc {
  color: rgba(10, 10, 10, 0.6);
}

.service-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.service-features li {
  padding: 10px 0;
  font-size: 13px;
  color: rgba(245, 240, 235, 0.7);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card--featured .service-features li {
  color: rgba(10, 10, 10, 0.7);
  border-bottom-color: rgba(10, 10, 10, 0.15);
}

.service-arrow {
  color: var(--accent);
  font-weight: 600;
}

.service-card--featured .service-arrow {
  color: var(--black);
}

.service-price {
  margin-bottom: 20px;
}

.service-price-number {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.service-card--featured .service-price-number {
  color: var(--black);
}

.service-price-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.service-card--featured .service-price-unit {
  color: rgba(10, 10, 10, 0.5);
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 0;
  transition: padding-left 0.3s var(--ease-out-expo), color 0.3s ease;
}

.service-link:hover {
  padding-left: 6px;
}

.service-card--featured .service-link {
  color: var(--black);
}

/* ===== ONLINE TARIFFS ===== */
.online {
  padding: 120px 0;
  background: var(--black);
}

.online-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}

.online-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.online-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
}


/* Grid */
.online-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 24px;
}

/* Card */
.online-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo);
  position: relative;
}

.online-card:hover {
  transform: translateY(-4px);
}

.online-card.hidden {
  display: none;
}

/* Featured card */
.online-card--featured {
  border-top: 2px solid var(--accent);
  background: var(--surface);
}

.online-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.online-tariff-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.online-tariff-name {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.online-card--featured .online-tariff-name {
  color: var(--accent);
}

.online-price {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.online-price-number {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}

.online-card--featured .online-price-number {
  color: var(--accent);
}

.online-price-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

/* Features */
.online-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.online-features li {
  font-size: 13px;
  color: rgba(245, 240, 235, 0.7);
  padding-left: 20px;
  position: relative;
}

.online-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.online-feature--crossed {
  color: var(--muted) !important;
  text-decoration: line-through;
  opacity: 0.5;
}

.online-feature--crossed::before {
  content: '✕' !important;
  color: var(--muted) !important;
}

/* Slots badge */
.slots-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(200, 169, 110, 0.3);
  padding: 8px 14px;
  margin-bottom: 20px;
}

.slots-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* CTA */
.online-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.online-cta:hover {
  background: var(--accent);
  color: var(--black);
}

.online-cta--featured {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.online-cta--featured:hover {
  background: var(--accent-light);
}

/* Footnote */
.online-footnote {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.5px;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: var(--black);
}

.process-header {
  margin-bottom: 60px;
  max-width: 560px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  background: var(--card);
  padding: 40px 28px;
  position: relative;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--border);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.process-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0;
}

.process-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.process-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent);
  z-index: 2;
  background: var(--black);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.process-step:last-child .process-arrow {
  display: none;
}

/* ===== LEAD MAGNET ===== */
.lead {
  padding: 100px 0;
  background: var(--accent);
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 16px;
  display: block;
}

.lead-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
  line-height: 1.05;
}

.lead-title em {
  color: rgba(10, 10, 10, 0.7);
}

.lead-desc {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 30px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form .form-input {
  background: rgba(10, 10, 10, 0.15);
  border: 1px solid rgba(10, 10, 10, 0.2);
  color: var(--black);
}

.lead-form .form-input::placeholder {
  color: rgba(10, 10, 10, 0.4);
}

.lead-form .form-input:focus {
  border-color: var(--black);
}

/* Lead Right */
.lead-right-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lead-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.lead-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lead-benefit-icon {
  width: 32px;
  height: 32px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.lead-benefit span {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.lead-social-proof {
  font-size: 12px;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.45);
  letter-spacing: 0.5px;
}

/* ===== RESULTS / REVIEWS ===== */
.results {
  padding: 120px 0;
  background: var(--dark);
}

/* Review Cards */
.reviews-swiper {
  margin-bottom: 60px;
  padding-bottom: 40px;
}

.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.reviews-swiper .swiper-slide {
  height: auto;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.review-meta {
  font-size: 11px;
  color: var(--muted);
  display: block;
}

.review-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 16px;
}

.review-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 169, 110, 0.3);
  padding: 6px 14px;
  align-self: flex-start;
}

/* Swiper overrides */
.reviews-swiper .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.3;
  width: 8px;
  height: 8px;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* Results Strip */
.results-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--card);
  border: 1px solid var(--border);
}

.results-stat {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

.results-stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}

.results-stat-plus,
.results-stat-unit {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.results-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 8px;
  width: 100%;
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: var(--black);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.4s var(--ease-out-expo);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== CONSULTATION ===== */
.consultation {
  padding: 120px 0;
  background: var(--dark);
}

.consultation-box {
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.consultation-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.consultation-box::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.consultation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px;
  position: relative;
  z-index: 1;
}

.consultation-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}

.consultation-mini-stats {
  display: flex;
  gap: 30px;
}

.consultation-mini-stat {
  display: flex;
  flex-direction: column;
}

.consultation-mini-number {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.consultation-mini-number--white {
  color: var(--white);
}

.consultation-mini-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Consultation Form */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}

.form-legal {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.form-legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  font-size: 11px;
  color: var(--red);
  margin-top: -8px;
  display: none;
}

/* Success Message */
.success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--green);
  padding: 16px 20px;
  font-size: 13px;
}

.success-msg.visible {
  display: flex;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
}

.footer-contact {
  font-size: 13px;
  margin-top: 4px;
  color: var(--muted);
}

.footer-contact strong {
  color: var(--white);
}

.footer-contact a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.float-cta.visible {
  opacity: 1;
  visibility: visible;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.float-btn:hover {
  transform: translateY(-3px);
}

.float-btn--tg {
  background: #229ED9;
  color: #fff;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.3);
}

.float-btn--tg:hover {
  box-shadow: 0 8px 30px rgba(34, 158, 217, 0.4);
}

.float-btn--cta {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
  animation: float-pulse 2s ease-in-out infinite;
}

.float-btn--cta:hover {
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.4);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(200, 169, 110, 0.5); }
}

/* ===== EXIT POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 48px;
  max-width: 440px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-expo);
}

.popup-overlay.visible .popup {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: var(--white);
}

.popup-title {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 12px;
}

.popup-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.popup-btn {
  margin-bottom: 12px;
}

.popup-note {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

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

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-accept {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 10px 24px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-accept:hover {
  background: var(--accent-light);
}

/* ===== ANIMATIONS (initial states for GSAP) ===== */
.reveal-up { opacity: 0; transform: translateY(60px); }
.reveal-left { opacity: 0; transform: translateX(-60px); }
.reveal-right { opacity: 0; transform: translateX(60px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* ===== MEDIA: TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .container { padding: 0 30px; }

  /* Nav */
  .nav-inner { padding: 0 30px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(48px, 10vw, 80px); }
  .hero-stats { gap: 24px; }

  /* Pain */
  .pain { padding: 80px 0; }
  .pain-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .about { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 400px; }

  /* Services */
  .services { padding: 80px 0; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-desc { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }

  /* Online */
  .online { padding: 80px 0; }
  .online-header { flex-direction: column; align-items: flex-start; }
  .online-header-right { align-items: flex-start; }
  .online-desc { text-align: left; }
  .online-grid { grid-template-columns: 1fr; }

  /* Process */
  .process { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-arrow { display: none; }

  /* Lead */
  .lead { padding: 80px 0; }
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Results */
  .results { padding: 80px 0; }
  .results-strip { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .faq { padding: 80px 0; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Consultation */
  .consultation { padding: 80px 0; }
  .consultation-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 30px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 30px; }

  /* Float CTA */
  .float-cta { bottom: 20px; right: 20px; }

  /* Cookie */
  .cookie-banner { padding: 16px 30px; flex-direction: column; text-align: center; }

  /* Cursor */
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
  .btn, .nav-link, .nav-cta, .nav-logo, .float-btn, .faq-question, .service-link, .popup-close, .cookie-accept { cursor: pointer; }

  section { padding-left: 0 !important; padding-right: 0 !important; }
}

/* ===== MEDIA: MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-title { font-size: clamp(40px, 12vw, 64px); }
  .hero-subtitle { font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat-number, .hero-stat-plus { font-size: 32px; }

  .section-title { font-size: clamp(32px, 8vw, 48px); }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 30px 24px; }

  .about-experience { width: 120px; height: 120px; bottom: -20px; right: -15px; }
  .about-experience-number { font-size: 42px; }

  .process-steps { grid-template-columns: 1fr; }

  .results-strip { grid-template-columns: 1fr 1fr; }
  .results-stat-number { font-size: 42px; }

  .form-row { grid-template-columns: 1fr; }

  .consultation-mini-stats { flex-wrap: wrap; gap: 20px; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { gap: 16px; }

  .mobile-menu-link { font-size: 32px; }
}

/* ===== MEDIA: SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .hero-title { font-size: clamp(36px, 14vw, 52px); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .btn { padding: 14px 24px; font-size: 11px; }

  .section-title { font-size: clamp(28px, 10vw, 40px); }

  .lead-title { font-size: clamp(28px, 8vw, 40px); }

  .consultation-inner { padding: 30px 20px; }

  .popup { padding: 32px 24px; margin: 0 20px; }
  .popup-title { font-size: 28px; }

  .float-cta { bottom: 16px; right: 16px; left: 16px; }
  .float-btn { justify-content: center; }
}

/* ===== MEDIA: PREFERS-REDUCED-MOTION ===== */
/* ===== LIGHT THEME ===== */
@media (prefers-color-scheme: light) {
  :root {
    --black: #f5f0eb;
    --dark: #ede8e2;
    --surface: #e8e3dd;
    --card: #ffffff;
    --border: #d5d0ca;
    --accent: #A8894E;
    --accent-light: #C8A96E;
    --accent-dark: #8a6f3a;
    --white: #1a1a1a;
    --muted: #666666;
  }

  body {
    cursor: auto;
  }

  p { color: rgba(26, 26, 26, 0.7); }
  strong { color: var(--white); }

  /* Nav */
  .nav {
    background: linear-gradient(to bottom, rgba(245, 240, 235, 0.9), transparent);
  }
  .nav.scrolled {
    background: rgba(245, 240, 235, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: rgba(0, 0, 0, 0.06);
  }

  .nav-logo { color: var(--accent); }
  .nav-link { color: #333; }
  .nav-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
  .burger-line { background: #333; }

  /* Hero */
  .hero-grid {
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  }
  .hero-glow--1 { background: radial-gradient(circle, rgba(200, 169, 110, 0.08), transparent 70%); }
  .hero-glow--2 { background: radial-gradient(circle, rgba(168, 137, 78, 0.06), transparent 70%); }
  .hero-subtitle { color: rgba(26, 26, 26, 0.6); }
  .hero-stat-label { color: rgba(26, 26, 26, 0.5); }
  .hero-stat-plus { color: var(--accent); }
  .hero-status { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); color: #1a1a1a; border-color: rgba(0, 0, 0, 0.1); }
  .hero-badge { background: var(--accent); }
  .hero-badge-text { color: #fff; }
  .hero-label span { color: rgba(26, 26, 26, 0.6); }

  /* Buttons */
  .btn--primary { background: var(--accent); color: #fff; }
  .btn--primary::before { background: var(--accent-light); }
  .btn--ghost { border-color: rgba(26, 26, 26, 0.15); color: var(--white); }
  .btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

  /* Pain cards */
  .pain-card { background: var(--card); border-color: var(--border); }
  .pain-desc { color: rgba(26, 26, 26, 0.6); }

  /* About */
  .about-lead, .about-text { color: rgba(26, 26, 26, 0.7); }
  .about-credential span { color: rgba(26, 26, 26, 0.7); }
  .about-credential-icon { background: rgba(168, 137, 78, 0.1); border-color: var(--border); }
  .about-experience { background: var(--accent); }

  /* Service cards */
  .service-card { background: var(--card); border-color: var(--border); }
  .service-card--featured { background: var(--accent); }
  .service-card--featured .service-type { color: rgba(255, 255, 255, 0.6); }
  .service-card--featured .service-name { color: #fff; }
  .service-card--featured .service-desc { color: rgba(255, 255, 255, 0.7); }
  .service-card--featured .service-features li { color: rgba(255, 255, 255, 0.85); border-bottom-color: rgba(255, 255, 255, 0.15); }
  .service-card--featured .service-arrow { color: #fff; }
  .service-card--featured .service-price-number { color: #fff; }
  .service-card--featured .service-price-unit { color: rgba(255, 255, 255, 0.6); }
  .service-card--featured .service-link { color: #fff; }
  .service-card--featured .service-badge { background: #1a1a1a; }
  .service-features li { color: rgba(26, 26, 26, 0.7); border-bottom-color: var(--border); }
  .service-desc { color: rgba(26, 26, 26, 0.6); }
  .service-type { color: var(--muted); }
  .service-arrow { color: var(--accent); }

  /* Online cards */
  .online-card { background: var(--card); border-color: var(--border); }
  .online-card--featured { background: var(--accent); border-top-color: var(--accent-dark); }
  .online-card--featured .online-tariff-type { color: rgba(255, 255, 255, 0.6); }
  .online-card--featured .online-tariff-name { color: #fff; }
  .online-card--featured .online-price-number { color: #fff; }
  .online-card--featured .online-price-unit { color: rgba(255, 255, 255, 0.6); }
  .online-card--featured .online-price { border-bottom-color: rgba(255, 255, 255, 0.2); }
  .online-card--featured .online-features li { color: rgba(255, 255, 255, 0.85); }
  .online-card--featured .online-features li::before { color: #fff; }
  .online-card--featured .online-feature--crossed { color: rgba(255, 255, 255, 0.35) !important; }
  .online-card--featured .online-feature--crossed::before { color: rgba(255, 255, 255, 0.35) !important; }
  .online-features li { color: rgba(26, 26, 26, 0.7); }
  .online-features li::before { color: var(--accent); }
  .online-feature--crossed { color: rgba(26, 26, 26, 0.3) !important; }
  .online-tariff-type { color: var(--muted); }
  .online-price-unit { color: rgba(26, 26, 26, 0.5); }
  .online-cta { border-color: var(--accent); color: var(--accent); }
  .online-cta--featured { background: #1a1a1a; color: #f5f0eb; border-color: #1a1a1a; }
  .slots-badge { color: rgba(26, 26, 26, 0.6); }

  /* Process */
  .process-step { background: var(--card); border-color: var(--border); }
  .process-desc { color: rgba(26, 26, 26, 0.6); }
  .process-number { color: rgba(168, 137, 78, 0.1); }

  /* Lead */
  .lead { background: var(--accent); }
  .lead-label { color: rgba(26, 26, 26, 0.7); }
  .lead-desc { color: rgba(26, 26, 26, 0.7); }
  .btn--dark { background: #1a1a1a; color: #f5f0eb; }
  .btn--dark:hover { background: #333; }
  .lead-form .form-input { background: rgba(0, 0, 0, 0.08); border-color: rgba(0, 0, 0, 0.15); color: #1a1a1a; }
  .lead-form .form-input::placeholder { color: rgba(26, 26, 26, 0.5); }
  .lead-benefit-icon { background: rgba(0, 0, 0, 0.1); }
  .lead-social-proof { color: rgba(26, 26, 26, 0.6); }

  /* Reviews */
  .review-card { background: var(--card); border-color: var(--border); }
  .review-text { color: rgba(26, 26, 26, 0.6); }
  .review-tag { border-color: rgba(168, 137, 78, 0.3); }

  /* Results strip */
  .results-strip { background: var(--card); border-color: var(--border); }
  .results-stat-label { color: rgba(26, 26, 26, 0.5); }

  /* FAQ */
  .faq-desc { color: rgba(26, 26, 26, 0.6); }
  .faq-item { border-color: var(--border); }
  .faq-answer p { color: rgba(26, 26, 26, 0.7); }

  /* Consultation */
  .consultation-box { background: var(--card); border-color: var(--border); }
  .consultation-desc { color: rgba(26, 26, 26, 0.6); }
  .consultation-mini-label { color: rgba(26, 26, 26, 0.5); }
  .consultation-form .form-input { background: var(--surface); border-color: var(--border); color: var(--white); }
  .consultation-form .form-input::placeholder { color: rgba(26, 26, 26, 0.4); }
  .form-legal, .form-legal a { color: rgba(26, 26, 26, 0.4); }

  /* Footer */
  .footer { background: #1a1a1a; color: #f5f0eb; }
  .footer .footer-tagline { color: rgba(245, 240, 235, 0.5); }
  .footer .footer-links a { color: rgba(245, 240, 235, 0.6); }
  .footer .footer-copy { color: rgba(245, 240, 235, 0.3); }
  .footer .footer-legal a { color: rgba(245, 240, 235, 0.3); }
  .footer .footer-social-link { color: rgba(245, 240, 235, 0.5); border-color: rgba(245, 240, 235, 0.1); }
  .footer .footer-contact { color: rgba(245, 240, 235, 0.5); }
  .footer .footer-contact strong { color: #f5f0eb; }
  .footer .footer-contact a { color: rgba(245, 240, 235, 0.5); }

  /* Floating CTA */
  .float-btn--tg { background: #1a1a1a; color: #f5f0eb; }
  .float-btn--cta { background: var(--accent); color: #fff; }

  /* Cookie / Popup */
  .cookie-banner { background: var(--card); border-color: var(--border); color: var(--white); }
  .popup { background: var(--card); border-color: var(--border); }
  .popup-overlay { background: rgba(0, 0, 0, 0.5); }

  /* Preloader */
  .preloader { background: var(--black); }

  /* Scroll progress */
  .scroll-progress { background: var(--accent); }

  /* Custom cursor - hide in light mode for cleaner feel */
  .cursor, .cursor-ring { display: none; }

  /* Mobile menu */
  .mobile-menu { background: rgba(245, 240, 235, 0.98); }
  .mobile-menu-link { color: #1a1a1a; border-bottom-color: rgba(0, 0, 0, 0.06); }
  .mobile-menu-cta { background: var(--accent); color: #fff; }

  /* Section labels */
  .section-label span { color: rgba(26, 26, 26, 0.5); }
  .section-subtitle { color: rgba(26, 26, 26, 0.6); }

  /* Form selects */
  .form-select { color: var(--white); }

  /* Image wrappers - subtle shadow instead of dark bg */
  .hero-image, .about-image {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-status-dot { animation: none; }
  .float-btn--cta { animation: none; }
}
