/* ============================================================
   CORSA PUMP — Premium Stylesheet
   Layered on top of Tailwind utilities for 3D + skeuomorphic feel
   ============================================================ */

:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-ink:   #0a0a0a;
  --c-red:   #d40a1f;
  --c-ember: #8a0712;
}

html, body {
  background: var(--c-white);
  color: var(--c-ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Float orbs / parallax decorations sit at negative offsets; without
     this, mobile browsers expose a horizontal scrollbar. */
  overflow-x: hidden;
}
img, video, iframe, svg { max-width: 100%; height: auto; }
/* WCAG-friendly tap target on mobile so buttons/links aren't fiddly. */
@media (max-width: 640px) {
  a, button, [role="button"], input[type="submit"], .btn-3d, .btn-ghost {
    min-height: 44px;
  }
  /* Section paddings: anything that uses pt-40/pb-32 etc. gets a tighter
     mobile baseline so heroes don't waste the screen's first impression. */
  .pt-40 { padding-top: 7rem; }     /* was 10rem */
  .pb-32 { padding-bottom: 5rem; }  /* was 8rem */
  .pb-24 { padding-bottom: 4rem; }  /* was 6rem */
  .py-24 { padding-top: 4rem; padding-bottom: 4rem; }
  .py-20 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .gap-16 { gap: 2.5rem; }          /* was 4rem */
  .gap-10 { gap: 1.75rem; }
  /* Float orbs are decorative — shrink so they don't dominate small screens. */
  .float-orb { width: 180px; height: 180px; filter: blur(22px); }
}

/* Lenis smooth-scroll baseline */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Anti-selection / anti-scrape baseline (hardened by security.js) */
.no-select, body.locked {
  -webkit-user-select: none;
  -moz-user-select:    none;
  -ms-user-select:     none;
  user-select:         none;
  -webkit-touch-callout: none;
}
img, .secure-img {
  -webkit-user-drag: none;
  -khtml-user-drag:  none;
  -moz-user-drag:    none;
  user-drag:         none;
  pointer-events: none;
}
.secure-image-wrap {
  position: relative; overflow: hidden;
  width: 100%; height: 100%;
}
.secure-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  z-index: 5;
  pointer-events: auto;
}
/* Inside product cards the image should fill ~80% of the media area.
   No filter here — pcard has transform-style:preserve-3d which causes
   filters on children to rasterize at 1× and appear blurry on HiDPI.
   The media area gradient + pcard box-shadow provides enough depth. */
.pcard__media .secure-image-wrap {
  width: 80%;
  height: 80%;
  background-size: contain !important;
}

/* ===== Preloader =====================================================*/
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, #131316 0%, #000 70%);
  display: grid; place-items: center;
  overflow: hidden;
}
#preloader .ring {
  position: absolute; width: 120vmax; height: 120vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,10,31,.18), transparent 60%);
  filter: blur(40px);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ----- Premium logo reveal --------------------------------------- */
#preloader .pre-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 22px;
  position: relative;
}
#preloader .pre-logo__plate {
  position: relative;
  display: grid; place-items: center;
  width: min(440px, 82vw);
  aspect-ratio: 16 / 7;
  padding: clamp(12px, 3vw, 22px) clamp(16px, 4vw, 34px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 25%, #ffffff 0%, #f0f0f3 55%, #d8d8de 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -2px 10px rgba(0,0,0,.12),
    0 22px 50px -12px rgba(212,10,31,.55),
    0 10px 24px rgba(0,0,0,.6);
  overflow: hidden;
  opacity: 0;
  transform: scale(.94) translateY(8px);
}
#preloader .pre-logo__img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.2));
}
/* Sweeping shine across the plate */
#preloader .pre-logo__shine {
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 60%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,.0) 40%,
    rgba(255,255,255,.7) 50%,
    rgba(255,255,255,.0) 60%,
    transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
}
#preloader .pre-logo__underline {
  display: block;
  width: 0%;                        /* animated to 100% by GSAP */
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d40a1f 50%, transparent 100%);
  box-shadow: 0 0 14px rgba(212,10,31,.85);
  max-width: min(440px, 82vw);
}
#preloader .pre-logo__tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .38em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  opacity: 0;
  text-align: center;
  padding: 0 12px;
  white-space: nowrap;
  max-width: 90vw;
}

@media (max-width: 520px) {
  #preloader .pre-logo { gap: 14px; }
  #preloader .pre-logo__plate {
    width: 72vw;
    padding: 10px 14px;
    border-radius: 16px;
  }
  #preloader .pre-logo__underline { max-width: 72vw; }
  #preloader .pre-logo__tag {
    font-size: 9px;
    letter-spacing: .2em;
    white-space: normal;
    line-height: 1.6;
  }
}

#preloader .progress {
  position: absolute; bottom: 8vh; left: 50%; transform: translateX(-50%);
  width: min(220px, 60vw); height: 2px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}
#preloader .progress > span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, #fff, var(--c-red));
  box-shadow: 0 0 18px rgba(212,10,31,.7);
}

/* ===== Hero =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #050506;
  color: #fff;
}
.hero__media {
  position: absolute; inset: 0;
  will-change: transform;
  overflow: hidden;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212,10,31,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}
.hero__video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  object-position: center center;
  opacity: .65;
}
@media (max-width: 768px) {
  .hero__video {
    width: 100%; height: 100%;
    top: 0; left: 0;
    transform: none;
    opacity: .75;
  }
}
.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.hero__title {
  /* Pre-animation state — invisible so the translateY(110%) shift on chars
     doesn't visually overlap the paragraph below before GSAP runs. */
  opacity: 0;
}
.hero__title.is-ready { opacity: 1; }
.hero__title .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}
.hero__title .accent { color: var(--c-red); }

/* ===== Buttons (3D skeuomorphic) ===================================== */
.btn-3d {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.6rem;
  font-weight: 600; letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(180deg, #e21a30 0%, var(--c-red) 45%, var(--c-ember) 100%);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -10px 24px rgba(0,0,0,.45),
    0 14px 28px -10px rgba(212,10,31,.55),
    0 4px 8px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-3d:hover { transform: translateY(-2px); box-shadow:
  inset 0 1px 0 rgba(255,255,255,.4),
  inset 0 -10px 24px rgba(0,0,0,.5),
  0 22px 40px -12px rgba(212,10,31,.7),
  0 6px 12px rgba(0,0,0,.4); }
.btn-3d:active { transform: translateY(1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px; color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.04);
  transition: all .25s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ===== Product Card (3D realism) ===================================== */
.pcard {
  position: relative;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff 0%, #f4f4f4 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 30px 60px -25px rgba(0,0,0,.45),
    0 12px 24px -16px rgba(0,0,0,.3);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  will-change: transform;
}
.pcard::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 24px;
  background: conic-gradient(from 180deg, transparent 0 70%, rgba(212,10,31,.4) 80%, transparent 100%);
  opacity: 0; transition: opacity .4s;
  z-index: -1; filter: blur(12px);
}
.pcard:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 50px 90px -30px rgba(212,10,31,.45),
    0 20px 40px -20px rgba(0,0,0,.55);
}
.pcard:hover::before { opacity: 1; }
.pcard__media {
  position: relative;
  aspect-ratio: 4/5;
  background: radial-gradient(ellipse at 50% 35%, #fff 0%, #f2f2f2 70%, #e8e8e8 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.pcard__media img { max-width: 78%; max-height: 78%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); }
.pcard__body { padding: 1.4rem 1.5rem 1.6rem; position: relative; }
.pcard__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.25rem; }
.pcard__meta  { color: #666; font-size: .9rem; }
.pcard__cta   { color: var(--c-red); font-weight: 600; text-decoration: none; }
.pcard__cta:hover { text-decoration: underline; }

/* Stretched link — makes the whole pcard clickable via the View link.
   The WhatsApp icon (z-index: 10) stays above this overlay so its click is preserved. */
.pcard__stretched::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pcard { position: relative; cursor: pointer; }

/* ===== Section dividers (metallic) ==================================== */
.metal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.25), transparent);
}

/* ===== Floating water drop / pump bits =============================== */
.float-orb {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), rgba(212,10,31,.25) 45%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  will-change: transform;
}

