﻿/* ============================================================
   Вики Клима – Main Stylesheet
   Mobile-first, clean local-service design
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Arctic Fresh palette ── */
  --color-primary:        #0F4C75;
  --color-primary-hover:  #0A3A5C;
  --color-primary-dark:   #082C45;
  --color-secondary:      #3282B8;
  --color-secondary-hover:#266A99;
  --color-accent:         #00B4D8;
  --color-accent-hover:   #0096B5;
  --color-light:          #BBE1FA;
  --color-light-bg:       #E8F4FB;
  --color-bg:             #F8FBFD;
  --color-text-muted:     #5A7A92;
  --color-border:         #D6E8F2;

  /* ── Aliases for existing var() references ── */
  --blue:        #3282B8;
  --blue-dark:   #0F4C75;
  --blue-light:  #BBE1FA;
  --blue-xlight: #E8F4FB;
  --cyan:        #00B4D8;
  --green:       #00B4D8;
  --green-dark:  #0096B5;

  /* ── Semantic alias (used by text-link, ba-handle) ── */
  --primary:     #0F4C75;

  /* ── Neutrals ── */
  --dark:        #0F4C75;
  --dark-soft:   #082C45;
  --mid:         #5A7A92;
  --muted:       #5A7A92;
  --border:      #D6E8F2;
  --white:       #FFFFFF;
  --off-white:   #F8FBFD;

  /* ── Typography ── */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;
  --font:         var(--font-body);

  /* ── Shape ── */
  --radius:      14px;
  --radius-sm:   8px;

  /* ── Shadows ── */
  --shadow-sm:   0 1px 3px rgba(15,76,117,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 20px rgba(15,76,117,.12);
  --shadow-lg:   0 12px 44px rgba(15,76,117,.18);

  --header-h:    160px;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .12s, box-shadow .18s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,180,216,.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue);
  font-family: var(--font-heading);
  font-weight: 600;
}
.btn-outline:hover {
  background: var(--blue-xlight);
  transform: translateY(-1px);
}

.btn-large  { padding: 14px 32px; font-size: 1.05rem; }
.btn-xlarge { padding: 18px 44px; font-size: 1.15rem; }

/* Viber button */


/* ── Section defaults ── */
.section {
  padding: 72px 0;
}
.section-light {
  background: var(--off-white);
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--mid);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* ── Section background system ── */


/* Services: white */
#services {
  background: var(--white);
}

/* Before/After: light white */
.section-ba {
  position: relative;
  background: var(--white);
}
.section-ba .section-title { color: var(--dark); }
.section-ba .section-intro { color: var(--mid); }

/* Benefits: light ice-blue tint */
#benefits {
  background: var(--color-light-bg);
  position: relative;
  overflow: hidden;
}
#benefits .section-title { color: var(--dark); }
#benefits .section-intro { color: var(--mid); }
#benefits .benefit-item {
  background: var(--white);
  border-color: rgba(15,76,117,0.12);
}
#benefits .benefit-item h3 { color: var(--dark); }
#benefits .benefit-item p  { color: var(--mid); }

/* Pricing: clean off-white */
#prices {
  background-color: var(--color-bg);
}

/* Area: light white */
#area {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#area .section-title { color: var(--dark); }
#area .area-text p    { color: var(--mid); }
#area .area-text strong { color: var(--dark); }
#area .area-districts {
  background: var(--blue-xlight);
  border-color: var(--blue-light);
}
#area .area-districts h3 { color: var(--dark); }
#area .districts-list li  { color: var(--mid); }

/* How it works: light off-white */
#how-it-works {
  background-color: var(--off-white);
}

/* Why us: light */
#why-us {
  background: var(--color-light-bg);
}

/* FAQ: crisp white */
#faq {
  background: var(--white);
}

