/* ============================================================
   WaterLife — Shared Premium Design System
   Used by: index.html, catalog/index.html, and other inner pages
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --wl-ink-950: #06091a;
  --wl-ink-900: #0a1530;
  --wl-ink-800: #0f1d44;
  --wl-ink-700: #172a5e;
  --wl-azure-400: #5eb1ff;
  --wl-azure-500: #3a8dff;
  --wl-azure-600: #1e6bff;
  --wl-cyan-300: #7df0ff;
  --wl-cyan-400: #3ce0ff;
  --wl-cyan-500: #00c8e6;
  --wl-text: #eaf0ff;
  --wl-text-muted: rgba(234, 240, 255, .65);
  --wl-text-dim: rgba(234, 240, 255, .45);
  --wl-stroke: rgba(255, 255, 255, .08);
  --wl-stroke-strong: rgba(255, 255, 255, .14);
  --wl-ease: cubic-bezier(.22, 1, .36, 1);
  --wl-radius-sm: 12px;
  --wl-radius-md: 18px;
  --wl-radius-lg: 24px;
  --wl-radius-xl: 32px;
  --wl-shadow-glow: 0 10px 40px rgba(30, 107, 255, .35);
  --wl-shadow-card: 0 20px 50px rgba(0, 0, 0, .35);
  --wl-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wl-font-display: 'Space Grotesk', 'Inter', sans-serif;
}

/* ---------- Base ---------- */
.wl-app, .wl-app * { box-sizing: border-box; }
.wl-app {
  background: var(--wl-ink-950);
  color: var(--wl-text);
  font-family: var(--wl-font-sans);
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: common-ligatures;
  font-feature-settings: 'cv11', 'ss01';
  text-rendering: optimizeLegibility;
}
.wl-app a { color: inherit; text-decoration: none; }
.wl-app img { max-width: 100%; height: auto; }
.wl-display { font-family: var(--wl-font-display); letter-spacing: -.02em; }

/* Scrollbar */
.wl-app ::-webkit-scrollbar { width: 10px; }
.wl-app ::-webkit-scrollbar-track { background: var(--wl-ink-950); }
.wl-app ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--wl-azure-600), var(--wl-cyan-400));
  border-radius: 999px;
}
.wl-app ::selection { background: var(--wl-cyan-400); color: var(--wl-ink-950); }

/* ---------- Layout ---------- */
.wl-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .wl-container { padding: 0 32px; } }
.wl-section { padding: 96px 0; position: relative; }
@media (min-width: 1024px) { .wl-section { padding: 144px 0; } }