/* ===== Reveal helpers (used by GSAP) ================================= */
.reveal-up   { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right{ opacity: 0; transform: translateX(40px); }
.reveal-zoom { opacity: 0; transform: scale(.92); }

/* ===== Admin (CMS) ==================================================== */
.admin-shell {
  background: #08080a;
  color: #f1f1f1;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
/* Subtle backdrop pattern */
.admin-shell::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(212,10,31,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(56,189,248,.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.admin-shell > * { position: relative; z-index: 1; }

/* Legacy card class (kept for views still using it) */
.admin-card {
  background: linear-gradient(160deg, #16161c 0%, #0e0e12 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.6);
}

/* ===== Sidebar ============================================================== */
.admin-side {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 260px;
  background: linear-gradient(180deg, #0d0d11 0%, #08080a 100%);
  border-right: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column;
  padding: 1.5rem 1rem 1.25rem;
  overflow-y: auto;
  z-index: 30;
}

.admin-side__brand {
  position: relative;
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none;
  padding: .25rem .25rem;
  margin-bottom: 1.5rem;
}
/* White polished plate matching the public-site logo */
.admin-side__brand-mark {
  position: relative;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  padding: 8px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, #f0f0f3 55%, #d8d8de 100%);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -2px 6px rgba(0,0,0,.10),
    0 0 0 1px rgba(255,255,255,.08),
    0 10px 22px -8px rgba(212,10,31,.55),
    0 4px 10px rgba(0,0,0,.45);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
/* Red glow halo behind the plate */
.admin-side__brand-mark::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 18px;
  background: radial-gradient(closest-side, rgba(212,10,31,.55), transparent 70%);
  opacity: .55; filter: blur(12px);
  z-index: -1;
  transition: opacity .35s;
}
.admin-side__brand:hover .admin-side__brand-mark {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -2px 8px rgba(0,0,0,.15),
    0 16px 32px -8px rgba(212,10,31,.85),
    0 6px 14px rgba(0,0,0,.5);
}
.admin-side__brand:hover .admin-side__brand-mark::before { opacity: 1; }
.admin-side__brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.2));
}
.admin-side__brand-text { line-height: 1.15; min-width: 0; }
.admin-side__brand-text strong {
  display: block;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .16em;
  color: #fff;
}
.admin-side__brand-text small {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.admin-side__nav {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1;
}

.admin-side__group {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column; gap: 2px;
}
.admin-side__label {
  padding: 0 .9rem;
  margin-bottom: .5rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255,255,255,.32);
  text-transform: uppercase;
}

/* Nav items */
.admin-nav__item {
  position: relative;
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem .9rem;
  border-radius: 10px;
  color: rgba(255,255,255,.7);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s, color .25s, transform .25s;
}
.admin-nav__item svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  opacity: .85;
}
.admin-nav__item:hover {
  background: rgba(255,255,255,.04);
  color: #fff;
}
.admin-nav__item.is-active {
  background: linear-gradient(90deg, rgba(212,10,31,.18) 0%, rgba(212,10,31,.04) 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.admin-nav__item.is-active::before {
  content: '';
  position: absolute;
  left: -1rem; top: 8px; bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, #ff5566, #d40a1f);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 12px rgba(212,10,31,.7);
}
.admin-nav__item.is-active svg { opacity: 1; color: #ff5566; }

.admin-nav__badge {
  margin-left: auto;
  background: #d40a1f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 0 10px rgba(212,10,31,.5);
}

/* Footer (user + sign out) */
.admin-side__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.admin-side__user {
  display: flex; align-items: center; gap: .65rem;
  padding: .5rem .65rem;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  margin-bottom: .6rem;
}
.admin-side__avatar {
  width: 34px; height: 34px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, #d40a1f 0%, #7a0512 100%);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.admin-side__user-meta { line-height: 1.15; min-width: 0; flex: 1; }
.admin-side__user-meta strong {
  display: block;
  font-size: 12.5px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}
.admin-side__user-meta small {
  display: block;
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}
.admin-side__signout {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .55rem;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: .04em;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  background: transparent;
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.admin-side__signout:hover {
  color: #ff5566;
  background: rgba(212,10,31,.08);
  border-color: rgba(212,10,31,.35);
}

/* ===== Main + Top bar ====================================================== */
.admin-main {
  margin-left: 260px;
  padding: 1.5rem 2.5rem 4rem;
  min-height: 100vh;
}
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: .75rem 0 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.admin-topbar__greeting { line-height: 1.2; }
.admin-topbar__date {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.admin-topbar__greeting h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.admin-topbar__actions { display: flex; align-items: center; gap: .6rem; }
.admin-topbar__btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .9rem;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.admin-topbar__btn:hover {
  background: rgba(212,10,31,.12);
  border-color: rgba(212,10,31,.35);
  color: #fff;
}
.admin-topbar__btn--icon {
  position: relative;
  padding: .55rem .65rem;
}
.admin-topbar__dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d40a1f;
  box-shadow: 0 0 8px rgba(212,10,31,.8);
}

/* Toast */
.admin-toast {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.5rem;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
}
.admin-toast--ok {
  background: linear-gradient(90deg, rgba(34,197,94,.12), rgba(34,197,94,.04));
  border: 1px solid rgba(34,197,94,.3);
  color: #86efac;
}

/* ===== Stat cards ========================================================== */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1100px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .admin-stats { grid-template-columns: 1fr; } }

.admin-stat {
  position: relative;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--stat-grad, rgba(212,10,31,.18), rgba(10,10,14,.6)));
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
}
.admin-stat::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.admin-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(212,10,31,.35);
  box-shadow: 0 12px 30px -10px rgba(212,10,31,.35);
}

.admin-stat__icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  flex-shrink: 0;
}

.admin-stat__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.admin-stat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.admin-stat__value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
  margin: 4px 0 4px;
}
.admin-stat__sub {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* ===== Panel + Table ======================================================= */
.admin-panel {
  background: linear-gradient(180deg, rgba(20,20,26,.7) 0%, rgba(10,10,14,.7) 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.admin-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.admin-panel__head h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.admin-panel__head p {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.admin-panel__action {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: 12px;
  font-weight: 600;
  color: #ff5566;
  text-decoration: none;
  letter-spacing: .04em;
  transition: gap .2s;
}
.admin-panel__action:hover { gap: .65rem; }

.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table thead th {
  text-align: left;
  padding: .85rem 1.5rem;
  background: rgba(255,255,255,.02);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.admin-table tbody tr {
  cursor: pointer;
  transition: background .2s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.admin-table tbody tr:hover {
  background: rgba(212,10,31,.06);
}
.admin-table tbody tr:last-child { border-bottom: none; }
.admin-table tbody td {
  padding: 1rem 1.5rem;
  vertical-align: middle;
  color: #fff;
}
.admin-table__muted { color: rgba(255,255,255,.55) !important; }
.admin-table__user {
  display: inline-flex; align-items: center; gap: .65rem;
}
.admin-table__avatar {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(160deg, #2a2a36 0%, #14141a 100%);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
}
.admin-table__empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: rgba(255,255,255,.4);
}
.admin-table__empty svg {
  margin: 0 auto .8rem;
  opacity: .35;
}
.admin-table__empty p {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.admin-table__empty small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: rgba(255,255,255,.35);
}

/* Pills */
.admin-pill {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.admin-pill--unread {
  background: rgba(212,10,31,.18);
  color: #ff5566;
  border: 1px solid rgba(212,10,31,.4);
}
.admin-pill--success {
  background: rgba(34,197,94,.18);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.4);
}

/* ===== Mobile shrink ======================================================= */
@media (max-width: 860px) {
  .admin-side {
    width: 72px;
    padding: 1rem .65rem;
  }
  .admin-side__brand-text,
  .admin-side__user-meta,
  .admin-side__label,
  .admin-nav__item span,
  .admin-side__signout span,
  .admin-nav__badge { display: none; }
  .admin-nav__item { justify-content: center; padding: .65rem; }
  .admin-side__user { justify-content: center; }
  .admin-main { margin-left: 72px; padding: 1rem 1.5rem 3rem; }
  .admin-topbar { flex-direction: column; align-items: flex-start; gap: .75rem; }
}
.admin-input {
  width: 100%; padding: .8rem 1rem;
  background: rgba(10,10,14,.6);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  color: #fff;
  outline: none;
  font-size: 13.5px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.admin-input::placeholder { color: rgba(255,255,255,.3); }
.admin-input:focus {
  border-color: rgba(212,10,31,.55);
  background: rgba(10,10,14,.85);
  box-shadow: 0 0 0 3px rgba(212,10,31,.12);
}
.admin-input[type="file"] { padding: .55rem .7rem; cursor: pointer; }
.admin-input[type="file"]::file-selector-button {
  padding: .35rem .8rem;
  border-radius: 6px;
  background: rgba(212,10,31,.18);
  border: 1px solid rgba(212,10,31,.35);
  color: #ff5566;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-right: .8rem;
  cursor: pointer;
  transition: background .2s;
}
.admin-input[type="file"]::file-selector-button:hover { background: rgba(212,10,31,.28); }

.admin-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .8rem 1.4rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #e21a30, #a30716);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  border: 1px solid rgba(212,10,31,.45);
  box-shadow: 0 8px 18px -6px rgba(212,10,31,.55), inset 0 1px 0 rgba(255,255,255,.15);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.admin-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -6px rgba(212,10,31,.85), inset 0 1px 0 rgba(255,255,255,.2);
}
.admin-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.admin-btn--ghost:hover {
  background: rgba(255,255,255,.04);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  transform: translateY(-1px);
  box-shadow: none;
}
.admin-btn--danger {
  background: transparent;
  color: #ff5566;
  border-color: rgba(212,10,31,.4);
  box-shadow: none;
}
.admin-btn--danger:hover {
  background: rgba(212,10,31,.12);
  color: #fff;
  border-color: rgba(212,10,31,.7);
  box-shadow: none;
}

/* Admin form layout helpers */
.admin-form-group { margin-bottom: 1.5rem; }
.admin-form-group:last-child { margin-bottom: 0; }
.admin-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .55rem;
}
.admin-help {
  display: block;
  margin-top: .5rem;
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}

/* Section header inside a panel */
.admin-section {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.admin-section__icon {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(212,10,31,.18);
  border: 1px solid rgba(212,10,31,.35);
  color: #ff5566;
  flex-shrink: 0;
}
.admin-section__title { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -.005em; }
.admin-section__subtitle { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 1px; }

/* Existing-file preview block */
.admin-file-preview {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1rem;
  background: rgba(212,10,31,.06);
  border: 1px solid rgba(212,10,31,.25);
  border-radius: 10px;
  margin-bottom: .8rem;
}
.admin-file-preview__icon {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(212,10,31,.18);
  color: #ff5566;
  flex-shrink: 0;
}
.admin-file-preview__body { flex: 1; min-width: 0; }
.admin-file-preview__title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.admin-file-preview__meta {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.admin-file-preview__actions {
  display: flex; align-items: center; gap: .4rem;
  flex-shrink: 0;
}
.admin-file-preview__link,
.admin-file-preview__remove {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .35rem .7rem;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.admin-file-preview__link {
  color: rgba(255,255,255,.65);
  border-color: rgba(255,255,255,.1);
}
.admin-file-preview__link:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.admin-file-preview__remove {
  color: #ff5566;
  border-color: rgba(212,10,31,.35);
}
.admin-file-preview__remove:hover {
  background: rgba(212,10,31,.18);
  color: #fff;
  border-color: rgba(212,10,31,.7);
}
.admin-file-preview video,
.admin-file-preview img {
  height: 60px;
  width: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
}

/* ===== Showcase slider (home page) =================================== */
.showcase {
  position: relative;
  background: #0a0a0c;
  padding: 8rem 0 9rem;
  overflow: hidden;
}
.showcase__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.showcase__orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.showcase__orb--1 {
  top: -180px; left: -150px;
  background: radial-gradient(circle, rgba(212,10,31,.55), transparent 65%);
}
.showcase__orb--2 {
  bottom: -200px; right: -140px;
  background: radial-gradient(circle, rgba(80,80,90,.45), transparent 65%);
}
.showcase__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.showcase__nav {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  transition: all .25s ease;
  flex-shrink: 0;
}
.showcase__nav:hover {
  background: #d40a1f; border-color: #d40a1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(212,10,31,.7);
}

.showcase__stage {
  position: relative;
  min-height: 600px;
}
@media (max-width: 768px) { .showcase__stage { min-height: 760px; } }

.showcase__slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.98);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1), visibility 0s linear .8s;
}
.showcase__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.showcase__slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  /* Extra bottom space so the CTA button never crowds the dots / progress
     bar that sit at bottom: 1rem of the parent stage. */
  padding-bottom: 5.5rem;
}
@media (max-width: 768px) {
  .showcase__slide-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Media side */
.showcase__media {
  position: relative;
  aspect-ratio: 5/4;
  display: grid; place-items: center;
}
.showcase__halo {
  position: absolute;
  width: 80%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%,
    rgba(255,255,255,.18) 0%,
    rgba(212,10,31,.25) 35%,
    transparent 70%);
  filter: blur(20px);
  animation: haloFloat 6s ease-in-out infinite;
}
@keyframes haloFloat {
  0%,100% { transform: translateY(0) scale(1);   }
  50%     { transform: translateY(-12px) scale(1.05); }
}
.showcase__img.secure-image-wrap {
  position: relative;
  width: 70% !important;
  height: 70% !important;
  background-size: contain !important;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5));
  animation: pumpFloat 6s ease-in-out infinite;
}
@keyframes pumpFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* Content side */
.showcase__cat {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212,10,31,.14);
  color: #ff6b78;
  font-size: 11px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  border: 1px solid rgba(212,10,31,.35);
}
.showcase__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  font-weight: 800; letter-spacing: -.02em;
  color: #fff;
  margin: 1.2rem 0 1rem;
  line-height: 1;
}
.showcase__spec {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem; line-height: 1.6;
  margin-bottom: 2rem;
}

/* Dots & progress */
.showcase__dots {
  position: absolute;
  bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 5;
}
.showcase__dot {
  width: 28px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.18);
  transition: background .3s, width .3s;
}
.showcase__dot.is-active {
  background: #d40a1f;
  width: 44px;
  box-shadow: 0 0 12px rgba(212,10,31,.7);
}
.showcase__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.showcase__progress > span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, transparent, #d40a1f, #fff);
  box-shadow: 0 0 12px rgba(212,10,31,.65);
}

