/* === Атмосфера комфорта — Design System === */
:root {
  --background: #ffffff;
  --foreground: hsl(168, 43%, 10%);
  --primary: hsl(152, 49%, 62%);
  --primary-dark: hsl(152, 32%, 43%);
  --primary-glow: hsl(152, 60%, 75%);
  --primary-foreground: #fff;
  --deep: hsl(168, 43%, 10%);
  --gold: hsl(45, 65%, 52%);
  --secondary: hsl(152, 35%, 96%);
  --muted-fg: hsl(215, 14%, 45%);
  --warning: hsl(25, 95%, 55%);
  --border: hsl(210, 16%, 90%);

  --shadow-soft: 0 4px 24px hsl(152 49% 62% / 0.08);
  --shadow-elevated: 0 16px 40px hsl(152 49% 62% / 0.12);
  --shadow-cta: 0 8px 24px hsl(152 49% 62% / 0.35);

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 1rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--deep); }
h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; color: #fff; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; font-size: 1rem; }

/* ===== Layout ===== */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container-narrow { max-width: 64rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.bg-white { background: #fff; }
.bg-mint-soft { background: hsl(152, 35%, 96%, 0.4); }
.bg-deep { background: var(--deep); color: #fff; }

.section-head { max-width: 42rem; margin: 0 auto 3.5rem; }
.text-center { text-align: center; }
.text-light { color: #fff; }
.relative { position: relative; }
.muted { color: var(--muted-fg); font-size: 1rem; }
.muted-light { color: rgba(255,255,255,0.7); }
.small { font-size: 0.875rem; }
.xs { font-size: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.accent { color: var(--primary); }
.accent-strong { color: var(--primary); font-weight: 600; }
.gold { color: var(--gold); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-weight: 600; border-radius: 0.75rem;
  padding: 0.625rem 1.25rem; transition: all 0.2s; white-space: nowrap;
  font-family: var(--font-display);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1.125rem 2rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-warning { background: var(--warning); color: #fff; box-shadow: 0 8px 24px hsl(25 95% 55% / 0.35); animation: pulse-soft 2s infinite; }
.btn-warning:hover { filter: brightness(1.05); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* Phone button in header — always green */
.btn-phone {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  border-radius: 0.75rem;
}
.btn-phone:hover { background: #1fb855; }

/* Mobile phone button next to burger */
.mobile-phone-btn { display: inline-flex; }
@media (min-width: 1024px) { .mobile-phone-btn { display: none; } }

/* MAX button */
.btn-max {
  background: linear-gradient(135deg, #00A3FF 0%, #3D00FF 55%, #AA00FF 100%);
  color: #fff;
  box-shadow: 0 8px 24px hsl(260 100% 55% / 0.4);
  border: none;
}
.btn-max:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Telegram button */
.btn-telegram {
  background: #2AABEE;
  color: #fff;
  box-shadow: 0 8px 24px rgba(42, 171, 238, 0.35);
}
.btn-telegram:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { filter: brightness(1.08); transform: translateY(-1px); }

@keyframes pulse-soft { 0%,100% { box-shadow: 0 0 0 0 hsl(25 95% 55% / 0.4); } 50% { box-shadow: 0 0 0 10px hsl(25 95% 55% / 0); } }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.3s; background: transparent;
}
.site-header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .nav { height: 5rem; } }
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo-mark { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 2px 6px hsl(168 43% 10% / 0.2)); transition: filter 0.3s; }
.site-header.scrolled .logo-mark { filter: drop-shadow(0 2px 6px hsl(152 49% 62% / 0.3)); }
.logo-text { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1rem; letter-spacing: -0.01em; }
.site-header.scrolled .logo-text { color: var(--deep); }
@media (min-width: 1024px) { .logo-text { font-size: 1.125rem; } }

.nav-links { display: none; gap: 1.75rem; }
@media (min-width: 1024px) { .nav-links { display: flex; align-items: center; } }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.site-header.scrolled .nav-links a { color: hsl(168 43% 10% / 0.8); }

.nav-cta { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }

.burger { display: block; padding: 0.5rem; color: #fff; }
.site-header.scrolled .burger { color: var(--deep); }
@media (min-width: 1024px) { .burger { display: none; } }

.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu .container { padding-top: 1rem; padding-bottom: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a { padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; color: var(--deep); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }

/* Hero slideshow with Ken Burns */
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 0s;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 6s ease-in-out forwards;
}
.hero-slide.prev {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease-in-out, transform 0s;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsl(168 43% 10% / 0.92), hsl(168 43% 10% / 0.55) 60%, hsl(168 43% 10% / 0.2)); z-index: 1; }
.hero-inner { position: relative; z-index: 10; padding: 8rem 1rem; width: 100%; }
.hero-content { max-width: 48rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 36rem; line-height: 1.7; }
@media (min-width: 640px) { .hero-sub { font-size: 1.25rem; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 36rem; }
@media (min-width: 640px) { .hero-features { grid-template-columns: repeat(4, 1fr); } }
.hero-features div { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }
.hero-features .dot { color: var(--primary); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp 0.7s ease-out both; }

/* ===== Badges ===== */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600;
  background: hsl(152 49% 62% / 0.12); color: var(--primary-dark); margin-bottom: 1rem;
}
.badge-glass { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.badge-warning { background: hsl(25 95% 55% / 0.12); color: var(--warning); padding: 0.375rem 0.875rem; }
.badge-warning-glass { background: hsl(25 95% 55% / 0.2); color: #fff; backdrop-filter: blur(8px); }
.badge-on-dark { background: hsl(152 49% 62% / 0.2); color: var(--primary); }

/* ===== Calculator ===== */
.countdown {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: hsl(25 95% 55% / 0.1); color: var(--warning);
  font-family: var(--font-display); font-weight: 600; font-size: 0.875rem;
}
.calc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 1.5rem;
  padding: 1.5rem; box-shadow: var(--shadow-elevated);
}
@media (min-width: 640px) { .calc-card { padding: 2rem; } }
@media (min-width: 1024px) { .calc-card { padding: 2.5rem; } }

.calc-block { margin-bottom: 2rem; }
.calc-label { font-family: var(--font-display); font-weight: 600; color: var(--deep); margin-bottom: 1rem; }
.calc-value { color: var(--primary); font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.row-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }

.type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 1024px) { .type-grid { grid-template-columns: repeat(4, 1fr); } }
.type-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem; border-radius: 1rem; border: 2px solid var(--border);
  background: #fff; color: var(--muted-fg); font-weight: 500; font-size: 0.875rem;
  transition: all 0.2s;
}
.type-btn:hover { border-color: hsl(152 49% 62% / 0.4); }
.type-btn.active { border-color: var(--primary); background: hsl(152 49% 62% / 0.05); color: var(--deep); box-shadow: var(--shadow-soft); }
.type-btn .emoji { font-size: 1.5rem; }

input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px;
  background: var(--border); outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); cursor: pointer; border: 3px solid #fff; box-shadow: var(--shadow-cta);
}
input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); cursor: pointer; border: 3px solid #fff;
}
.range-legend { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 0.75rem; color: var(--muted-fg); }

.calc-row { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) {
  .calc-row { grid-template-columns: 1fr auto; align-items: start; gap: 2.5rem; }
  .calc-row .calc-block { margin-bottom: 0; }
  .calc-row .calc-block-rooms { min-width: 11rem; }
}

.rooms-control { display: flex; align-items: center; gap: 1rem; }
.circle-btn {
  width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  transition: border-color 0.2s; color: var(--deep);
}
.circle-btn:hover { border-color: var(--primary); }
.rooms-value { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; color: var(--deep); width: 2.5rem; text-align: center; }

.extras-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .extras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
.extra {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem;
  border: 2px solid var(--border); border-radius: 1rem; cursor: pointer;
  transition: all 0.2s; font-size: 0.875rem;
}
.extra:hover { border-color: hsl(152 49% 62% / 0.4); }
.extra input { position: absolute; opacity: 0; pointer-events: none; }
.extra .checkbox {
  width: 1.25rem; height: 1.25rem; border: 2px solid var(--border); border-radius: 0.375rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.2s;
}
.extra input:checked ~ .checkbox { background: var(--primary); border-color: var(--primary); }
.extra input:checked ~ .checkbox::after { content: "✓"; color: #fff; font-size: 0.75rem; font-weight: bold; }
.extra:has(input:checked) { border-color: var(--primary); background: hsl(152 49% 62% / 0.05); }
.extra-label { flex: 1; font-weight: 500; color: var(--deep); }
.extra-price { color: var(--muted-fg); font-size: 0.75rem; }

.calc-result { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.price-row { display: flex; align-items: flex-end; gap: 0.75rem; flex-wrap: wrap; }
.price-final { font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; color: var(--primary); }
@media (min-width: 640px) { .price-final { font-size: 3rem; } }
.price-original { color: var(--muted-fg); text-decoration: line-through; font-size: 1.125rem; padding-bottom: 0.25rem; }

.lead-form { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .lead-form { grid-template-columns: 1fr 1fr auto; } }
.lead-form input, .contact-form input, .contact-form textarea {
  height: 3.5rem; padding: 0 1rem; border: 1px solid var(--border); border-radius: 1rem;
  background: #fff; color: var(--deep); transition: border-color 0.2s; outline: none;
}
.lead-form input:focus { border-color: var(--primary); }
.lead-success {
  border-radius: 1rem; background: hsl(152 49% 62% / 0.1);
  border: 2px solid hsl(152 49% 62% / 0.3); padding: 1.25rem; text-align: center;
  color: var(--primary); font-weight: 600; margin-top: 1.5rem;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-top: 1.25rem; font-size: 0.75rem; color: var(--muted-fg); }
.trust-row span { display: inline-flex; align-items: center; gap: 0.375rem; }

/* ===== About ===== */
.grid-2 { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.align-center { align-items: center; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0 2rem; }
.fact { background: #fff; border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow-soft); }
.fact-num { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; color: var(--primary); margin-bottom: 0.25rem; }
.fact-num.light { color: var(--primary); }
.fact p:last-child { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.4; }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; gap: 0.75rem; color: hsl(168 43% 10% / 0.85); font-size: 0.9375rem; }
.check-list li::before { content: "✓"; color: var(--primary); font-weight: bold; flex-shrink: 0; }

.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-team { grid-column: span 2; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 1rem; box-shadow: var(--shadow-elevated); width: 100%; }
.about-square { aspect-ratio: 1; object-fit: cover; border-radius: 1rem; box-shadow: var(--shadow-soft); width: 100%; }
.about-deep { background: var(--deep); color: #fff; padding: 1.5rem; border-radius: 1rem; display: flex; flex-direction: column; justify-content: center; }
.about-deep p:last-child { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  background: #fff; border: 2px solid var(--border); border-radius: 1.5rem;
  padding: 1.75rem; transition: all 0.2s;
}
@media (min-width: 640px) { .service-card { padding: 2rem; } }
.service-card:hover { border-color: hsl(152 49% 62% / 0.4); box-shadow: var(--shadow-elevated); }
.service-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.service-emoji { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: hsl(152 49% 62% / 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.875rem; }
.service-price { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--primary); white-space: nowrap; }
.service-fear { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--warning); font-weight: 600; margin-bottom: 0.5rem; }
.service-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.service-benefit { color: hsl(168 43% 10% / 0.75); margin-bottom: 1.25rem; line-height: 1.6; }
.service-card ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(168 43% 10% / 0.7); }
.service-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.875rem; transition: gap 0.2s; }

/* ===== Before/After ===== */
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-slider {
  position: relative; aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden;
  cursor: ew-resize; user-select: none; box-shadow: var(--shadow-soft);
  background: #eee; touch-action: none;
}
.ba-slider .ba-after,
.ba-slider .ba-before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ba-slider .ba-after img,
.ba-slider .ba-before img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none; -webkit-user-drag: none;
}
.ba-slider .ba-before {
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: #fff; box-shadow: 0 0 14px rgba(0,0,0,0.4);
  pointer-events: none; transform: translateX(-50%);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 2.75rem; height: 2.75rem; border-radius: 50%; background: #fff;
  box-shadow: var(--shadow-elevated); display: flex; align-items: center; justify-content: center;
  color: var(--deep); font-weight: bold; font-size: 1.125rem;
}
.ba-tag { position: absolute; top: 0.75rem; font-size: 0.6875rem; font-weight: 700; color: #fff; padding: 0.25rem 0.625rem; border-radius: 9999px; backdrop-filter: blur(8px); z-index: 2; }
.ba-tag.before { left: 0.75rem; background: hsl(168 43% 10% / 0.75); }
.ba-tag.after { right: 0.75rem; background: hsl(152 49% 62% / 0.95); }
.ba-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.ba-meta p { font-family: var(--font-display); font-weight: 600; color: var(--deep); }
.ba-meta p.accent-strong { font-size: 0.75rem; }

/* ===== Cases ===== */
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }
.case-card { border-radius: 1.5rem; overflow: hidden; border: 2px solid var(--border); background: #fff; box-shadow: var(--shadow-soft); transition: box-shadow 0.2s; }
.case-card:hover { box-shadow: var(--shadow-elevated); }
.case-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.case-body { padding: 1.5rem; }
.case-district { font-size: 0.75rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.case-body h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.case-result { font-size: 0.875rem; color: hsl(168 43% 10% / 0.7); line-height: 1.6; margin-bottom: 1rem; }
.case-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.case-price { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--primary); }

/* ===== Process ===== */
.process-section { position: relative; overflow: hidden; }
.process-bg { position: absolute; inset: 0; opacity: 1; }
.process-bg img { width: 100%; height: 100%; object-fit: cover; }
.process-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, hsl(168 43% 10% / 0.92) 0%, hsl(168 43% 10% / 0.78) 50%, hsl(152 49% 25% / 0.6) 100%); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 1rem; padding: 1.5rem; }
.step-num {
  position: absolute; top: -0.75rem; left: -0.75rem;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-cta);
}
.step-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: hsl(152 49% 62% / 0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; }
.step h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.125rem; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; }