/* ---------- Surfaces ---------- */
.wl-glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--wl-stroke);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.wl-glass-strong {
  background: linear-gradient(160deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
  border: 1px solid var(--wl-stroke-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ---------- Type ---------- */
.wl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--wl-stroke);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--wl-cyan-300); font-weight: 500;
}
.wl-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wl-cyan-400); animation: wlPulse 2s ease-in-out infinite; }
@keyframes wlPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.wl-h1, .wl-h2, .wl-h3 { font-family: var(--wl-font-display); letter-spacing: -.02em; font-weight: 700; line-height: 1; }
.wl-h1 { font-size: clamp(40px, 7vw, 88px); line-height: .95; }
.wl-h2 { font-size: clamp(32px, 5vw, 64px); }
.wl-h3 { font-size: clamp(20px, 2.5vw, 28px); line-height: 1.15; }
.wl-lead { font-size: clamp(15px, 1.2vw, 19px); color: var(--wl-text-muted); line-height: 1.6; }
.wl-text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #b8d8ff 55%, var(--wl-cyan-400) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wl-text-gradient-blue {
  background: linear-gradient(135deg, var(--wl-azure-400) 0%, var(--wl-cyan-400) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.wl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform .3s var(--wl-ease), box-shadow .3s ease, background-color .25s ease;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.wl-btn-primary {
  background: linear-gradient(135deg, var(--wl-azure-600) 0%, var(--wl-cyan-500) 100%);
  color: #fff;
  box-shadow: var(--wl-shadow-glow), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.wl-btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--wl-ease);
}
.wl-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(30, 107, 255, .55), inset 0 1px 0 rgba(255, 255, 255, .3); }
.wl-btn-primary:hover::after { transform: translateX(120%); }
.wl-btn-ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--wl-stroke-strong);
  color: #fff;
  backdrop-filter: blur(10px);
}
.wl-btn-ghost:hover { background: rgba(255, 255, 255, .10); border-color: rgba(255, 255, 255, .3); transform: translateY(-3px); }
.wl-btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---------- Underline hover link ---------- */
.wl-link { position: relative; transition: color .2s ease; }
.wl-link::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--wl-ease);
}
.wl-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Nav ---------- */
.wl-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.wl-nav.scrolled {
  background: rgba(6, 9, 26, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--wl-stroke);
}
.wl-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
@media (min-width: 1024px) { .wl-nav-inner { padding: 18px 32px; } }
.wl-nav-logo { display: flex; align-items: center; gap: 10px; }
.wl-nav-logo img { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter .3s ease; }
.wl-nav-links { display: none; gap: 32px; font-size: 14px; }
@media (min-width: 1024px) { .wl-nav-links { display: flex; } }
.wl-nav-links a { color: rgba(255, 255, 255, .8); }
.wl-nav-links a:hover { color: #fff; }
.wl-nav-cta { display: flex; align-items: center; gap: 12px; }
.wl-nav-phone { display: none; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, .9); }
@media (min-width: 768px) { .wl-nav-phone { display: inline-flex; } }
.wl-nav-phone:hover { color: #fff; }
.wl-burger { display: inline-flex; flex-direction: column; gap: 4px; padding: 10px; cursor: pointer; background: none; border: 0; }
@media (min-width: 1024px) { .wl-burger { display: none; } }
.wl-burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.wl-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.wl-burger.open span:nth-child(2) { opacity: 0; }
.wl-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu — MUST be a sibling of <nav>, not a descendant.
   (If it lives inside a backdrop-filtered nav, it inherits the nav as its
   containing block instead of the viewport, and the bottom:0 collapses.) */
.wl-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #06091a;                   /* fully opaque */
  z-index: 110;                          /* above the nav (100) and sticky bar (80) */
  padding: 90px 24px 40px;               /* 90px top makes room for the fixed nav */
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform .4s var(--wl-ease);
  overflow-y: auto;
  visibility: hidden;                    /* removed from a11y/tab order when closed */
}
.wl-mobile-menu.open { transform: translateX(0); visibility: visible; }
/* Hide the sticky mobile bar while the menu is open */
body.wl-menu-open .wl-sticky-mobile { display: none; }
.wl-mobile-menu a {
  padding: 18px 8px;
  font-size: 22px; font-weight: 500;
  border-bottom: 1px solid var(--wl-stroke);
  font-family: var(--wl-font-display);
}

/* ---------- Aurora/grid backgrounds ---------- */
.wl-aurora {
  position: absolute; pointer-events: none; filter: blur(140px); opacity: .3;
  background: conic-gradient(from 180deg at 50% 50%, var(--wl-azure-600), var(--wl-cyan-400), var(--wl-cyan-300), var(--wl-azure-600));
  border-radius: 999px;
}
.wl-bg-grid {
  background-image:
    linear-gradient(rgba(120, 200, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 200, 255, .06) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ---------- Hero ---------- */
.wl-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.wl-hero-video { position: absolute; inset: 0; overflow: hidden; }
.wl-hero-video video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(1.1) contrast(1.05);
  animation: wlHeroZoom 20s ease-out forwards;
}
@keyframes wlHeroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.wl-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(58, 141, 255, .22), transparent 60%),
    linear-gradient(180deg, rgba(6, 9, 26, .35) 0%, rgba(6, 9, 26, .58) 60%, rgba(6, 9, 26, 1) 100%);
}
.wl-hero-content { position: relative; z-index: 2; padding: 140px 0 100px; }
/* Mobile: center the hero so text isn't glued to the left edge */
@media (max-width: 700px) {
  .wl-container { padding: 0 22px; }
  .wl-hero-content { padding: 120px 0 90px; text-align: center; }
  .wl-hero-content > div { margin-left: auto; margin-right: auto; }
  .wl-hero-content .wl-lead { margin-left: auto !important; margin-right: auto !important; }
  .wl-hero-content > div > div { justify-content: center; }
  .wl-hero-content > div > div .wl-btn { flex: 1 1 100%; justify-content: center; }
}
.wl-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, .5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.wl-scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--wl-cyan-400), transparent); }