/* ===== Indian flag (used in marquee) ================================= */
.flag-in {
  display: inline-flex; flex-direction: column;
  width: 38px; height: 26px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.15);
  vertical-align: middle;
}
.flag-saffron, .flag-white, .flag-green {
  display: block; flex: 1; width: 100%;
}
.flag-saffron { background: #FF9933; }
.flag-white   { background: #FFFFFF; position: relative; }
.flag-green   { background: #138808; }
.flag-chakra {
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.2px solid #000080;
}

/* ===== Blog post cards =============================================== */
.post-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -22px rgba(212,10,31,.25), 0 12px 24px -10px rgba(0,0,0,.18);
}
.post-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #fff 0%, #f0f0f4 100%);
  overflow: hidden;
}
.post-card__media .secure-image-wrap {
  background-size: cover !important;
  background-position: center !important;
}
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.post-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #0a0a0c;
  transition: color .25s;
}
.post-card:hover .post-card__title { color: var(--c-red); }
.post-card__excerpt {
  color: rgba(10,10,12,.6);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post__body p   { margin-bottom: 1.2em; line-height: 1.75; color: rgba(10,10,12,.85); }
.post__body h2  { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.6rem; margin: 2em 0 .8em; }
.post__body h3  { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.3rem; margin: 1.6em 0 .6em; }
.post__body img { border-radius: 12px; margin: 1.5em 0; }
.post__body ul, .post__body ol { padding-left: 1.4em; margin-bottom: 1.2em; line-height: 1.75; }
.post__body li  { margin-bottom: .4em; }
.post__body a   { color: var(--c-red); text-decoration: underline; }

/* ===== FAQ accordion ================================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] {
  border-color: rgba(212,10,31,.35);
  box-shadow: 0 14px 30px -18px rgba(212,10,31,.25);
}
.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0a0a0c;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__caret {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--c-red);
}
.faq-item[open] .faq-item__caret { transform: rotate(180deg); }
.faq-item__a {
  padding: 0 22px 20px;
  color: rgba(10,10,12,.7);
  line-height: 1.65;
  font-size: 14px;
}

/* ===== Gallery ======================================================= */
.gallery-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(0,0,0,.04);
  color: rgba(10,10,12,.7);
  border: 1px solid rgba(0,0,0,.05);
  transition: all .25s;
  text-decoration: none;
}
.gallery-pill:hover {
  background: rgba(212,10,31,.08);
  color: var(--c-red);
  border-color: rgba(212,10,31,.35);
}
.gallery-pill.is-active {
  background: linear-gradient(180deg, #e21a30 0%, var(--c-red) 60%, var(--c-ember) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px -6px rgba(212,10,31,.55);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  /* Soft light-grey radial — matches product card aesthetic so the
     pump silhouette pops in the middle instead of getting cropped. */
  background: radial-gradient(ellipse at 50% 35%, #ffffff 0%, #e3e3e7 70%, #bfbfc6 100%);
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 8px 22px -14px rgba(0,0,0,.25);
  padding: 14%;
  display: grid; place-items: center;
}
.gallery-tile:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 20px 40px -18px rgba(212,10,31,.3);
}
.gallery-tile .secure-image-wrap {
  width: 100% !important;
  height: 100% !important;
  background-size: contain !important;
  background-position: center !important;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.35));
}
.gallery-tile__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  color: #fff;
  font-size: 13px;
  display: flex; flex-direction: column; gap: 4px;
}
.gallery-tile__caption strong { font-weight: 700; }
.gallery-tile__caption span   { color: rgba(255,255,255,.7); font-size: 11px; }

/* ===== About: Why Choose Us =========================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why__grid { grid-template-columns: 1fr; } }

.why-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 18px 36px -22px rgba(0,0,0,.18);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
  overflow: hidden;
  isolation: isolate;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,10,31,.08) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s; z-index: -1;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,10,31,.25);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 28px 50px -22px rgba(212,10,31,.28);
}
.why-card:hover::before { opacity: 1; }
.why-card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(160deg, #fff, #f3f3f5);
  color: #d40a1f;
  border: 1px solid rgba(0,0,0,.06);
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 6px 14px -4px rgba(212,10,31,.3);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.why-card:hover .why-card__icon { transform: rotate(-5deg) scale(1.06); }
.why-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.why-card__desc {
  color: rgba(10,10,12,.65);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== About: Manufacturing Infrastructure =========================== */