/* Final CTA: strong dark navy gradient — the ONE permitted dark section */
.section-cta {
  background: linear-gradient(135deg, #082C45 0%, #0F4C75 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,180,216,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 24px rgba(15, 76, 117, 0.08), 0 1px 0 rgba(255,255,255,0.6) inset;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.sticky-call.sticky-call--hidden {
  transform: translateY(100%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }

.logo-img {
  height: 160px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 160px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  object-fit: contain;
}

.btn-phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.main-nav {
  display: none;
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 8px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark-soft);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--blue-xlight);
  color: var(--blue-dark);
  text-decoration: none;
}

.header-cta {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  font-size: .9rem;
  padding: 10px 20px;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 210;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav – fullscreen overlay */
.mobile-nav[hidden] { display: none !important; }
.mobile-nav-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.mobile-nav-close:hover { background: var(--blue-xlight); }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 205;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 32px 48px;
  overflow-y: auto;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.mobile-nav a {
  display: block;
  padding: 16px 20px;
  font-size: .97rem;
  font-weight: 500;
  color: var(--dark-soft);
  border-radius: var(--radius-sm);
  font-size: 1.15rem;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover {
  background: var(--blue-xlight);
  color: var(--blue-dark);
  text-decoration: none;
}

@media (min-width: 900px) {
  .main-nav            { display: block; }
  .header-cta          { display: inline-flex; margin-left: 0; }
  .mobile-menu-toggle  { display: none; }
}

@media (max-width: 899px) {
  :root { --header-h: 140px; }
  .logo-img { height: 140px; }
}

/* ============================================================
   HERO — Clean Premium Light
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E8F4FB 0%, #BBE1FA 40%, #F8FBFD 100%);
  padding: 72px 0 80px;
}

/* Subtle decorative orbs — very faint ice-blue on light bg */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb--1 {
  width: 480px; height: 480px;
  top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  animation: orb-drift-1 14s ease-in-out infinite alternate;
}
.hero-orb--2 {
  width: 320px; height: 320px;
  bottom: -60px; left: -80px;
  background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
  animation: orb-drift-2 18s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 20px) scale(1.06); }
}
@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -15px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-visual {
  display: none;
  position: relative;
}
@media (min-width: 900px) {
  .hero-visual { display: block; }
}

.hero-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(15,76,117,0.18), 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
}
.hero-photo-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,76,117,0.15) 100%);
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 2;
}
.hero-photo-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-photo-badge-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.hero-photo-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero-photo-badge-text strong {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
}
.hero-photo-badge-text span {
  font-size: .72rem;
  color: var(--muted);
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.5s ease 0.1s both;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Hero title */
.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fade-up 0.55s ease 0.2s both;
}
.hero-title-accent {
  background: linear-gradient(
    120deg,
    #00d4ff   0%,
    #0ea5e9  28%,
    #e4f9ff  50%,
    #0ea5e9  72%,
    #00d4ff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: shine-sweep 2.8s linear infinite;
}

@keyframes shine-sweep {
  0%   { background-position: 150% center; }
  65%  { background-position: -50% center; }
  100% { background-position: -50% center; }
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0ea5e9);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-grow 0.5s ease 0.75s both;
}
@keyframes underline-grow {
  to { transform: scaleX(1); }
}

/* Hero sub */
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  color: var(--mid);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.55s ease 0.35s both;
}

/* Key term highlights inside hero-sub */
.hero-sub-kw {
  font-weight: 700;
  color: var(--blue);
  border-bottom: 1.5px solid rgba(0, 180, 216, 0.4);
  padding-bottom: 1px;
  animation: kw-pulse 2.8s ease-in-out infinite;
}
.hero-sub-kw:nth-child(2) { animation-delay: 0.4s; }
.hero-sub-kw:nth-child(3) { animation-delay: 0.8s; }
.hero-sub-kw:nth-child(4) { animation-delay: 1.2s; }
.hero-sub-kw:nth-child(5) { animation-delay: 1.6s; }

@keyframes kw-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.5s ease 0.48s both;
}



.hero-price-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 20px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.5s ease 0.56s both;
}
.hero-price-hint:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
}