/* ---------- Stats ---------- */
.wl-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 1024px) { .wl-stats { grid-template-columns: repeat(4, 1fr); gap: 48px; } }
.wl-stat-num {
  font-family: var(--wl-font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px); line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--wl-azure-400), var(--wl-cyan-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wl-stat-label { color: var(--wl-text-muted); font-size: 14px; }

/* ---------- Pipeline (legacy) ---------- */
.wl-pipeline-wrap { position: relative; margin-bottom: 64px; }
.wl-pipe-stage .glow { filter: drop-shadow(0 0 22px var(--wl-cyan-400)); }

/* ---------- Cinematic purification scene ---------- */
.wl-purify-scene {
  position: relative;
  margin: 0 auto 56px;
  max-width: 1280px;
  padding: 0 4px;
}
.wl-purify-scene svg {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35));
}
/* Horizontal scene on desktop/tablet, vertical scene on phones */
.wl-purify-h { display: block; }
.wl-purify-v { display: none; width: 100%; max-width: 400px; height: auto; margin: 0 auto; }
@media (max-width: 640px) {
  .wl-purify-h { display: none; }
  .wl-purify-v { display: block; }
}
.wl-cart-glow {
  transition: opacity .5s var(--wl-ease);
  filter: blur(2px);
}
/* Caption strip under the scene */
.wl-stage-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 1280px;
  margin: -10px auto 0;
  padding: 0 12px;
}
.wl-stage-strip > div {
  text-align: center;
  font-size: 12px;
  color: var(--wl-text-muted);
  line-height: 1.35;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.wl-stage-strip .num {
  font-family: var(--wl-font-display);
  font-weight: 700;
  color: var(--wl-cyan-300);
  font-size: 11px;
  letter-spacing: 1px;
}
@media (max-width: 640px) {
  /* Vertical scene already labels each stage — hide the strip on phones */
  .wl-stage-strip { display: none; }
}

/* ---------- Stage cards grid (pipeline & generic) ---------- */
.wl-grid { display: grid; gap: 20px; }
.wl-grid-2 { grid-template-columns: repeat(1, 1fr); }
.wl-grid-3 { grid-template-columns: repeat(1, 1fr); }
.wl-grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .wl-grid-2, .wl-grid-3, .wl-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .wl-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .wl-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.wl-stage-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--wl-stroke);
  border-radius: var(--wl-radius-md);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .4s var(--wl-ease), border-color .3s ease;
}
.wl-stage-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 141, 255, .18), transparent 70%);
  pointer-events: none;
}
.wl-stage-card:hover { transform: translateY(-4px); border-color: rgba(60, 224, 255, .25); }
.wl-stage-num {
  font-family: var(--wl-font-display); font-weight: 700;
  font-size: 52px; line-height: 1;
  background: linear-gradient(135deg, var(--wl-azure-400), var(--wl-cyan-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wl-stage-card.final {
  background: linear-gradient(160deg, rgba(30, 107, 255, .18), rgba(60, 224, 255, .06));
}

/* ---------- Product cards ---------- */
.wl-product-card {
  position: relative; overflow: hidden;
  border-radius: var(--wl-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid var(--wl-stroke);
  transition: transform .5s var(--wl-ease), box-shadow .5s ease, border-color .3s ease;
  display: block;
}
.wl-product-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(60, 224, 255, .18), transparent 55%);
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.wl-product-card:hover { transform: translateY(-8px); border-color: rgba(60, 224, 255, .3); box-shadow: 0 30px 60px rgba(0, 0, 0, .4); }
.wl-product-card:hover::before { opacity: 1; }
.wl-product-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--wl-ink-800), var(--wl-ink-900));
  overflow: hidden;
}
.wl-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--wl-ease); }
.wl-product-card:hover .wl-product-img img { transform: scale(1.08); }
.wl-product-body { padding: 24px 26px 26px; position: relative; z-index: 1; }
.wl-product-tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wl-cyan-300); margin-bottom: 8px; }
.wl-product-title { font-family: var(--wl-font-display); font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.wl-product-desc { color: var(--wl-text-muted); font-size: 14px; line-height: 1.55; margin: 0 0 18px; }
.wl-product-meta { display: flex; align-items: center; justify-content: space-between; }
.wl-product-price { font-weight: 600; color: #fff; }
.wl-product-arrow { color: var(--wl-cyan-300); transition: transform .3s var(--wl-ease); }
.wl-product-card:hover .wl-product-arrow { transform: translateX(4px); }

/* ---------- Feature icon card ---------- */
.wl-feat-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--wl-stroke);
  border-radius: var(--wl-radius-md);
  padding: 28px;
  transition: border-color .3s ease, transform .3s var(--wl-ease);
}
.wl-feat-card:hover { border-color: rgba(60, 224, 255, .25); transform: translateY(-4px); }
.wl-feat-icon {
  width: 52px; height: 52px; border-radius: var(--wl-radius-sm);
  background: linear-gradient(135deg, rgba(58, 141, 255, .25), rgba(60, 224, 255, .15));
  display: flex; align-items: center; justify-content: center;
  color: var(--wl-cyan-300);
  margin-bottom: 20px;
  transition: transform .3s var(--wl-ease);
}
.wl-feat-card:hover .wl-feat-icon { transform: scale(1.08); }
.wl-feat-title { font-family: var(--wl-font-display); font-size: 18px; font-weight: 600; margin: 0 0 6px; }
.wl-feat-desc { color: var(--wl-text-muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- Process step ---------- */
.wl-process-step { text-align: center; position: relative; }
.wl-process-num {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
  border: 1px solid var(--wl-stroke-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--wl-font-display); font-weight: 700; font-size: 20px;
  color: var(--wl-cyan-300);
  position: relative; z-index: 2;
}
.wl-process-line {
  display: none;
  position: absolute; top: 32px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 224, 255, .4), transparent);
}
@media (min-width: 1024px) { .wl-process-line { display: block; } }