.infra {
  position: relative;
  background: linear-gradient(180deg, #050506 0%, #0a0a0c 100%);
  overflow: hidden;
}
.infra__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.infra__orb {
  position: absolute;
  width: 520px; height: 520px;
  bottom: -200px; left: -150px;
  background: radial-gradient(circle, rgba(212,10,31,.25), transparent 60%);
  filter: blur(80px);
}
.infra__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.infra__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.infra-stat {
  padding: 32px 28px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .4s;
}
.infra-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(212,10,31,.4);
  box-shadow: 0 24px 40px -18px rgba(212,10,31,.4);
}
.infra-stat__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 65%, rgba(212,10,31,.85) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.infra-stat__unit {
  font-size: .55em;
  font-weight: 600;
  color: #d40a1f;
  -webkit-text-fill-color: #d40a1f;
}
.infra-stat__label {
  margin-top: 12px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== About: Founder section ========================================= */
.founder__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) {
  .founder__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
.founder__photo {
  position: relative;
  display: grid; place-items: center;
}
.founder__avatar {
  position: relative;
  width: 280px; height: 280px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 6rem;
  letter-spacing: -.04em;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, #ffffff20 0%, transparent 50%),
    linear-gradient(135deg, #d40a1f 0%, #8a0712 100%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.3),
    inset 0 -10px 30px rgba(0,0,0,.4),
    0 30px 60px -20px rgba(212,10,31,.7),
    0 12px 24px rgba(0,0,0,.3);
  z-index: 2;
  overflow: hidden;
}
/* Photo variant: the <img> fills the circle. Background gradient stays
   visible if the image has transparency, giving a brand-colored backdrop. */
.founder__avatar--photo { padding: 0; }
.founder__avatar--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.founder__halo {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,10,31,.35) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 1;
  animation: founderPulse 4s ease-in-out infinite;
}
@keyframes founderPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.08); opacity: 1; }
}

.founder__content {
  position: relative;
}
.founder__quote-mark {
  position: absolute;
  top: -40px; left: -10px;
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(212,10,31,.18);
  font-weight: 800;
  pointer-events: none;
}
.founder__quote {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.65;
  color: rgba(10,10,12,.85);
  font-style: italic;
  margin-bottom: 28px;
  z-index: 1;
}
.founder__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0a0a0c;
}
.founder__role {
  margin-top: 4px;
  color: #d40a1f;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== About: Timeline / Milestones =================================== */
.timeline {
  position: relative;
  background: linear-gradient(180deg, #0a0a0c 0%, #050506 100%);
  padding: 7rem 0 9rem;
  overflow: hidden;
}
.timeline__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(212,10,31,.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(80,80,90,.3), transparent 55%);
  pointer-events: none;
}

.timeline__list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
}
/* Center vertical line */
.timeline__list::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px;
  left: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212,10,31,.45), rgba(255,255,255,.15) 70%, transparent);
}
@media (min-width: 700px) {
  .timeline__list::before { left: 50%; transform: translateX(-50%); }
}

.timeline__item {
  position: relative;
  padding: 0 0 48px 48px;
  animation-delay: var(--delay);
}
@media (min-width: 700px) {
  .timeline__item {
    width: 50%;
    padding: 0 40px 56px 40px;
  }
  .timeline__item:nth-child(odd)  { padding-right: 40px; padding-left: 0; text-align: right; }
  .timeline__item:nth-child(even) { margin-left: 50%; padding-left: 40px; padding-right: 0; text-align: left; }
}

.timeline__dot {
  position: absolute;
  top: 4px; left: 16px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d40a1f 0%, #8a0712 100%);
  border: 3px solid #0a0a0c;
  box-shadow: 0 0 0 1px rgba(212,10,31,.7), 0 0 18px rgba(212,10,31,.65);
  transform: translateX(-50%);
}
@media (min-width: 700px) {
  .timeline__item:nth-child(odd)  .timeline__dot { left: auto; right: -8px; transform: translateX(50%); }
  .timeline__item:nth-child(even) .timeline__dot { left: -8px; transform: translateX(-50%); }
}

.timeline__year {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #d40a1f;
  letter-spacing: .15em;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212,10,31,.1);
  border: 1px solid rgba(212,10,31,.35);
}
.timeline__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}
.timeline__desc {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Stats counter section ========================================= */
.stats {
  position: relative;
  background: linear-gradient(180deg, #0a0a0c 0%, #050506 100%);
  padding: 6rem 0;
  overflow: hidden;
}
.stats__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.stats__grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
}
.stats__orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.stats__orb--1 {
  top: -150px; left: -120px;
  background: radial-gradient(circle, rgba(212,10,31,.28), transparent 60%);
}
.stats__orb--2 {
  bottom: -180px; right: -100px;
  background: radial-gradient(circle, rgba(80,80,90,.4), transparent 60%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; } }
@media (max-width: 540px) { .stats__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Vertical separator lines between stats (desktop only) */
@media (min-width: 901px) {
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%; bottom: 25%;
    right: -1rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.15), transparent);
  }
}

.stat {
  position: relative;
  text-align: center;
  padding: 1rem 0;
}
.stat__plate {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(160deg, #1c1c22 0%, #0e0e12 100%);
  border: 1px solid rgba(212,10,31,.35);
  color: #d40a1f;
  margin-right: .85rem;
  vertical-align: middle;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 18px -6px rgba(212,10,31,.5);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.stat:hover .stat__plate {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 14px 28px -6px rgba(212,10,31,.85);
}

.stat__number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  vertical-align: middle;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, rgba(212,10,31,.85) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__suffix {
  font-size: .7em;
  margin-left: 2px;
  background: linear-gradient(180deg, #ff5566, #d40a1f);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  display: block;
  margin-top: 1.1rem;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== IN THE FIELD section (cinematic pump-in-context strip) ====== */
.field {
  position: relative;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
  isolation: isolate;
  background: #050507;
}

/* Background layers — dark sky → field gradient + sun glow */
.field__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.field__sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 65%;
  background:
    radial-gradient(ellipse 70% 60% at 78% 28%, rgba(212,10,31,.22) 0%, transparent 55%),
    linear-gradient(180deg, #050507 0%, #0d0d12 50%, #0a1410 100%);
}

.field__horizon {
  position: absolute;
  left: 0; right: 0;
  top: 65%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(212,10,31,.5) 50%, transparent 95%);
  box-shadow: 0 0 14px rgba(212,10,31,.55);
}

/* Sun / hero light source */
.field__sun {
  position: absolute;
  top: 12%; right: 14%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,180,90,.55) 0%, rgba(212,10,31,.15) 35%, transparent 70%);
  filter: blur(6px);
  border-radius: 50%;
  animation: fieldSunPulse 8s ease-in-out infinite;
}
@keyframes fieldSunPulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Field — green-tinted dark gradient at the bottom */
.field__field {
  position: absolute;
  left: 0; right: 0;
  top: 65%; bottom: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(40,90,55,.45) 0%, transparent 70%),
    linear-gradient(180deg, #08120c 0%, #050807 100%);
}

/* Subtle perspective grid suggesting an open field */
.field__grid {
  position: absolute;
  left: 0; right: 0;
  top: 65%; bottom: 0;
  background-image:
    linear-gradient(rgba(120,180,140,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,180,140,.10) 1px, transparent 1px);
  background-size: 80px 30px;
  transform: perspective(420px) rotateX(58deg);
  transform-origin: top center;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85) 0%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.85) 0%, transparent 90%);
}

/* Falling water drops */
.field__drops {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .8;
}
@keyframes fieldDrop {
  0%   { transform: translateY(-30px); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(640px); opacity: 0; }
}

/* Heading */
.field__head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 1.5rem;
  color: #fff;
}
.field__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.field__title .accent { color: #d40a1f; }
.field__desc {
  margin-top: 1.4rem;
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Pump line-up stage */
.field__stage {
  position: relative;
  margin: 1rem 0 1rem;
  height: 520px;
}
@media (max-width: 1100px) { .field__stage { height: 440px; } }
@media (max-width: 720px)  { .field__stage { height: 320px; } }

/* Premium stage floor — red rim sits FLUSH at the bottom of the stage
   (under the pumps' feet, not cutting through them). Central spotlight
   glow rises from the line, fading upward. */
.field__ground {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  pointer-events: none;
  /* central red glow rising upward FROM the bottom line */
  background:
    radial-gradient(ellipse 45% 100% at 50% 100%, rgba(212,10,31,.45) 0%, rgba(212,10,31,0) 75%);
}
/* Red rim line — sits at the very bottom edge of the stage */
.field__ground::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,10,31,0) 5%,
    rgba(212,10,31,.9) 50%,
    rgba(212,10,31,0) 95%,
    transparent 100%);
  box-shadow: 0 0 22px rgba(212,10,31,.7);
}
/* Central glow pin-light — sits on the line, right under the family */
.field__ground::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -7px;
  width: 16px; height: 16px;
  background: radial-gradient(circle, #ff5566 0%, rgba(212,10,31,.6) 40%, transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(.5px);
}

/* Single composite "pump family" hero image — fills the stage. */
.field__hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  filter: drop-shadow(0 32px 30px rgba(0,0,0,.75));
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.field__hero img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.field__hero:hover { transform: translateY(-6px); }