/* Trust badges — light variant */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: fade-up 0.5s ease 0.68s both;
}
.badge {
  background: var(--white);
  border: 1px solid rgba(15,76,117,0.25);
  color: var(--dark);
  font-size: .79rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(15,76,117,0.08);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Override data-reveal for hero elements — they use CSS animations directly */
.hero [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* No dark hero override needed — light background */


/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }

.service-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  min-width: 48px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-body p {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .service-item {
    border-bottom: none;
    border-top: 1px solid var(--border);
  }
  .service-item:nth-child(1),
  .service-item:nth-child(2) {
    border-top: none;
  }
}


/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.section-ba {
  background: var(--white);
}
.section-ba .section-title { color: var(--dark); }
.section-ba .section-intro { color: var(--mid); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ba-grid--photos {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) {
  .ba-grid--photos { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
}

.ba-card { display: flex; flex-direction: column; gap: 10px; }

.ba-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}
.ba-before { background: linear-gradient(135deg, #7f1d1d, #991b1b); color: #fca5a5; }
.ba-after  { background: linear-gradient(135deg, #082C45, #0F4C75); color: #BBE1FA; }
.ba-img-placeholder span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}


/* Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  display: grid;
}
.ba-slider-before {
  grid-area: 1 / 1;
}
.ba-slider-after {
  grid-area: 1 / 1;
  clip-path: inset(0 50% 0 0);
}
.ba-slider-handle {
  grid-area: 1 / 1;
  justify-self: start;
  margin-left: calc(50% - 22px);
  width: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.ba-slider-before img,
.ba-slider-after img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-handle-line {
  width: 2px;
  flex: 1;
  background: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,.4);
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}
.ba-handle-circle svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefits-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .benefits-grid--3 {
    grid-template-columns: 1fr;
  }
}
.text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.text-link:hover {
  border-bottom-color: var(--primary);
}
.benefit-item {
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.benefit-icon { width: 36px; height: 36px; margin-bottom: 14px; color: var(--blue); }
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.benefit-item p {
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,180,216,.12), var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 40px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 24px; }
.pricing-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
}
.pricing-price span {
  font-size: 1.3rem;
  vertical-align: super;
}
.pricing-price--text {
  font-size: 1.3rem;
  color: var(--mid);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.5;
}
.pricing-note {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

.pricing-cta { display: flex; justify-content: center; width: 100%; }
.pricing-cta--viber { margin-top: 10px; }

.pricing-disclaimer {
  font-size: .9rem;
  color: var(--muted);
  background: var(--blue-xlight);
  border-left: 4px solid var(--blue);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.65;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .area-content { grid-template-columns: 3fr 2fr; }
}

.area-text p {
  font-size: .97rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.area-text p:last-child { margin-bottom: 0; }
.area-text strong { color: var(--dark); }

.area-districts {
  background: var(--blue-xlight);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 28px;
}
.area-districts h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}
.districts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.districts-list li {
  font-size: .9rem;
  color: var(--mid);
}
.districts-list li::before {
  content: "· ";
  color: var(--blue);
  font-weight: 700;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }

.step-num {
  background: var(--blue);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.step-body p {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.7;
}
.step-body a { font-weight: 600; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.why-icon { width: 36px; height: 36px; margin-bottom: 14px; color: var(--blue); }
.why-icon svg { width: 100%; height: 100%; }
.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-item p {
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  line-height: 1.5;
  transition: background .15s;
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { color: var(--blue-dark); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-cta {
  /* background set in section background system above */
  padding: 80px 0;
  text-align: center;
}
.final-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.final-cta-phone {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 700;
}
.final-cta-phone a { color: var(--white); }
.final-cta-area {
  margin-top: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 56px 20px 48px;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1.5fr; }
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.footer-phone {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.footer-phone:hover { color: var(--cyan); }
.footer-area {
  font-size: .85rem;
  color: var(--color-text-muted);
}

.footer-nav h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: .88rem;
  color: var(--color-light);
  transition: color .15s;
}
.footer-nav a:hover { color: var(--blue); text-decoration: none; }

.footer-area-col h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-area-col p {
  font-size: .88rem;
  line-height: 1.75;
}
.footer-area-col strong { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.footer-bottom a { color: var(--color-light); }
.footer-bottom a:hover { color: var(--blue); text-decoration: none; }

/* ============================================================
   STICKY MOBILE CALL
   ============================================================ */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.3s ease;
  z-index: 300;
  padding: 10px 16px 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}

.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: .97rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .18s;
}
.sticky-call-btn:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
}

/* Floating Viber FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 299;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #7360f2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(115,96,242,.5);
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(115,96,242,.6);
  text-decoration: none;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 16px rgba(115,96,242,.5), 0 0 0 0 rgba(115,96,242,.4); }
  70%  { box-shadow: 0 4px 16px rgba(115,96,242,.5), 0 0 0 14px rgba(115,96,242,0); }
  100% { box-shadow: 0 4px 16px rgba(115,96,242,.5), 0 0 0 0 rgba(115,96,242,0); }
}
.whatsapp-fab {
  animation: wa-pulse 2.4s ease-out infinite;
}
.whatsapp-fab:hover {
  animation: none;
}

/* Hide sticky bar on desktop */
@media (min-width: 900px) {
  .sticky-call { display: none; }
  .whatsapp-fab { bottom: 24px; }
  body { padding-bottom: 0; }
}

/* Give mobile body bottom padding so sticky bar doesn't cover content */
@media (max-width: 899px) {
  body { padding-bottom: 80px; }
}

/* ============================================================
   UTILITY / RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 479px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; box-sizing: border-box; text-align: center; }
  .btn-xlarge { padding: 16px 20px; font-size: 1rem; max-width: calc(100vw - 48px); box-sizing: border-box; white-space: normal; text-align: center; }
  .ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 52px 0; }
  .pricing-card--featured { margin-top: 16px; }
}

/* ============================================================
   ACCESSIBLE FOCUS STYLES
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header,
  .sticky-call,
  .hero-image { display: none; }
  .hero { padding: 24px 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

/* Base hidden state — elements start invisible until JS adds .is-visible */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a container */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger].is-visible > *:nth-child(1)  { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2)  { transition-delay: 0.12s; }
[data-reveal-stagger].is-visible > *:nth-child(3)  { transition-delay: 0.19s; }
[data-reveal-stagger].is-visible > *:nth-child(4)  { transition-delay: 0.26s; }
[data-reveal-stagger].is-visible > *:nth-child(5)  { transition-delay: 0.33s; }
[data-reveal-stagger].is-visible > *:nth-child(6)  { transition-delay: 0.40s; }
[data-reveal-stagger].is-visible > *:nth-child(7)  { transition-delay: 0.47s; }
[data-reveal-stagger].is-visible > *:nth-child(8)  { transition-delay: 0.54s; }

/* Slide from left */
[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal="left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
[data-reveal="right"] {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal="right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in (for badges, icons, step numbers) */
[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-reveal="scale"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero elements: faster, start slightly higher */
.hero [data-reveal] {
  transform: translateY(20px);
  transition-duration: 0.45s;
}

/* Pulse animation on primary CTAs */
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,180,216,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(0,180,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}

.btn-primary {
  animation: cta-pulse 2.4s ease-out infinite;
}
.btn-primary:hover {
  animation: none;
}

/* Sticky call button pulse on mobile */
.sticky-call-btn {
  animation: cta-pulse 2.4s ease-out infinite;
}
.sticky-call-btn:hover {
  animation: none;
}

/* Step number pop-in */
@keyframes step-pop {
  0%   { transform: scale(0.5) rotate(-15deg); opacity: 0; }
  80%  { transform: scale(1.1) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.step.is-visible .step-num {
  animation: step-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.step:nth-child(2).is-visible .step-num { animation-delay: 0.07s; }
.step:nth-child(3).is-visible .step-num { animation-delay: 0.14s; }
.step:nth-child(4).is-visible .step-num { animation-delay: 0.21s; }
.step:nth-child(5).is-visible .step-num { animation-delay: 0.28s; }
.step:nth-child(6).is-visible .step-num { animation-delay: 0.35s; }

/* Service number glow */
@keyframes num-glow {
  from { text-shadow: none; }
  to   { text-shadow: 0 0 16px rgba(0,180,216,0.5); }
}
.service-item.is-visible .service-num {
  animation: num-glow 0.6s ease forwards;
}

/* Card hover lift — enhanced */
.problem-card,
.benefit-item,
.why-item,
.pricing-card {
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.problem-card:hover,
.benefit-item:hover,
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Section title underline sweep */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform 0.4s ease 0.2s;
}
.section-title.is-visible::after {
  transform: translateX(-50%) scaleX(1);
}

/* Wrap section-title in a block so ::after works with text-align:center */
.section-title { display: block; }

/* Badge bounce-in */
@keyframes badge-bounce {
  0%   { transform: scale(0.7) translateY(8px); opacity: 0; }
  80%  { transform: scale(1.05) translateY(-2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.trust-badges.is-visible .badge:nth-child(1) { animation: badge-bounce 0.35s ease both 0.1s; }
.trust-badges.is-visible .badge:nth-child(2) { animation: badge-bounce 0.35s ease both 0.2s; }
.trust-badges.is-visible .badge:nth-child(3) { animation: badge-bounce 0.35s ease both 0.3s; }
.trust-badges.is-visible .badge:nth-child(4) { animation: badge-bounce 0.35s ease both 0.4s; }
.trust-badges .badge { opacity: 0; }
.trust-badges.is-visible .badge { opacity: 1; }

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="scale"],
  [data-reveal-stagger] > *,
  .step,
  .service-item,
  .section-title,
  .trust-badges .badge {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .btn-primary,
  .sticky-call-btn,
  .whatsapp-fab {
    animation: none !important;
  }
  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-ctas,
  .hero-price-tag,
  .hero-price-hint,
  .trust-badges {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-title-accent {
    animation: none !important;
    background-size: 100% auto !important;
    background-position: center !important;
  }
  .hero-title-accent::after {
    transform: scaleX(1) !important;
    animation: none !important;
  }
  .hero-orb { animation: none !important; }
  .hero-eyebrow-dot { animation: none !important; }
  .section-title::after {
    transform: translateX(-50%) scaleX(1) !important;
    transition: none !important;
  }
}

/* ============================================================
   ENHANCED MOTION v2 — Reveals, Hovers, Parallax
   ============================================================ */

/* -- Section title: fade-up (underline sweep already wired above) -- */
.section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Section intro: delayed fade-up -- */
.section-intro {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.18s,
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}
.section-intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Before/After slider: scale + fade reveal -- */
.ba-slider {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.7s ease 0.2s,
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.ba-slider.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* -- Problem cards: opacity reveal (stagger via JS delay) -- */
.problem-card {
  opacity: 0;
  transition: opacity 0.5s ease,
              box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s;
}
.problem-card.is-visible {
  opacity: 1;
}
.problem-icon {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.problem-card:hover .problem-icon {
  transform: scale(1.22) rotate(-8deg);
}

/* -- Pricing cards: opacity reveal -- */
.pricing-card {
  opacity: 0;
  transition: opacity 0.5s ease,
              box-shadow 0.22s ease, transform 0.22s ease;
}
.pricing-card.is-visible {
  opacity: 1;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(15, 76, 117, 0.18);
}
.pricing-card--featured:hover {
  transform: translateY(-12px);
}

/* -- Benefit icon spring on hover -- */
.benefit-icon {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.benefit-item:hover .benefit-icon {
  transform: scale(1.22) rotate(-8deg);
}

/* -- Service item: heading color on hover -- */
.service-body h3 {
  transition: color 0.2s ease;
}
.service-item:hover .service-body h3 {
  color: var(--blue);
}

/* -- Step: nudge right on hover after reveal -- */
.step {
  transition: transform 0.22s ease;
}
.step.is-visible:hover {
  transform: translateX(5px);
}

/* -- Photo strip: slow Ken Burns on hover -- */
.photo-strip-img {
  transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-strip:hover .photo-strip-img {
  transform: scale(1.06);
}

/* -- CTA section: radial glow breathes -- */
@keyframes cta-glow-pulse {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50%       { opacity: 0.26; transform: scale(1.18); }
}
.section-cta::before {
  animation: cta-glow-pulse 7s ease-in-out infinite;
}

/* -- Footer nav: slide right on hover -- */
.footer-nav a {
  display: inline-block;
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer-nav a:hover {
  color: #00B4D8;
  transform: translateX(4px);
}

/* -- FAQ: color shift on hover -- */
.faq-question:hover {
  color: var(--blue);
}

/* -- prefers-reduced-motion additions -- */
@media (prefers-reduced-motion: reduce) {
  .section-title,
  .section-intro,
  .ba-slider,
  .problem-card,
  .pricing-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .section-cta::before {
    animation: none !important;
  }
  .photo-strip-img {
    transition: none !important;
  }
}

/* ============================================================
   HERO — Mobile background image (index page only)
   ============================================================ */
@media (max-width: 899px) {
  .hero {
    background: none;
    background-image: url('../images/klima-clean-mobile.webp');
    background-size: cover;
    background-position: center center;
    position: relative;
  }

  /* Dark blue-tinted directional overlay — photo stays visible, text pops */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(6, 22, 50, 0.48) 0%,
      rgba(10, 36, 78, 0.62) 45%,
      rgba(4, 16, 38, 0.78) 100%
    );
    z-index: 0;
    pointer-events: none;
  }

  .hero > * {
    position: relative;
    z-index: 1;
  }

  /* Hide decorative orbs — they clash with the photo */
  .hero-orb { display: none; }

  /* Eyebrow: light cyan, readable on dark */
  .hero-eyebrow {
    color: rgba(125, 211, 252, 0.95);
  }
  .hero-eyebrow-dot {
    background: #7dd3fc;
  }

  /* Title: white, no shadow */
  .hero-title {
    color: #ffffff;
  }

  /* Accent word: bright cyan gradient */
  .hero-title-accent {
    background: linear-gradient(
      120deg,
      #00d4ff   0%,
      #38bdf8  28%,
      #ffffff  50%,
      #38bdf8  72%,
      #00d4ff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
    animation: shine-sweep 2.8s linear infinite;
  }

  /* Subheading: soft white */
  .hero-sub {
    color: rgba(226, 232, 240, 0.90);
  }
  .hero-sub-kw {
    color: #7dd3fc;
    border-bottom-color: rgba(125, 211, 252, 0.45);
  }

  /* Trust badges: glassmorphism — frosted dark chip */
  .trust-badges .badge {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(226, 232, 240, 0.95);
  }

  /* Price tag line */
  .hero-price-tag {
    color: #bae6fd;
  }

}

/* Hero price hint — desktop: light hero background */
@media (min-width: 900px) {
  .hero-price-hint {
    color: var(--blue-dark);
    border-color: rgba(2, 132, 199, 0.45);
    background: rgba(2, 132, 199, 0.05);
    width: auto;
  }
  .hero-price-hint:hover {
    background: rgba(2, 132, 199, 0.10);
    border-color: var(--blue-dark);
    color: var(--blue-dark);
  }
}

/* ── Floating Leaves ── */
.leaf-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.fl {
  position: absolute;
  will-change: transform, translate, rotate;
  overflow: visible;
  filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.14));
  /* smooth wind response via individual transform props (compose with animation) */
  transition: translate 0.52s cubic-bezier(0.25,0.46,0.45,0.94),
              rotate    0.44s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Wind effect: staggered per leaf so they don't all blow at once */
.fl--1 { transition-delay: 0s; }
.fl--2 { transition-delay: 0.06s; }
.fl--3 { transition-delay: 0.11s; }
.fl--4 { transition-delay: 0.03s; }
.fl--5 { transition-delay: 0.09s; }
.fl--6 { transition-delay: 0.05s; }
.fl--7 { transition-delay: 0.14s; }

/* Wind states — translate/rotate compose on top of the running animation */
.leaf-container.wind-left  .fl { translate: -34px 8px; rotate: -19deg; }
.leaf-container.wind-right .fl { translate:  34px 8px; rotate:  19deg; }

/* More organic free-float: varies X and adds Y bobbing */
@keyframes leaf-sway {
  0%   { transform: rotate(var(--r0)) translate(0px, 0px); }
  16%  { transform: rotate(var(--r1)) translate(var(--x1), -10px); }
  33%  { transform: rotate(var(--r0)) translate(var(--x2), 5px); }
  50%  { transform: rotate(var(--r2)) translate(calc(var(--x1) * -0.5), -14px); }
  66%  { transform: rotate(var(--r1)) translate(var(--x2), 3px); }
  83%  { transform: rotate(var(--r0)) translate(0px, -8px); }
  100% { transform: rotate(var(--r0)) translate(0px, 0px); }
}

.fl--1 {
  width: 28px; height: 41px;
  top: 30%; left: 3%;
  opacity: 0.38;
  --r0: 35deg; --r1: 48deg; --r2: 22deg;
  --x1: 14px; --x2: -8px;
  animation: leaf-sway 11s ease-in-out infinite 0s;
}

.fl--2 {
  width: 24px; height: 52px;
  top: 54%; right: 4%;
  opacity: 0.34;
  --r0: -22deg; --r1: -10deg; --r2: -34deg;
  --x1: -13px; --x2: 7px;
  animation: leaf-sway 13s ease-in-out infinite 2.3s;
}

.fl--3 {
  width: 26px; height: 29px;
  top: 70%; left: 7%;
  opacity: 0.30;
  --r0: 15deg; --r1: 28deg; --r2: 2deg;
  --x1: 11px; --x2: -6px;
  animation: leaf-sway 9s ease-in-out infinite 4.8s;
}

.fl--4 {
  width: 30px; height: 41px;
  top: 40%; right: 3%;
  opacity: 0.32;
  --r0: -48deg; --r1: -35deg; --r2: -61deg;
  --x1: -12px; --x2: 6px;
  animation: leaf-sway 10s ease-in-out infinite 1.2s;
}

.fl--5 {
  width: 18px; height: 52px;
  top: 82%; right: 6%;
  opacity: 0.28;
  --r0: 58deg; --r1: 71deg; --r2: 45deg;
  --x1: 10px; --x2: -5px;
  animation: leaf-sway 14s ease-in-out infinite 3.5s;
}

.fl--6 {
  width: 32px; height: 44px;
  top: 17%; left: 5%;
  opacity: 0.33;
  --r0: -12deg; --r1: -1deg; --r2: -23deg;
  --x1: -11px; --x2: 7px;
  animation: leaf-sway 12s ease-in-out infinite 1.8s;
}

.fl--7 {
  width: 20px; height: 46px;
  top: 63%; right: 7%;
  opacity: 0.27;
  --r0: 72deg; --r1: 85deg; --r2: 59deg;
  --x1: 9px; --x2: -5px;
  animation: leaf-sway 15s ease-in-out infinite 5.5s;
}

/* Center leaves — bigger movement, shorter cycle */
.fl--8 {
  width: 34px; height: 40px;
  top: 40%; left: 43%;
  opacity: 0.30;
  --r0: 20deg; --r1: 36deg; --r2: 4deg;
  --x1: 20px; --x2: -14px;
  animation: leaf-sway 8s ease-in-out infinite 0.4s;
  transition-delay: 0.02s;
}

.fl--9 {
  width: 22px; height: 46px;
  top: 53%; left: 55%;
  opacity: 0.28;
  --r0: -30deg; --r1: -15deg; --r2: -45deg;
  --x1: -18px; --x2: 11px;
  animation: leaf-sway 7s ease-in-out infinite 2.8s;
  transition-delay: 0.07s;
}

.fl--10 {
  width: 28px; height: 34px;
  top: 30%; left: 49%;
  opacity: 0.27;
  --r0: 45deg; --r1: 62deg; --r2: 28deg;
  --x1: 16px; --x2: -11px;
  animation: leaf-sway 9s ease-in-out infinite 1.5s;
  transition-delay: 0.10s;
}

@media (prefers-reduced-motion: reduce) {
  .fl { animation: none !important; translate: none !important; rotate: none !important; }
}