/* ---------- Marquee ---------- */
.wl-marquee { display: flex; gap: 20px; animation: wlMarquee 50s linear infinite; width: max-content; }
.wl-marquee:hover { animation-play-state: paused; }
@keyframes wlMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wl-testimonial {
  width: 340px; flex-shrink: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--wl-stroke);
  border-radius: var(--wl-radius-md);
  padding: 24px;
}
.wl-stars { color: var(--wl-cyan-300); margin-bottom: 12px; letter-spacing: 2px; }

/* ---------- Form ---------- */
.wl-form { display: grid; gap: 14px; }
.wl-input, .wl-select {
  width: 100%; background: rgba(255, 255, 255, .05);
  border: 1px solid var(--wl-stroke);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff; font-family: var(--wl-font-sans); font-size: 15px;
  transition: border-color .25s ease, background-color .25s ease;
}
.wl-input::placeholder { color: rgba(255, 255, 255, .3); }
.wl-input:focus, .wl-select:focus { outline: 0; border-color: rgba(60, 224, 255, .5); background: rgba(255, 255, 255, .08); }
.wl-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wl-text-dim); margin-bottom: 6px; display: block; }
.wl-select option { background: var(--wl-ink-900); color: #fff; }

/* ---------- Footer ---------- */
.wl-footer { background: var(--wl-ink-950); padding: 64px 0 32px; border-top: 1px solid var(--wl-stroke); }
.wl-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .wl-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.wl-footer h4 { font-size: 13px; font-weight: 600; margin: 0 0 14px; color: #fff; }
.wl-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.wl-footer ul a { font-size: 14px; color: var(--wl-text-muted); }
.wl-footer ul a:hover { color: #fff; }
.wl-footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12px; color: var(--wl-text-dim); padding-top: 24px; border-top: 1px solid var(--wl-stroke); }
.wl-footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.wl-footer-logo img { height: 36px; filter: brightness(0) invert(1); }

/* ---------- Sticky mobile bar ---------- */
.wl-sticky-mobile {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  display: flex; gap: 8px; padding: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
  border: 1px solid var(--wl-stroke-strong);
  border-radius: var(--wl-radius-md);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}
@media (min-width: 1024px) { .wl-sticky-mobile { display: none; } }
.wl-sticky-mobile a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600; font-size: 14px; color: #fff;
}
.wl-sticky-mobile a.call { background: rgba(58, 141, 255, .25); }
.wl-sticky-mobile a.wa { background: rgba(16, 185, 129, .25); }

/* ---------- Floating social (desktop) ---------- */
.wl-float-social {
  display: none; position: fixed; right: 20px; bottom: 24px; z-index: 70;
  flex-direction: column; gap: 12px;
}
@media (min-width: 1024px) { .wl-float-social { display: flex; } }
.wl-float-social a {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  transition: transform .25s var(--wl-ease);
}
.wl-float-social a:hover { transform: translateY(-3px) scale(1.06); }
.wl-float-social .ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wl-float-social .wa { background: #00a884; }
.wl-float-social .ph { background: var(--wl-azure-500); }

/* ---------- Scroll progress ---------- */
#wl-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--wl-azure-600), var(--wl-cyan-400), var(--wl-cyan-300));
  z-index: 101; box-shadow: 0 0 12px rgba(60, 224, 255, .6);
  transition: width .1s linear;
}

/* ---------- Reveal ---------- */
.wl-reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--wl-ease), transform .9s var(--wl-ease); }
.wl-reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .wl-reveal { opacity: 1; transform: none; }
}