/* Inline stats row (below pumps) */
.field__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 0;
  margin-top: -1.5rem;
}
.field__stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.field__stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, rgba(212,10,31,.85) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.field__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 600;
}
.field__stat-sep {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.2), transparent);
}
@media (max-width: 540px) {
  .field__stats { gap: 1.4rem; }
  .field__stat-sep { display: none; }
}

/* ===== Applications section (home) ================================== */
.apps {
  position: relative;
  background: #0a0a0c;
  padding: 8rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}
.apps__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.apps__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.apps__orb--1 {
  top: -120px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, #d40a1f 0%, transparent 70%);
}
.apps__orb--2 {
  bottom: -160px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, #d40a1f 0%, transparent 70%);
  opacity: .28;
}
.apps__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
}

.apps__grid-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .apps__grid-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .apps__grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .apps__grid-cards { grid-template-columns: 1fr; } }

.app-card {
  position: relative;
  padding: 2.2rem 1.5rem 2rem;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(28,28,34,.7) 0%, rgba(10,10,14,.6) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.07);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    border-color .35s,
    box-shadow .35s,
    background .35s;
  overflow: hidden;
  animation-delay: var(--app-delay);
}
.app-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212,10,31,.0), rgba(212,10,31,.55), rgba(212,10,31,.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,10,31,.35);
  background: linear-gradient(160deg, rgba(34,18,22,.85) 0%, rgba(10,10,14,.7) 100%);
  box-shadow:
    0 20px 40px -16px rgba(212,10,31,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.app-card:hover::before { opacity: 1; }

.app-card__num {
  position: absolute;
  top: 1rem; right: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.25);
  transition: color .35s;
}
.app-card:hover .app-card__num { color: rgba(212,10,31,.85); }

.app-card__icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(160deg, #1c1c22 0%, #0e0e12 100%);
  border: 1px solid rgba(212,10,31,.35);
  color: #d40a1f;
  margin-bottom: 1.4rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 18px -6px rgba(212,10,31,.5);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), color .35s;
}
.app-card:hover .app-card__icon {
  transform: translateY(-2px) rotate(-4deg) scale(1.04);
  color: #ff5566;
}

.app-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: .55rem;
  letter-spacing: -.01em;
}
.app-card__desc {
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Decorative corner ticks */
.app-card__corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: rgba(212,10,31,.55);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.app-card__corner--tl {
  top: 8px; left: 8px;
  border-top: 1.5px solid; border-left: 1.5px solid;
}
.app-card__corner--br {
  bottom: 8px; right: 8px;
  border-bottom: 1.5px solid; border-right: 1.5px solid;
}
.app-card:hover .app-card__corner { opacity: 1; }

/* ===== Our Process section =========================================== */
.process {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f8 100%);
  padding: 7rem 0 8rem;
  overflow: hidden;
}
.process__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.process__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
}
.process__orb {
  position: absolute;
  width: 480px; height: 480px;
  top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(212,10,31,.18), transparent 60%);
  filter: blur(70px);
  pointer-events: none;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
@media (max-width: 900px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process__grid { grid-template-columns: 1fr; } }

/* Connecting dashed line per-card — extends from each card's right edge
   into the gap, at exact icon-center height (38px padding + 28px half-icon = 66px).
   Cards at end-of-row (:nth-child(3n) on desktop) hide their line. */
@media (min-width: 901px) {
  .process__step::after {
    content: '';
    position: absolute;
    top: 66px;
    left: 100%;
    width: 28px;       /* gap width */
    height: 1px;
    background-image: repeating-linear-gradient(
      to right,
      rgba(212,10,31,.45) 0 7px,
      transparent 7px 14px
    );
    pointer-events: none;
    z-index: 1;
  }
  /* Last card per row (3rd, 6th) — no trailing line */
  .process__step:nth-child(3n)::after { display: none; }
}

/* Individual step card */
.process__step {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 28px 30px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 22px 40px -22px rgba(0,0,0,.18),
    0 8px 16px -10px rgba(0,0,0,.1);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .45s;
  isolation: isolate;
}
.process__step > * { position: relative; z-index: 2; }   /* keep content above the trailing line */
/* clip only the corner accent (not the trailing line) */
.process__corner { clip-path: inset(0 0 0 0); }
.process__step::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,10,31,.08) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s;
  z-index: -1;
}
.process__step:hover {
  transform: translateY(-6px);
  border-color: rgba(212,10,31,.25);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 36px 60px -22px rgba(212,10,31,.28),
    0 14px 24px -12px rgba(0,0,0,.18);
}
.process__step:hover::before { opacity: 1; }

/* Step number — big watermark in corner */
.process__num {
  position: absolute;
  top: 18px; right: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(212,10,31,.12));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  line-height: 1;
  pointer-events: none;
  transition: background .35s;
}
.process__step:hover .process__num {
  background: linear-gradient(180deg, rgba(212,10,31,.55), rgba(212,10,31,.18));
  -webkit-background-clip: text;
          background-clip: text;
}

/* Icon in 3D plate */
.process__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  margin-bottom: 22px;
  color: #d40a1f;
  background: linear-gradient(160deg, #ffffff 0%, #f3f3f5 100%);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 8px 18px -6px rgba(212,10,31,.32),
    0 2px 4px rgba(0,0,0,.08);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.process__step:hover .process__icon {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 14px 26px -6px rgba(212,10,31,.6),
    0 4px 8px rgba(0,0,0,.12);
}

.process__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0a0a0c;
  margin-bottom: 10px;
  letter-spacing: -.005em;
}
.process__desc {
  color: rgba(10,10,12,.65);
  font-size: 14px;
  line-height: 1.65;
}

/* Decorative red corner accent on hover */
.process__corner {
  position: absolute;
  bottom: 0; right: 0;
  width: 50px; height: 50px;
  border-radius: 18px 0 18px 0;
  background: linear-gradient(135deg, transparent 50%, rgba(212,10,31,.12) 50%);
  opacity: 0;
  transition: opacity .35s, transform .35s;
  transform: translate(8px, 8px);
}
.process__step:hover .process__corner {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== Testimonials section ========================================== */
.testimonials {
  position: relative;
  background: linear-gradient(180deg, #050506 0%, #0a0a0c 100%);
  padding: 7rem 0;
  overflow: hidden;
}
.testimonials__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.testimonials__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.testimonials__orb {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,10,31,.18), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

/* Marquee viewport */
.testimonials__marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  z-index: 5;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testiMarquee 50s linear infinite;
  will-change: transform;
}
.testimonials__marquee:hover .testimonials__track,
.testimonials__track:hover {
  animation-play-state: paused;   /* pause on hover */
}
@keyframes testiMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }   /* doubled list, so -50% = one loop */
}

/* Individual card */
.testimonial {
  flex: 0 0 auto;
  width: 380px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(160deg, #14141a 0%, #0d0d11 100%);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 30px 50px -25px rgba(0,0,0,.7);
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s, border-color .4s;
}
/* Always-visible red top accent line */
.testimonial::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #d40a1f 30%, #d40a1f 70%, transparent 100%);
  box-shadow: 0 0 14px rgba(212,10,31,.7);
  opacity: .85;
  transition: opacity .35s, height .35s;
}
.testimonial:hover {
  border-color: rgba(212,10,31,.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 30px 60px -22px rgba(212,10,31,.45),
    0 14px 28px -10px rgba(0,0,0,.7);
}
.testimonial:hover::after {
  opacity: 1;
  height: 4px;
}

.testimonial__quote {
  position: absolute;
  top: 6px; right: 22px;
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 110px; line-height: 1;
  color: rgba(212,10,31,.16);
  font-weight: 800;
  pointer-events: none;
}
.testimonial__stars {
  display: flex; gap: 3px;
  color: #ffb400;
  margin-bottom: 14px;
}
.testimonial__text {
  color: rgba(255,255,255,.82);
  font-size: 14px; line-height: 1.65;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #d40a1f 0%, #8a0712 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 6px 14px -4px rgba(212,10,31,.55);
  flex-shrink: 0;
}
.testimonial__name {
  color: #fff;
  font-weight: 700; font-size: 14px;
  letter-spacing: .01em;
}
.testimonial__meta {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  letter-spacing: .04em;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .testimonial { width: 300px; padding: 22px; }
  .testimonial__text { font-size: 13px; }
}

/* ===== WhatsApp inquiry buttons ====================================== */
.wa-icon, .wa-pill, .wa-full {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #25D366 0%, #1da851 60%, #0d6e35 100%);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, filter .25s;
}

/* small floating icon on product card media */
.wa-icon {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -4px 8px rgba(0,0,0,.25),
    0 8px 18px -6px rgba(37,211,102,.55),
    0 2px 6px rgba(0,0,0,.3);
}
.wa-icon::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.95); opacity: .55; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-icon:hover {
  transform: scale(1.1) rotate(-4deg);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -4px 8px rgba(0,0,0,.3),
    0 14px 28px -8px rgba(37,211,102,.85),
    0 4px 10px rgba(0,0,0,.4);
}
.wa-icon svg { position: relative; z-index: 1; }

