:root {
  --bg-0: #f5f7fd;
  --bg-1: #e9eefb;
  --surface: #ffffff;
  --surface-soft: #f3f6fe;
  --border: rgba(28, 40, 80, 0.10);
  --ink: #141f3c;
  --muted: #5e6a8a;
  --turq: #2563eb;
  --teal: #4f46e5;
  --coral: #7c3aed;
  --coral-deep: #6d28d9;
  --text: #141f3c;
  --grad: linear-gradient(120deg, #2563eb 0%, #4f46e5 45%, #7c3aed 100%);
  --grad-soft: linear-gradient(120deg, #2563eb, #7c3aed);
  --radius: 20px;
  --shadow: 0 16px 40px rgba(28, 44, 92, 0.10);
  --shadow-lg: 0 30px 70px rgba(28, 44, 92, 0.16);
  --glow-turq: 0 16px 40px rgba(37, 99, 235, 0.35);
  --glow-coral: 0 16px 40px rgba(124, 58, 237, 0.32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Cool aurora background */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(42% 38% at 12% 8%, rgba(37, 99, 235, 0.20), transparent 60%),
    radial-gradient(38% 32% at 90% 16%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(46% 42% at 78% 90%, rgba(79, 70, 229, 0.16), transparent 60%),
    var(--bg-0);
  animation: drift 18s ease-in-out infinite alternate;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(28, 44, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 44, 92, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 80%);
}
@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.08); }
}

.container { width: min(1180px, 92%); margin: 0 auto; }
a { text-decoration: none; color: inherit; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 253, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-logo {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px;
  font-weight: 900; color: #fff;
  background: var(--grad);
  box-shadow: var(--glow-turq);
}
.brand-logo.small { width: 38px; height: 38px; border-radius: 11px; }
.logo-mark { width: 27px; height: 27px; color: #fff; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.18)); }
.brand-logo.small .logo-mark { width: 22px; height: 22px; }
.brand-name { font-weight: 800; font-size: 1.2rem; letter-spacing: .3px; }
.brand-name .grad-text { font-weight: 900; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-call {
  color: #fff !important;
  padding: 9px 18px; border-radius: 999px;
  background: var(--grad);
  box-shadow: var(--glow-turq);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 18, 21, 0.78), rgba(6, 18, 21, 0.62) 45%, rgba(6, 18, 21, 0.85)),
    radial-gradient(60% 60% at 80% 15%, rgba(79, 70, 229, 0.3), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; padding: 96px 0 110px; }
.eyebrow {
  display: inline-block; letter-spacing: 3px; font-weight: 800; font-size: .8rem;
  margin-bottom: 18px; padding: 8px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--teal); box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.05; font-weight: 900; margin-bottom: 20px;
  letter-spacing: -1px; color: var(--ink);
}
.hero-sub { max-width: 640px; font-size: clamp(1rem, 2.4vw, 1.22rem); color: var(--muted); }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 20px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; padding: 15px 28px; border-radius: 14px;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s, background .2s;
  cursor: pointer; border: 1px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--glow-turq); }
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.06); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--border); box-shadow: var(--shadow); }
.btn-ghost:hover { background: var(--surface-soft); transform: translateY(-3px); }
.btn-ghost-light { background: var(--surface); color: var(--teal); border-color: var(--border); }
.btn-ghost-light:hover { background: var(--surface-soft); }
.btn-call {
  color: #fff; font-weight: 900;
  background: var(--coral);
  box-shadow: var(--glow-coral);
}
.btn-call:hover { transform: translateY(-3px); filter: brightness(1.06); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.badge {
  background: var(--surface); border: 1px solid var(--border);
  padding: 9px 15px; border-radius: 999px; font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.hero-call { font-size: 1.05rem; }

/* Stats */
.stats { margin-top: -60px; position: relative; z-index: 5; padding-bottom: 30px; }
.stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px; padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.stats-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad);
}
.pill {
  display: inline-block; font-size: .72rem; letter-spacing: 1.5px; font-weight: 800;
  padding: 7px 15px; border-radius: 999px;
  background: var(--surface-soft); border: 1px solid var(--border);
  color: var(--coral); margin-bottom: 14px;
}
.stats-card h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 8px; font-weight: 800; color: var(--ink); }
.stats-card > p { color: var(--muted); max-width: 640px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 26px 0 18px; }
.stat {
  background: var(--surface-soft); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px; transition: transform .2s, box-shadow .25s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--glow-turq); }
.stat strong { display: block; font-size: 2.2rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); }
.stats-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.stats-tags span { background: var(--surface-soft); border: 1px solid var(--border); padding: 8px 15px; border-radius: 999px; font-weight: 600; font-size: .9rem; }

/* Section titles */
section { padding: 72px 0; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; letter-spacing: -.5px; color: var(--ink); }
.title-underline { display: block; width: 130px; height: 5px; border-radius: 999px; background: var(--grad); margin: 12px 0 28px; }
.section-lead { color: var(--muted); max-width: 780px; margin-bottom: 30px; font-size: 1.06rem; }