/* ---------- Page-style accents (inner pages catalog/etc) ---------- */
.wl-page-title { padding: 130px 0 40px; position: relative; overflow: hidden; }
.wl-page-title h1 { font-family: var(--wl-font-display); font-size: clamp(32px, 5vw, 56px); margin: 0; }
.wl-page-title .crumb { font-size: 13px; color: var(--wl-text-dim); margin-bottom: 10px; }
.wl-page-title .crumb a { color: var(--wl-cyan-300); }

/* ============ DARK THEME CONTENT-PAGE COMPONENTS ============ */
/* Unified dark theme — used by: about, contacts, ustanovka, halal, dillery, news */
.wlp { max-width: 1280px; margin: 0 auto; padding: 0 20px 80px; }
@media (min-width: 1024px) { .wlp { padding: 0 32px 80px; } }
.wlp-section { margin-bottom: 72px; position: relative; }
.wlp-section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
.wlp-section-sub {
  font-size: 15px; line-height: 1.6;
  color: var(--wl-text-muted);
  margin: -16px 0 28px;
  max-width: 720px;
}
.wlp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--wl-stroke);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--wl-cyan-300);
  margin-bottom: 14px;
}
.wlp-grid { display: grid; gap: 20px; }
.wlp-grid-2 { grid-template-columns: 1fr; }
.wlp-grid-3 { grid-template-columns: 1fr; }
.wlp-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .wlp-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .wlp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .wlp-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wlp-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .wlp-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.wlp-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--wl-stroke);
  border-radius: 20px;
  padding: 26px;
  transition: transform .35s var(--wl-ease), border-color .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
  color: var(--wl-text);
}
.wlp-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,141,255,.15), transparent 70%);
  pointer-events: none; opacity: .6;
}
.wlp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(60,224,255,.30);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.wlp-card h3 { font-family: 'Space Grotesk','Inter',sans-serif; font-size: 18px; font-weight: 600; margin: 0 0 8px; color: #fff; position: relative; }
.wlp-card p { font-size: 14px; line-height: 1.6; color: var(--wl-text-muted); margin: 0; position: relative; }
.wlp-card .wlp-num {
  font-family: 'Space Grotesk','Inter',sans-serif;
  font-weight: 700; font-size: 36px;
  background: linear-gradient(135deg, var(--wl-azure-400), var(--wl-cyan-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 12px;
  display: inline-block;
}
.wlp-card .wlp-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(58,141,255,.25), rgba(60,224,255,.15));
  display: flex; align-items: center; justify-content: center;
  color: var(--wl-cyan-300);
  margin-bottom: 16px;
  position: relative;
}
.wlp-card ul { color: var(--wl-text-muted); }
.wlp-prose {
  font-size: 16px; line-height: 1.7;
  color: var(--wl-text-muted);
  max-width: 760px;
}
.wlp-prose p { margin: 0 0 16px; }
.wlp-prose strong { color: #fff; font-weight: 600; }
.wlp-prose ul { padding-left: 22px; margin: 0 0 16px; }
.wlp-prose ul li { margin-bottom: 8px; }
.wlp-prose a { color: var(--wl-cyan-300); }
.wlp-cta-banner {
  background: linear-gradient(135deg, #0a1530 0%, #1e6bff 100%);
  border-radius: 28px;
  padding: 44px 32px;
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(255,255,255,.08);
}
.wlp-cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,224,255,.45), transparent 70%);
  filter: blur(40px);
}
.wlp-cta-banner::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,224,255,.3), transparent 70%);
  filter: blur(40px);
}
.wlp-cta-banner h3 { font-family: 'Space Grotesk','Inter',sans-serif; font-size: clamp(22px,3vw,30px); font-weight: 700; margin: 0 0 10px; position: relative; color: #fff; }
.wlp-cta-banner p { color: rgba(255,255,255,.8); margin: 0 0 22px; position: relative; }
.wlp-cta-banner .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; }
.wlp-cta-banner .wa-btn { background: #25d366; color: #fff !important; box-shadow: 0 10px 28px rgba(37,211,102,.4); }
.wlp-cta-banner .wa-btn:hover { background: #1eb858; }

/* Two-column split layout */
.wlp-split { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .wlp-split { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.wlp-media {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--wl-stroke);
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.wlp-media img { width: 100%; height: 100%; object-fit: cover; }
.wlp-media.contain { padding: 40px; }
.wlp-media.contain img { object-fit: contain; }
.wlp-media::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,224,255,.3), transparent 70%);
  filter: blur(40px); pointer-events: none;
}

/* Step list */
.wlp-steps { display: grid; gap: 14px; }
.wlp-step {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--wl-stroke);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color .25s, transform .25s;
  color: var(--wl-text);
}
.wlp-step:hover { border-color: rgba(60,224,255,.30); transform: translateX(3px); }
.wlp-step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wl-azure-600), var(--wl-cyan-500));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk','Inter',sans-serif;
  font-weight: 700; font-size: 16px;
  box-shadow: 0 6px 18px rgba(30,107,255,.30);
}
.wlp-step h3 { margin: 4px 0 4px; font-family: 'Space Grotesk','Inter',sans-serif; font-size: 17px; font-weight: 600; color: #fff; }
.wlp-step p { font-size: 14px; line-height: 1.55; color: var(--wl-text-muted); margin: 0; }

/* FAQ accordion */
.wlp-faq { background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border: 1px solid var(--wl-stroke); border-radius: 22px; overflow: hidden; }
.wlp-faq details { border-bottom: 1px solid var(--wl-stroke); padding: 20px 24px; transition: background-color .2s; }
.wlp-faq details:last-child { border-bottom: 0; }
.wlp-faq details[open] { background: rgba(60,224,255,.04); }
.wlp-faq summary { font-weight: 600; color: #fff; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; }
.wlp-faq summary::-webkit-details-marker { display: none; }
.wlp-faq summary::after { content: '+'; font-size: 24px; color: var(--wl-cyan-300); font-weight: 400; transition: transform .25s ease; }
.wlp-faq details[open] summary::after { transform: rotate(45deg); }
.wlp-faq details p { margin: 12px 0 0; color: var(--wl-text-muted); font-size: 14px; line-height: 1.6; }

/* Info callout */
.wlp-info {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 22px;
  background: rgba(60,224,255,.07);
  border: 1px solid rgba(60,224,255,.22);
  border-radius: 16px;
  font-size: 14px;
  color: var(--wl-text);
  line-height: 1.55;
}
.wlp-info svg { color: var(--wl-cyan-300); flex-shrink: 0; margin-top: 2px; }
.wlp-info strong { color: #fff; }

/* Stat strip */
.wlp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--wl-stroke);
  border-radius: 24px;
}
@media (min-width: 768px) { .wlp-stats { grid-template-columns: repeat(4, 1fr); } }
.wlp-stat-num {
  font-family: 'Space Grotesk','Inter',sans-serif;
  font-weight: 700; font-size: clamp(28px,4vw,42px);
  background: linear-gradient(135deg, var(--wl-azure-400), var(--wl-cyan-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 6px;
}
.wlp-stat-label { font-size: 13px; color: var(--wl-text-muted); }

/* Contact card */
.wlp-contact-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--wl-stroke);
  border-radius: 20px;
  padding: 22px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform .25s, border-color .25s;
  text-decoration: none; color: inherit;
}
.wlp-contact-card:hover { transform: translateY(-3px); border-color: rgba(60,224,255,.30); }
.wlp-contact-card .wlp-icon { margin: 0; flex-shrink: 0; }
.wlp-contact-card .label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wl-text-dim); margin-bottom: 4px; }
.wlp-contact-card .value { font-family: 'Space Grotesk','Inter',sans-serif; font-weight: 600; color: #fff; font-size: 17px; }

/* Form */
.wlp-form { display: grid; gap: 14px; }
.wlp-form .wl-label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wl-text-dim); margin-bottom: 6px; }
.wlp-form .wl-input, .wlp-form .wl-select, .wlp-form textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--wl-stroke);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.wlp-form .wl-input::placeholder, .wlp-form textarea::placeholder { color: rgba(255,255,255,.3); }
.wlp-form .wl-input:focus, .wlp-form .wl-select:focus, .wlp-form textarea:focus {
  outline: 0; border-color: rgba(60,224,255,.50); box-shadow: 0 0 0 4px rgba(60,224,255,.10); background: rgba(255,255,255,.08);
}
.wlp-form textarea { min-height: 110px; resize: vertical; }
.wlp-form .wl-select option { background: var(--wl-ink-900); color: #fff; }