/* compact pill (e.g. inside cards or lists) */
.wa-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 6px 14px -6px rgba(37,211,102,.5);
}
.wa-pill:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* full CTA button (product detail) */
.wa-full {
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-weight: 600; letter-spacing: .02em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -10px 24px rgba(0,0,0,.35),
    0 14px 28px -10px rgba(37,211,102,.6),
    0 4px 8px rgba(0,0,0,.3);
}
.wa-full:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -10px 24px rgba(0,0,0,.4),
    0 22px 40px -12px rgba(37,211,102,.85),
    0 6px 12px rgba(0,0,0,.4);
}
.wa-full:active { transform: translateY(1px); }

/* ===== Back to top button ============================================= */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #e21a30 0%, #d40a1f 45%, #8a0712 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -8px 16px rgba(0,0,0,.4),
    0 14px 30px -10px rgba(212,10,31,.6),
    0 4px 10px rgba(0,0,0,.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.9);
  transition: opacity .35s, visibility 0s linear .35s,
              transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .25s;
}
#back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity .35s, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
#back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -8px 16px rgba(0,0,0,.45),
    0 22px 40px -12px rgba(212,10,31,.85),
    0 6px 14px rgba(0,0,0,.5);
}
#back-to-top:active { transform: translateY(0) scale(.96); }

/* Pulsing ring around the button */
#back-to-top .back-to-top__ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(212,10,31,.5);
  opacity: 0;
  animation: btnRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes btnRing {
  0%   { transform: scale(.95); opacity: .55; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
#back-to-top svg {
  position: relative; z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
  transition: transform .25s;
}
#back-to-top:hover svg { transform: translateY(-2px); }

@media (max-width: 640px) {
  #back-to-top { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}

/* ===== Custom cursor (desktop only — public pages, NOT admin) ========
   `cursor: none` is gated on `body.has-cursor` so the native cursor
   stays visible if effects.js never boots (reduced-motion users,
   blocked scripts, JS errors) or when the pointer leaves the window. */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor:not(.admin-shell),
  body.has-cursor:not(.admin-shell) a,
  body.has-cursor:not(.admin-shell) button,
  body.has-cursor:not(.admin-shell) input,
  body.has-cursor:not(.admin-shell) textarea,
  body.has-cursor:not(.admin-shell) select,
  body.has-cursor:not(.admin-shell) [data-magnet],
  body.has-cursor:not(.admin-shell) .pcard { cursor: none; }
}
.admin-shell .cursor-dot,
.admin-shell .cursor-ring { display: none !important; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  will-change: transform;
  opacity: 0;
  transition: opacity .15s ease;
}
body.cursor-visible.has-cursor .cursor-dot,
body.cursor-visible.has-cursor .cursor-ring { opacity: 1; }
.cursor-dot {
  width: 8px; height: 8px;
  background: #d40a1f;
  box-shadow: 0 0 12px rgba(212,10,31,.85);
  transition: transform .05s linear;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(212,10,31,.55);
  background: rgba(212,10,31,.04);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: rgba(212,10,31,.9);
  background: rgba(212,10,31,.12);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== Magnetic button transforms ==================================== */
.btn-3d, [data-magnet] {
  transition: transform .15s ease-out, box-shadow .25s ease, background .25s, filter .25s;
}

/* ===== Page transition curtain ======================================= */
.page-curtain {
  position: fixed; inset: 0; z-index: 99998;
  pointer-events: none;
  display: flex;
}
.page-curtain > span {
  flex: 1;
  background: linear-gradient(180deg, #d40a1f, #8a0712);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .55s cubic-bezier(.7,0,.3,1);
}
.page-curtain > span:nth-child(2) { transition-delay: .07s; }
.page-curtain > span:nth-child(3) { transition-delay: .14s; }
.page-curtain.is-active { pointer-events: auto; }
.page-curtain.is-active > span { transform: scaleY(1); }

/* ===== Water drops (parallax decoration) ============================= */
[data-water-drops] {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.water-drop {
  position: absolute;
  bottom: -20px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), rgba(212,10,31,.4) 50%, transparent 70%);
  box-shadow: inset 0 -2px 4px rgba(255,255,255,.4);
  animation: dropRise linear infinite;
  pointer-events: none;
}
@keyframes dropRise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) scale(.6); opacity: 0; }
}

/* ===== Glassmorphism (.glass utility) ================================ */
.glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 30px 50px -25px rgba(0,0,0,.5);
}
.glass-light {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 22px 40px -22px rgba(0,0,0,.18);
}

/* ===== 3D pump viewer (CSS-based rotation on drag) =================== */
.pump-3d {
  position: relative;
  aspect-ratio: 4/5;
  perspective: 900px;
  cursor: grab;
  user-select: none;
}
.pump-3d:active { cursor: grabbing; }
.pump-3d__inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform 0s;
}
.pump-3d__inner img {
  width: 100%; height: 100%; object-fit: contain;
  pointer-events: none;
  /* NOTE: drop-shadow filter was removed from here intentionally.
     Applying filter: drop-shadow() on an img inside a preserve-3d /
     perspective context forces Chromium (Brave, Chrome, Edge) to
     rasterize the GPU texture at 1× (CSS pixels) instead of the
     device pixel ratio, making the image look blurry on HiDPI/Retina
     screens even when the source file is full quality.
     The shadow is now on the wrapper below so it renders outside the
     3D compositing context at the correct DPR. */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
/* Shadow lives outside the 3D compositing context → rendered at full
   device-pixel-ratio → sharp on HiDPI. Uses a pseudo-element so the
   shadow follows the pump silhouette without affecting the 3D rotation. */
.pump-3d::after {
  content: '';
  position: absolute;
  left: 15%; right: 15%; bottom: 4%;
  height: 40%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(212,10,31,.3) 0%, rgba(0,0,0,.45) 40%, transparent 70%);
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}
.pump-3d__hint {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  pointer-events: none;
}

/* ===== Video testimonial cards + modal =============================== */
.vt-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
  box-shadow: 0 16px 30px -20px rgba(0,0,0,.18);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.vt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(212,10,31,.3), 0 12px 24px -10px rgba(0,0,0,.18);
}
.vt-card__media {
  position: relative;
  aspect-ratio: 16/9;
  background: #0a0a0c;
  overflow: hidden;
}
.vt-card__play {
  width: 100%; height: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}
.vt-card__play img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.vt-card__play:hover img { transform: scale(1.04); }
.vt-card__btn {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #e21a30, #d40a1f);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 14px 30px -10px rgba(212,10,31,.7), 0 0 0 8px rgba(212,10,31,.15);
  transition: transform .3s, box-shadow .3s;
}
.vt-card__play:hover .vt-card__btn {
  transform: translate(-50%,-50%) scale(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 18px 40px -10px rgba(212,10,31,.85), 0 0 0 14px rgba(212,10,31,.2);
}
.vt-card__btn svg { margin-left: 3px; }
.vt-card__body { padding: 16px 18px 18px; }
.vt-card__quote { color: rgba(10,10,12,.78); font-size: 14px; line-height: 1.55; margin-bottom: 12px; font-style: italic; }
.vt-card__name  { font-weight: 700; font-size: 14px; color: #0a0a0c; }
.vt-card__role  { font-size: 12px; color: rgba(10,10,12,.55); margin-top: 2px; }

/* No-video (quote-only) variant — premium quote card */
.vt-card--quote {
  background: linear-gradient(160deg, #fff 0%, #f7f7f9 100%);
}
.vt-card__avatar-wrap {
  position: relative;
  padding: 32px 24px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.vt-card__avatar {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #d40a1f, #8a0712);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 18px -6px rgba(212,10,31,.5);
}
.vt-card__quote-mark {
  margin-left: auto;
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 84px;
  line-height: .8;
  color: rgba(212,10,31,.18);
  font-weight: 800;
  pointer-events: none;
  margin-top: -10px;
}
.vt-card--quote .vt-card__body { padding-top: 0; }
.vt-card--quote .vt-card__quote {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10,10,12,.85);
}

/* Modal player */
.vt-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
}
.vt-modal.is-open { display: block; }
.vt-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.vt-modal__inner {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(960px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(212,10,31,.5);
}
.vt-modal__frame { width: 100%; height: 100%; }
.vt-modal__frame iframe { width: 100%; height: 100%; border: 0; }
.vt-modal__close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 22px; line-height: 1;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .25s;
}
.vt-modal__close:hover { background: #d40a1f; border-color: #d40a1f; }

/* ===== Awards popup (full certificate viewer) ======================= */
.cert-tile.is-clickable { cursor: pointer; }
.cert-tile.is-clickable:hover { transform: translateY(-4px); }

.award-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
}
.award-modal.is-open { display: block; }
.award-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.award-modal__inner {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(700px, 92vw);
  max-height: 88vh;
  background: #fff;
  border-radius: 18px;
  overflow: auto;
  box-shadow: 0 40px 80px -20px rgba(212,10,31,.5);
  padding: 32px;
}
.award-modal__close {
  position: absolute;
  top: 14px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.05);
  color: rgba(10,10,12,.7);
  font-size: 22px; line-height: 1;
  transition: all .25s;
}
.award-modal__close:hover { background: #d40a1f; color: #fff; }
.award-modal__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  margin-bottom: 4px;
}
.award-modal__issuer {
  color: #d40a1f; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 16px;
}
.award-modal__desc {
  color: rgba(10,10,12,.7);
  font-size: 14px; line-height: 1.65;
  margin-bottom: 22px;
}
.award-modal__cert img,
.award-modal__cert iframe {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.06);
}
.award-modal__cert iframe { aspect-ratio: 1/1.3; }