/* ===== Reviews ===== */
.rating-line { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.rating-line strong { color: var(--deep); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: #fff; border-radius: 1.5rem; padding: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.review-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-head img { width: 3.5rem; height: 3.5rem; border-radius: 50%; object-fit: cover; }
.r-name { font-family: var(--font-display); font-weight: 700; color: var(--deep); }
.stars { letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.r-text { font-size: 0.875rem; color: hsl(168 43% 10% / 0.8); line-height: 1.7; margin-bottom: 1rem; }
.r-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--primary); background: hsl(152 49% 62% / 0.1); padding: 0.25rem 0.75rem; border-radius: 9999px; }

.guarantee {
  position: relative; overflow: hidden;
  margin-top: 3rem; color: #fff;
  border-radius: 1.5rem; padding: 2rem;
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
  background: var(--deep);
}
@media (min-width: 1024px) { .guarantee { grid-template-columns: 2fr 1fr; padding: 3rem; } }
.guarantee-bg { position: absolute; inset: 0; z-index: 0; }
.guarantee-bg img { width: 100%; height: 100%; object-fit: cover; }
.guarantee-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, hsl(168 43% 10% / 0.92) 0%, hsl(168 43% 10% / 0.78) 55%, hsl(152 49% 30% / 0.55) 100%);
}
.guarantee > .guarantee-content,
.guarantee > .guarantee-stats { position: relative; z-index: 2; }
.guarantee h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .guarantee h3 { font-size: 1.875rem; } }
.guarantee p { color: rgba(255,255,255,0.85); line-height: 1.7; }
.guarantee-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.guarantee-stats > div { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 1rem; padding: 1.25rem; backdrop-filter: blur(8px); }
.guarantee-stats p:last-child { color: rgba(255,255,255,0.8); font-size: 0.875rem; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: hsl(152 35% 96% / 0.4); border: 1px solid var(--border);
  border-radius: 1rem; padding: 0 1.5rem; overflow: hidden;
}
.faq-item summary {
  list-style: none; padding: 1.25rem 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; color: var(--deep);
  font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
@media (min-width: 640px) { .faq-item summary { font-size: 1.125rem; } }
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 1.5rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: hsl(168 43% 10% / 0.75); line-height: 1.7; padding-bottom: 1.25rem; }