/* About */
.about-text p { margin-bottom: 14px; font-size: 1.1rem; color: #41496b; }
.about-text strong { color: var(--ink); }
.about-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.about-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px; font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s, box-shadow .25s;
}
.about-item:hover { transform: translateX(6px); border-color: rgba(11,184,201,.5); box-shadow: var(--glow-turq); }

/* Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .3s ease, border-color .3s;
  position: relative;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1px; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::after { opacity: 1; }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; filter: saturate(1.05); }
.card-img img.img-bags { object-position: center 68%; transform: scale(1.08); transform-origin: center 68%; }
.card:hover .card-img img.img-bags { transform: scale(1.15); }
.card:hover .card-img img { transform: scale(1.08); }
.card h3 { padding: 18px 20px 6px; font-size: 1.25rem; color: var(--ink); }
.card p { padding: 0 20px 22px; color: var(--muted); }

/* Prices */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .3s;
}
.price-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
}
.price-card:nth-child(3n+1)::before { background: linear-gradient(var(--turq), var(--teal)); }
.price-card:nth-child(3n+2)::before { background: linear-gradient(#2dd4bf, var(--coral)); }
.price-card:nth-child(3n+3)::before { background: linear-gradient(var(--coral), var(--coral-deep)); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--ink); }
.price-card ul { list-style: none; }
.price-card li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 10px 0; border-bottom: 1px dashed var(--border); color: #46666c;
}
.price-card li:last-child { border-bottom: 0; }
.price-card li b { color: var(--teal); white-space: nowrap; }
.price-note { margin-top: 24px; color: var(--muted); font-style: italic; }

/* CTA */
.cta { position: relative; }
.cta-inner {
  text-align: center; max-width: 760px;
  background: var(--grad);
  border-radius: 26px; padding: 50px 36px; margin: 0 auto;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  color: #fff;
}
.cta-inner::before { content: ""; position: absolute; inset: 0; background: conic-gradient(from 0deg, transparent, rgba(255,255,255,.2), transparent 40%); }
.cta-inner > * { position: relative; }
.cta h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 12px; font-weight: 900; color: #fff; }
.cta p { color: rgba(255,255,255,.92); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-call { background: #fff; color: var(--coral-deep); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.cta .btn-ghost-light { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.5); }
.cta .btn-ghost-light:hover { background: rgba(255,255,255,.28); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 42px 0; color: var(--muted); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.footer-inner strong { color: var(--ink); margin-left: 8px; }
.footer-inner > div:first-child { display: flex; align-items: center; flex-wrap: wrap; }
.footer-inner p { font-size: .92rem; width: 100%; margin-top: 6px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--ink); }
.copy { width: 100%; text-align: center; padding-top: 18px; border-top: 1px solid var(--border); font-size: .85rem; }

/* Floating call */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  color: #fff; font-weight: 900;
  padding: 14px 22px; border-radius: 999px;
  background: var(--grad);
  box-shadow: var(--glow-turq);
  animation: pulse 2.6s infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(238, 249, 251, 0.97); backdrop-filter: blur(16px);
    padding: 0 6%; max-height: 0; overflow: hidden;
    border-bottom: 1px solid var(--border);
    transition: max-height .35s ease, padding .35s ease;
  }
  .nav-links.open { max-height: 380px; padding: 16px 6% 22px; }
  .nav-links a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .nav-call { text-align: center; margin-top: 10px; }
  .cards, .price-grid, .about-list { grid-template-columns: 1fr; }
  .hero-inner { padding: 64px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, body::before { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ ENHANCED STRUCTURE ============ */

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 200; transition: width .1s linear;
}

/* Active nav */
.nav-links a.active { color: var(--ink); }
.nav-links a[data-nav] { position: relative; }
.nav-links a[data-nav].active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad); border-radius: 2px;
}

/* Kicker label */
.kicker {
  display: inline-block; font-size: .74rem; letter-spacing: 2.5px; font-weight: 800;
  color: var(--coral); margin-bottom: 10px;
}

/* Hero two-column */
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
  padding: 84px 0 96px;
}
/* Hero text stays light over the video regardless of theme */
.hero-text h1 { color: #ffffff; }
.hero-text .hero-sub { color: rgba(255, 255, 255, 0.92); }
.hero-text .eyebrow { background: rgba(0, 0, 0, 0.35); border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.hero-text .badge { background: rgba(0, 0, 0, 0.4); border-color: rgba(255, 255, 255, 0.22); color: #fff; box-shadow: none; }
.hero-text .btn-ghost { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.4); color: #fff; box-shadow: none; }
.hero-text .btn-ghost:hover { background: rgba(255, 255, 255, 0.24); }
.hero-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 28px; box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 1.4rem; color: var(--ink); }
.hero-card-sub { color: var(--muted); margin: 6px 0 18px; font-size: .96rem; }
.quote-form { display: flex; flex-direction: column; gap: 12px; }
.quote-form input, .quote-form select,
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface-soft);
  font: inherit; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.quote-form input:focus, .quote-form select:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--turq);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}