/* ===== Catalogue download form ====================================== */
.cat-cta {
  background: linear-gradient(160deg, #0a0a0c 0%, #1a1a1f 100%);
  color: #fff;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.cat-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,10,31,.35), transparent 65%);
  filter: blur(40px);
}
.cat-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .cat-cta__grid { grid-template-columns: 1fr; }
}
.cat-cta__title { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.cat-cta__desc  { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.cat-cta__form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color .25s;
}
.cat-cta__form input::placeholder { color: rgba(255,255,255,.4); }
.cat-cta__form input:focus { border-color: #d40a1f; }
.cat-cta__form button {
  width: 100%;
  padding: 13px 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e21a30, #d40a1f);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  margin-top: 6px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 14px 28px -10px rgba(212,10,31,.55);
}
.cat-cta__form button:hover { transform: translateY(-2px); box-shadow: 0 22px 38px -10px rgba(212,10,31,.8); }

/* ===== Visitor counter (live) ======================================== */
.visitor-counter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.45);
  color: rgba(34,197,94,.95);
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
}
.visitor-counter__pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,.85);
}
.visitor-counter__pulse::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,.6);
  animation: vcPulse 2s ease-out infinite;
}
@keyframes vcPulse {
  0%   { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.visitor-counter__num   { font-weight: 800; font-size: 14px; }
.visitor-counter__label { color: rgba(34,197,94,.75); text-transform: lowercase; }

/* ===== Activity ticker (floating toast) ============================== */
.activity-ticker {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 70;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 14px;
  background: rgba(14,14,18,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.6), 0 0 0 1px rgba(212,10,31,.2);
  color: #fff;
  max-width: 320px;
  opacity: 0; visibility: hidden;
  transform: translateX(-12px);
  transition: opacity .4s, transform .4s cubic-bezier(.2,.8,.2,1), visibility 0s linear .4s;
}
.activity-ticker.is-show {
  opacity: 1; visibility: visible;
  transform: translateX(0);
  transition: opacity .4s, transform .4s cubic-bezier(.2,.8,.2,1);
}
.activity-ticker__avatar {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #d40a1f, #8a0712);
  font-weight: 700; font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 4px 10px -2px rgba(212,10,31,.5);
}
.activity-ticker__body { flex: 1; min-width: 0; }
.activity-ticker__line { font-size: 13px; line-height: 1.35; color: rgba(255,255,255,.95); }
.activity-ticker__line strong { font-weight: 700; }
.activity-ticker__time { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }
.activity-ticker__close {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  font-size: 16px; line-height: 1;
  display: grid; place-items: center;
  transition: background .25s, color .25s;
}
.activity-ticker__close:hover { background: rgba(255,255,255,.18); color: #fff; }

@media (max-width: 540px) {
  .activity-ticker {
    left: 12px; right: 12px;
    bottom: 80px;
    max-width: none;
    padding: 12px 14px 12px 12px;
    gap: 10px;
    border-radius: 16px;
  }
  .activity-ticker__avatar {
    width: 40px; height: 40px;
    font-size: 15px;
    flex-shrink: 0;
  }
  .activity-ticker__body { flex: 1; min-width: 0; }
  .activity-ticker__line {
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
  }
  .activity-ticker__time { font-size: 11px; margin-top: 3px; }
  .activity-ticker__close {
    width: 32px; height: 32px;
    font-size: 18px;
    align-self: flex-start;
    margin-top: 1px;
    background: rgba(255,255,255,.10);
    flex-shrink: 0;
  }
}

/* ===== Guarantee badge =============================================== */
.guarantee-badge {
  position: relative;
  width: 220px; height: 220px;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.guarantee-badge__ring {
  position: absolute; inset: 0;
  animation: gbSpin 30s linear infinite;
  pointer-events: none;
}
.guarantee-badge__ring svg {
  width: 100%; height: 100%;
  fill: rgba(212,10,31,.9);
}
@keyframes gbSpin { to { transform: rotate(360deg); } }

.guarantee-badge__inner {
  width: 140px; height: 140px;     /* smaller inner so ring text doesn't overlap */
  border-radius: 50%;
  background: linear-gradient(160deg, #d40a1f 0%, #8a0712 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 14px;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.3),
    inset 0 -10px 26px rgba(0,0,0,.4),
    0 16px 36px -12px rgba(212,10,31,.7),
    0 6px 12px rgba(0,0,0,.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.guarantee-badge__inner::before {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  pointer-events: none;
}
.guarantee-badge__years {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
}
.guarantee-badge__years.is-text {
  font-size: 2rem;
  letter-spacing: .04em;
}
.guarantee-badge__plus {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
}
.guarantee-badge__text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-top: 6px;
  line-height: 1.3;
}

/* ===== Product detail — Applications / Features panels ============== */
.pinfo-card {
  position: relative;
  background: linear-gradient(165deg, #fff 0%, #f9f9fb 100%);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 22px;
  padding: 36px 32px 32px;
  overflow: hidden;
  box-shadow: 0 24px 40px -22px rgba(212,10,31,.18), 0 8px 20px -16px rgba(0,0,0,.15);
  isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.pinfo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(212,10,31,.06) 0%, transparent 50%);
  z-index: -1;
}
.pinfo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 60px -22px rgba(212,10,31,.3), 0 14px 26px -14px rgba(0,0,0,.18);
}
.pinfo-card--dark {
  background: linear-gradient(165deg, #14141a 0%, #0a0a0c 100%);
  border-color: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}
.pinfo-card--dark::before {
  background: radial-gradient(ellipse at 100% 100%, rgba(212,10,31,.18) 0%, transparent 55%);
}
.pinfo-card__corner {
  position: absolute;
  width: 60px; height: 60px;
  border: 2px solid rgba(212,10,31,.5);
  pointer-events: none;
}
.pinfo-card__corner--tl { top: 14px; left: 14px;   border-right: 0; border-bottom: 0; border-radius: 12px 0 0 0; }
.pinfo-card__corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0;    border-radius: 0 0 12px 0; }
.pinfo-card__chip {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #d40a1f;
  background: rgba(212,10,31,.1);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,10,31,.3);
  margin-bottom: 14px;
}
.pinfo-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  color: inherit;
}
.pinfo-card--dark .pinfo-card__title { color: #fff; }
.pinfo-list { list-style: none; padding: 0; margin: 0; }
.pinfo-list li {
  display: flex; gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
  border-bottom: 1px dashed rgba(0,0,0,.05);
}
.pinfo-card--dark .pinfo-list li { border-color: rgba(255,255,255,.06); color: rgba(255,255,255,.78); }
.pinfo-list li:last-child { border-bottom: 0; }
.pinfo-list__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #e21a30, #8a0712);
  color: #fff;
  box-shadow: 0 4px 10px -2px rgba(212,10,31,.55);
  margin-top: 2px;
}

/* ===== Product detail — Engineered materials (tabs + cards) ========= */
.pmats-tabs {
  display: inline-flex; gap: 4px;
  padding: 4px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  margin-bottom: 28px;
  box-shadow: 0 6px 18px -10px rgba(0,0,0,.18);
}
.pmats-tab {
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(10,10,12,.6);
  background: transparent;
  cursor: pointer;
  transition: all .25s;
}
.pmats-tab:hover { color: #d40a1f; }
.pmats-tab.is-active {
  background: linear-gradient(180deg, #e21a30, #d40a1f);
  color: #fff;
  box-shadow: 0 8px 16px -6px rgba(212,10,31,.5);
}
.pmats-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pmats-grid.is-active { display: grid; animation: pmFade .4s ease-out; }
@keyframes pmFade { from { opacity: 0; transform: translateY(8px); } }
@media (max-width: 900px) { .pmats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pmats-grid { grid-template-columns: 1fr; } }
.pmats-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.pmats-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #d40a1f 50%, transparent 100%);
  transform: scaleX(.3);
  opacity: 0;
  transition: transform .35s, opacity .35s;
}
.pmats-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,10,31,.3);
  box-shadow: 0 22px 40px -22px rgba(212,10,31,.4), 0 6px 14px -8px rgba(0,0,0,.18);
}
.pmats-card:hover::after { transform: scaleX(1); opacity: 1; }
.pmats-card__icon {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(160deg, #fff, #f0f0f4);
  color: #d40a1f;
  border: 1px solid rgba(0,0,0,.05);
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 4px 10px -4px rgba(212,10,31,.4);
}
.pmats-card--motor .pmats-card__icon { color: #f4b400; }
.pmats-card__part {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em;
  color: rgba(10,10,12,.5);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pmats-card__material {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0a0a0c;
  line-height: 1.3;
}

/* ===== Product detail — Operating limits (stat cards) ============== */
.plimits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .plimits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .plimits-grid { grid-template-columns: 1fr; } }
.plimit-card {
  position: relative;
  padding: 24px 22px 28px;
  border-radius: 18px;
  background: linear-gradient(160deg, #14141a 0%, #050506 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.plimit-card::before {
  content: '';
  position: absolute; top: -40%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,10,31,.35), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.plimit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(212,10,31,.55);
}
.plimit-card__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ff8896;
  margin-bottom: 14px;
}
.plimit-card__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 75%, rgba(212,10,31,.85) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plimit-card__bar {
  position: absolute;
  bottom: 0; left: 22px; right: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d40a1f 50%, transparent 100%);
  opacity: .6;
}

/* ===== Product detail — Premium spec cards (replaces old tables) ====== */
.ptbl__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #d40a1f;
  margin-bottom: 22px;
  letter-spacing: -.005em;
  position: relative;
  padding-left: 16px;
}
.ptbl__title::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #e21a30, #8a0712);
  box-shadow: 0 0 12px rgba(212,10,31,.5);
}