/* ===== Contact ===== */
#contacts h2 { color: #fff; margin-bottom: 1rem; }
.channels { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.channel {
  display: flex; align-items: center; gap: 1rem; padding: 1rem;
  border-radius: 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); transition: background 0.2s;
}
.channel:hover { background: rgba(255,255,255,0.1); }
.channel-ic {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: hsl(152 49% 62% / 0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.channel p { font-family: var(--font-display); font-weight: 600; color: #fff; }
.channel span { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

.contact-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem; padding: 1.75rem; backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 640px) { .contact-form { padding: 2.25rem; } }
.contact-form h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form textarea { padding: 1rem; min-height: 6rem; resize: none; height: auto; }

/* ===== Footer ===== */
.footer { background: var(--deep); color: #fff; border-top: 1px solid rgba(255,255,255,0.1); }
.footer .container { padding-top: 3rem; padding-bottom: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer .logo-text { color: #fff; }
.footer h4 { color: #fff; margin-bottom: 1rem; font-family: var(--font-display); font-weight: 600; }
.footer-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-list a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* Footer messenger buttons */
.footer-messengers {
  display: flex; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.messenger-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.875rem;
  color: #fff; transition: all 0.2s; text-decoration: none;
}
.messenger-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.messenger-whatsapp { background: #25D366; }
.messenger-telegram { background: #2AABEE; }
.messenger-max {
  background: linear-gradient(135deg, #00A3FF 0%, #3D00FF 55%, #AA00FF 100%);
}

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(150%);
  background: var(--deep); color: #fff; padding: 0.875rem 1.5rem; border-radius: 0.75rem;
  font-size: 0.9375rem; font-weight: 500; box-shadow: var(--shadow-elevated);
  z-index: 100; transition: transform 0.3s ease-out; max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { background: hsl(0 75% 55%); }
.toast.success { background: var(--primary); }

/* ===== Pricing ===== */
.pricing-wrap {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 1024px) { .pricing-wrap { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.pricing-group {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pricing-group:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }

.pricing-group-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  color: var(--deep); margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}

.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.pricing-table thead th {
  font-family: var(--font-display); font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: hsl(152, 15%, 45%);
  text-align: left; padding: 0.5rem 0.75rem;
}
.pricing-table thead th.text-right { text-align: right; }
.pricing-table tbody td {
  padding: 0.75rem; border-top: 1px solid hsl(152, 25%, 92%);
  vertical-align: middle; color: var(--deep);
}
.pricing-table tbody td.text-right { text-align: right; }
.pricing-table tbody tr:hover { background: hsl(152, 35%, 97%); }
.pricing-table tbody td:nth-child(2) { color: hsl(152, 15%, 45%); font-size: 0.875rem; white-space: nowrap; }

.price-pill {
  display: inline-block; font-weight: 700;
  background: hsl(152, 60%, 95%); color: var(--primary);
  padding: 0.25rem 0.625rem; border-radius: 999px;
  font-size: 0.875rem; white-space: nowrap;
}

.pricing-cta {
  margin-top: 2.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