.btn.full { width: 100%; }
.form-msg { margin-top: 4px; font-weight: 700; color: var(--teal); }
.hero-call-line { display: block; margin-top: 16px; text-align: center; color: var(--muted); font-weight: 600; }
.hero-call-line strong { color: var(--ink); }

/* Why features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-ico {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  border-radius: 16px; font-size: 1.6rem; margin-bottom: 14px;
  background: var(--surface-soft); border: 1px solid var(--border);
}
.feature h3 { color: var(--ink); margin-bottom: 6px; font-size: 1.2rem; }
.feature p { color: var(--muted); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
}
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--grad); color: #fff; font-weight: 900; font-size: 1.2rem; margin-bottom: 14px;
  box-shadow: var(--glow-turq);
}
.step h3 { color: var(--ink); margin-bottom: 6px; font-size: 1.15rem; }
.step p { color: var(--muted); }

/* Stats band */
.stats-band { padding: 54px 0; }
.stats-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: var(--grad); border-radius: 26px; padding: 40px 30px;
  box-shadow: var(--shadow-lg);
}
.counter { text-align: center; color: #fff; }
.counter strong { display: block; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1; }
.counter span { color: rgba(255, 255, 255, 0.9); font-weight: 600; }

/* Price tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.tab {
  cursor: pointer; font: inherit; font-weight: 700; font-size: .92rem;
  padding: 10px 16px; border-radius: 999px;
  background: var(--surface); color: var(--ink); border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: all .2s;
}
.tab:hover { transform: translateY(-2px); }
.tab.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--glow-turq); }
.tab-panel { display: none; animation: fadeUp .35s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.price-list {
  list-style: none; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 26px; box-shadow: var(--shadow);
  column-count: 2; column-gap: 40px;
}
.price-list li {
  display: flex; justify-content: space-between; gap: 14px; break-inside: avoid;
  padding: 12px 0; border-bottom: 1px dashed var(--border); color: #41496b;
}
.price-list li b { color: var(--teal); white-space: nowrap; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .3s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 12px; font-size: 1.1rem; }
.review blockquote { color: #41496b; font-size: 1.02rem; margin-bottom: 14px; }
.review figcaption { color: var(--muted); font-weight: 700; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 4px 22px; box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--coral); font-size: 1.4rem; font-weight: 800; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 18px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info p { color: var(--muted); margin-bottom: 18px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--coral); }
.contact-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.contact-form h3 { color: var(--ink); font-size: 1.3rem; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form textarea { resize: vertical; }

/* Footer expanded */
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand strong { color: var(--ink); }
.footer-col h4 { color: var(--ink); margin-bottom: 14px; font-size: 1.02rem; }
.footer-col a, .footer-col span { display: block; color: var(--muted); padding: 5px 0; }
.footer-col a:hover { color: var(--coral); }

/* Back to top */
.back-top {
  position: fixed; left: 18px; bottom: 18px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface); color: var(--ink);
  font-size: 1.2rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding: 60px 0 76px; }
  .feature-grid, .steps, .review-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .feature-grid, .steps, .review-grid { grid-template-columns: 1fr; }
  .price-list { column-count: 1; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============ THEME TOGGLE ============ */
.nav { gap: 12px; }
.brand { margin-right: auto; }
.theme-btn {
  width: 42px; height: 42px; border-radius: 12px; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface); color: var(--ink);
  font-size: 1.1rem; box-shadow: var(--shadow); transition: transform .2s, background .2s;
  flex: 0 0 auto;
}
.theme-btn:hover { transform: translateY(-2px); }

/* Dark theme */
[data-theme="dark"] {
  --bg-0: #0f1530;
  --bg-1: #161d3e;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-soft: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.14);
  --ink: #eef1ff;
  --muted: #aab3d8;
  --text: #eef1ff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}
[data-theme="dark"] .site-header { background: rgba(15, 21, 48, 0.78); }
[data-theme="dark"] .nav-links { background: rgba(15, 21, 48, 0.97); }
[data-theme="dark"] .about-text p,
[data-theme="dark"] .review blockquote,
[data-theme="dark"] .price-list li { color: #c3cbef; }

/* ============ BEFORE / AFTER GALLERY ============ */
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 760px; margin: 0 auto; }
.ba {
  position: relative; aspect-ratio: 16 / 11; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  user-select: none; touch-action: pan-y;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: #fff; transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.ba-handle::after {
  content: "⇆"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-weight: 900; box-shadow: var(--glow-turq);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
}
.ba-label {
  position: absolute; bottom: 12px; padding: 5px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 800; letter-spacing: .5px;
  background: rgba(0, 0, 0, 0.55); color: #fff; pointer-events: none;
}
.ba-label-left { left: 12px; }
.ba-label-right { right: 12px; }

/* ============ MAP ============ */
.map {
  margin-top: 36px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  height: 340px;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }

@media (max-width: 760px) {
  .ba-grid { grid-template-columns: 1fr; }
}