/* Responsive spec card grid — each part/label = one card */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.spec-grid--limits {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.spec-card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 22px 22px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafb 100%);
  border: 2px solid rgba(0,0,0,.14);
  box-shadow:
    0 14px 30px -22px rgba(0,0,0,.18),
    0 4px 10px -8px rgba(212,10,31,.14);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1),
              box-shadow .3s ease,
              border-color .3s ease;
}
/* Red accent strip on the left edge */
.spec-card::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #e21a30, #8a0712);
  box-shadow: 0 0 10px rgba(212,10,31,.35);
  opacity: .7;
  transition: opacity .3s ease, width .3s ease;
}
/* Subtle dotted texture in the corner */
.spec-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,10,31,.07), transparent 70%);
  pointer-events: none;
}
.spec-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,10,31,.55);
  border-width: 2px;
  box-shadow:
    0 22px 44px -22px rgba(0,0,0,.25),
    0 8px 18px -8px rgba(212,10,31,.38);
}
.spec-card:hover::before { opacity: 1; width: 4px; }

.spec-card__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(10,10,12,.5);
}
.spec-card__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0a0a0c;
  letter-spacing: -.005em;
}

/* Operating-limits cards: larger, more "stat" feel */
.spec-card--limit { padding: 24px 24px 22px; }
.spec-card--limit .spec-card__value {
  font-size: 1.25rem;
  background: linear-gradient(180deg, #1a1a1f 0%, #d40a1f 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dark card variant — alternating cards in spec grids */
.spec-card--dark {
  background: linear-gradient(165deg, #1a1a22 0%, #0e0e14 100%);
  border-color: rgba(255,255,255,.07);
  box-shadow:
    0 14px 30px -22px rgba(0,0,0,.55),
    0 4px 10px -8px rgba(212,10,31,.18);
}
.spec-card--dark::before {
  background: linear-gradient(180deg, rgba(212,10,31,.7), rgba(212,10,31,.25));
  box-shadow: 0 0 10px rgba(212,10,31,.4);
}
.spec-card--dark::after {
  background: radial-gradient(circle, rgba(212,10,31,.1), transparent 70%);
}
.spec-card--dark:hover {
  border-color: rgba(212,10,31,.35);
  box-shadow:
    0 22px 44px -22px rgba(0,0,0,.65),
    0 8px 18px -8px rgba(212,10,31,.35);
}
.spec-card--dark .spec-card__label { color: rgba(255,255,255,.38); }
.spec-card--dark .spec-card__value { color: rgba(255,255,255,.92); }
.spec-card--dark.spec-card--limit .spec-card__value {
  background: linear-gradient(180deg, #fff 0%, rgba(212,10,31,.85) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 700px) {
  .ptbl__title { font-size: 1.3rem; }
  .spec-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
  .spec-card { padding: 18px 18px 16px; }
  .spec-card__value { font-size: .98rem; }
  .spec-card--limit .spec-card__value { font-size: 1.1rem; }
}

/* ===== Pump selector wizard ========================================== */
.wizard {
  background: linear-gradient(160deg, #fff, #f6f6f8);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.05);
}
.wizard__steps {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.wizard__step {
  flex: 1; height: 4px; border-radius: 4px;
  background: rgba(0,0,0,.08);
  transition: background .3s;
}
.wizard__step.is-active { background: var(--c-red); }
.wizard__step.is-done { background: rgba(212,10,31,.5); }
.wizard__panel { display: none; }
.wizard__panel.is-active { display: block; animation: wzFade .35s ease-out; }
@keyframes wzFade { from { opacity: 0; transform: translateY(8px); } }
.wizard__choice {
  display: block;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .25s;
}
.wizard__choice:hover {
  border-color: rgba(212,10,31,.45);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(212,10,31,.3);
}
.wizard__choice.is-selected {
  border-color: var(--c-red);
  background: rgba(212,10,31,.04);
  box-shadow: 0 14px 26px -14px rgba(212,10,31,.4);
}
.wizard__choice strong { display: block; font-weight: 700; margin-bottom: 2px; color: #0a0a0c; }
.wizard__choice span   { display: block; font-size: 13px; color: rgba(10,10,12,.55); }
.wizard__nav { display: flex; justify-content: space-between; margin-top: 24px; }
.wizard__back, .wizard__next {
  padding: 10px 22px; border-radius: 10px; font-weight: 600; font-size: 14px;
  transition: all .25s;
}
.wizard__back { background: rgba(0,0,0,.06); color: rgba(10,10,12,.7); }
.wizard__back:hover { background: rgba(0,0,0,.1); }
.wizard__next {
  background: linear-gradient(180deg, #e21a30, #d40a1f);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(212,10,31,.6);
}
.wizard__next:disabled { opacity: .4; cursor: not-allowed; }
.wizard__result {
  display: none;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(212,10,31,.06), transparent);
  border-radius: 14px;
}
.wizard__result.is-show { display: block; animation: wzFade .35s; }

/* ===== Product comparison ============================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table thead th {
  position: sticky; top: 80px;
  background: #fff;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-red);
  vertical-align: top;
}
.compare-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: 14px;
  color: rgba(10,10,12,.78);
  vertical-align: top;
}
.compare-table tbody th {
  text-align: left; padding: 14px 16px;
  font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(10,10,12,.5);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.compare-pick {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,.04);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.compare-pick.is-active {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 8px 16px -6px rgba(212,10,31,.6);
}

/* ===== Print/devtools nuke (paired with security.js) ================== */
@media print { body { display: none !important; } }

/* ===== Lightbox (shared by gallery + product hero) =================== */
.lb {
  position: fixed; inset: 0;
  background: rgba(5,5,8,.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 5vh 5vw;
}
.lb.is-open { display: flex; }
body.lb-open { overflow: hidden; }

.lb__stage {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  max-width: 100%;
  width: 100%;
}
.lb__frame {
  position: relative;
  /* Shrink-to-fit around the image so the frame never forces a crop or
     a stretch — the photo dictates its own ratio, the frame just paints
     a soft container around it. */
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(212,10,31,.55),
    0 0 0 1px rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  max-width: 92vw;
  max-height: 82vh;
}
.lb__img {
  display: block;
  /* Use natural aspect; bound only by viewport. Never crops. */
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 82vh;
  user-select: none;
  -webkit-user-drag: none;
  image-rendering: auto;
}
.lb__caption {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  line-height: 1.45;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lb__counter {
  color: rgba(255,255,255,.45);
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 700;
}

.lb__btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s, transform .25s, border-color .25s;
  -webkit-tap-highlight-color: transparent;
}
.lb__btn:hover {
  background: rgba(212,10,31,.6);
  border-color: rgba(212,10,31,.8);
}
.lb__close { top: 18px; right: 18px; }
.lb__prev  { left: 18px;  top: 50%; transform: translateY(-50%); }
.lb__next  { right: 18px; top: 50%; transform: translateY(-50%); }
.lb__prev:hover { transform: translateY(-50%) scale(1.08); }
.lb__next:hover { transform: translateY(-50%) scale(1.08); }
.lb__close:hover { transform: scale(1.08); }

/* Trigger affordance — pointer + subtle scale on tap */
[data-lightbox] {
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}

/* Expand icon button overlay (used on product hero) */
.lb-expand {
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  color: #0a0a0c;
  border-radius: 50%;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.3);
  cursor: zoom-in;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .25s, background .25s, color .25s;
  z-index: 5;
}
.lb-expand:hover {
  background: #d40a1f;
  color: #fff;
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .lb { padding: 3vh 3vw; }
  .lb__btn  { width: 40px; height: 40px; }
  .lb__close { top: 12px; right: 12px; }
  .lb__prev  { left: 10px; }
  .lb__next  { right: 10px; }
  .lb__caption { font-size: 13px; }
  .lb-expand { width: 38px; height: 38px; top: 10px; right: 10px; }
}
