/* ============================================================
   MARACHHIYA LAXMI AND SONS — Custom Styles
   Premium industrial B2B theme.
   Built on Tailwind (CDN) + custom component layer below.
============================================================ */

:root {
  --navy: #0F172A;
  --navy-700: #1E293B;
  --orange: #F97316;
  --orange-600: #EA580C;
  --royal: #2563EB;
  --royal-600: #1D4ED8;
  --mist: #F8FAFC;
  --ink: #1F2937;
  --ring: rgba(249, 115, 22, 0.45);
}

/* ---------- Base ---------- */
* { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }
/* clip (not hidden) keeps position:sticky working while killing horizontal scroll
   caused by AOS fade-left/right transforms; hidden is the fallback for old browsers */
body { overflow-x: hidden; overflow-x: clip; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

::selection { background: var(--orange); color: #fff; }

/* Accessible focus state */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Section scaffolding ---------- */
.section { padding: 72px 0; }
@media (min-width: 1024px) { .section { padding: 104px 0; } }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
}
.eyebrow--light { color: #fb923c; background: rgba(249, 115, 22, 0.14); }

.section-title {
  font-family: '"Plus Jakarta Sans"', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 2.6rem); line-height: 1.15;
  margin-top: 16px; letter-spacing: -0.02em;
}
.section-lead { margin-top: 16px; color: rgba(31, 41, 55, 0.72); font-size: 1.05rem; line-height: 1.65; }

/* ============================================================
   HEADER
============================================================ */
#site-header { background: transparent; }
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 6px 30px -16px rgba(15, 23, 42, 0.4);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
/* Light text while transparent over the dark hero */
#site-header:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.85); }
#site-header:not(.scrolled) .nav-link:hover { color: #fff; }
#site-header:not(.scrolled) #menu-toggle { color: #fff; }
#site-header:not(.scrolled) .logo-mark + span .text-navy { color: #fff; }

.logo-mark {
  display: inline-grid; place-items: center; border-radius: 12px;
  box-shadow: 0 8px 24px -10px rgba(249, 115, 22, 0.6);
  transition: transform 0.3s ease;
}
a:hover > .logo-mark { transform: rotate(-4deg) scale(1.05); }

.nav-link {
  display: inline-block; padding: 8px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy-700);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--orange); background: rgba(249, 115, 22, 0.08); }
.nav-link.active { color: var(--orange); }

.mobile-link {
  display: block; padding: 12px 14px; border-radius: 12px;
  font-weight: 600; color: var(--navy-700); transition: 0.2s;
}
.mobile-link:hover { background: rgba(249, 115, 22, 0.08); color: var(--orange); }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary, .btn-ghost-light, .btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer; line-height: 1; white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  box-shadow: 0 14px 30px -12px rgba(249, 115, 22, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(249, 115, 22, 0.8); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost-light {
  color: #fff; background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.btn-outline-light {
  color: #fff; background: transparent; border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

/* ============================================================
   HERO
============================================================ */
.hero-bg {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(37, 99, 235, 0.35), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(249, 115, 22, 0.25), transparent 55%),
    linear-gradient(160deg, #0b1220 0%, #0F172A 45%, #111c33 100%);
  background-size: 200% 200%, 200% 200%, 100% 100%;
  animation: heroGradient 16s ease infinite;
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%, 0% 50%, 0 0; }
  50% { background-position: 100% 50%, 100% 50%, 0 0; }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero-shape {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: 0.55;
}
.hero-shape--1 { width: 320px; height: 320px; background: var(--orange); top: -80px; right: -60px; animation: floatY 9s ease-in-out infinite; }
.hero-shape--2 { width: 360px; height: 360px; background: var(--royal); bottom: -120px; left: -80px; animation: floatY 11s ease-in-out infinite reverse; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-26px) translateX(14px); }
}

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: #e2e8f0; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14); backdrop-filter: blur(8px);
}
.badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.text-gradient {
  background: linear-gradient(100deg, #fb923c 0%, #fdba74 30%, #93c5fd 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}

.trust-tick {
  position: relative; padding-left: 26px; font-size: 14px; font-weight: 500; color: #cbd5e1;
}
.trust-tick::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(74, 222, 128, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Floating product cards */
.float-card {
  position: absolute; border-radius: 22px; padding: 22px;
  background: rgba(255, 255, 255, 0.96); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.float-card--main {
  top: 18%; left: 8%; width: 230px; z-index: 3; animation: floatCard 6s ease-in-out infinite;
}
.float-card--2 { top: 4%; right: 4%; width: 165px; z-index: 2; animation: floatCard 7s ease-in-out infinite 0.6s; }
.float-card--3 { bottom: 8%; right: 12%; width: 175px; z-index: 2; animation: floatCard 8s ease-in-out infinite 0.3s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-1.5deg); }
}
.float-card__icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; color: var(--navy); background: linear-gradient(135deg, #fde9d4, #fed7aa); margin-bottom: 12px; }
.float-card__icon--blue { color: var(--royal); background: linear-gradient(135deg, #dbeafe, #bfdbfe); width: 52px; height: 52px; }
.float-card__icon--orange { color: var(--orange-600); background: linear-gradient(135deg, #ffedd5, #fed7aa); width: 48px; height: 48px; }
.float-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--navy); }
.float-card__sub { font-size: 12px; color: #64748b; margin-top: 2px; }
.float-card__tag { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; color: #fff; background: var(--orange); padding: 4px 10px; border-radius: 999px; }

.float-badge {
  position: absolute; bottom: 24%; left: 0; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 14px;
  font-size: 13px; font-weight: 700; box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.6);
  animation: floatCard 5.5s ease-in-out infinite 0.4s;
}
.float-badge svg { color: var(--orange); }
.float-badge--quality { left: -6px; }

.scroll-indicator { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; }
.mouse { display: block; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 14px; position: relative; }
.wheel { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }

/* ---------- Hero PTMT tap water animation (pure CSS, GPU-friendly) ---------- */
.tap-anim { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; perspective: 1100px; }
.tap-glow { position: absolute; width: min(92%, 380px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.42), rgba(249, 115, 22, 0.12) 45%, transparent 68%);
  filter: blur(26px); top: 44%; left: 50%; transform: translate(-50%, -50%); z-index: 0; }
.tap-floater { position: relative; z-index: 2; animation: tapFloat 5s ease-in-out infinite; transform-style: preserve-3d; will-change: transform; }
.tap-rotor { animation: tap3d 7s ease-in-out infinite; transform-style: preserve-3d; will-change: transform; }
.tap-holder { position: relative; width: min(60vw, 230px); }
.tap-hero-img { position: relative; z-index: 2; width: 100%; height: auto; display: block; filter: drop-shadow(0 28px 26px rgba(15, 23, 42, 0.38)); }

/* Flowing water stream from the spout */
.water-stream { position: absolute; left: 14%; top: 29.5%; width: 7px; height: 196px; transform: translateX(-50%);
  border-radius: 0 0 5px 5px; overflow: hidden; z-index: 3; animation: streamPulse 1.1s ease-in-out infinite;
  background: linear-gradient(to bottom, rgba(191, 219, 254, 0) 0%, rgba(147, 197, 253, 0.9) 12%, rgba(59, 130, 246, 0.95) 55%, rgba(37, 99, 235, 0.85) 100%); }
.water-stream::before { content: ""; position: absolute; left: 0; right: 0; top: -30%; height: 160%;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0 5px, rgba(255, 255, 255, 0) 5px 15px);
  animation: streamFlow 0.45s linear infinite; }

/* Falling droplets */
.drop { position: absolute; left: 14%; top: 30%; width: 8px; height: 10px; transform: translateX(-50%); opacity: 0; z-index: 3;
  background: radial-gradient(circle at 50% 32%, #eff6ff, #3b82f6 82%);
  border-radius: 50% 50% 50% 50% / 62% 62% 40% 40%; filter: drop-shadow(0 2px 2px rgba(37, 99, 235, 0.4)); }
.drop-1 { animation: dropFall 1.7s ease-in 0s infinite; }
.drop-2 { animation: dropFall 1.7s ease-in 0.6s infinite; }
.drop-3 { animation: dropFall 1.7s ease-in 1.15s infinite; }

/* Ripple pool beneath the stream */
.ripple-pool { position: absolute; z-index: 1; left: 14%; top: 90%; width: 180px; height: 54px; transform: translate(-50%, -50%); }
.pool { position: absolute; left: 50%; top: 50%; width: 158px; height: 42px; transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.5), rgba(37, 99, 235, 0.18) 65%, transparent 78%); filter: blur(2px); }
.ripple { position: absolute; left: 50%; top: 50%; width: 48px; height: 16px; border: 2px solid rgba(96, 165, 250, 0.6);
  border-radius: 50%; transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
.r1 { animation: rippleOut 3s ease-out 0s infinite; }
.r2 { animation: rippleOut 3s ease-out 1s infinite; }
.r3 { animation: rippleOut 3s ease-out 2s infinite; }

@keyframes tapFloat { 0%, 100% { transform: translateY(5px); } 50% { transform: translateY(-15px); } }
@keyframes tap3d { 0%, 100% { transform: rotateY(-9deg) rotateZ(-3.5deg); } 50% { transform: rotateY(9deg) rotateZ(3.5deg); } }
@keyframes streamFlow { to { transform: translateY(15px); } }
@keyframes streamPulse { 0%, 100% { transform: translateX(-50%) scaleX(1); } 50% { transform: translateX(-50%) scaleX(1.35); } }
@keyframes dropFall { 0% { transform: translateX(-50%) translateY(0) scale(0.5); opacity: 0; }
  12% { opacity: 1; } 85% { opacity: 0.95; } 100% { transform: translateX(-50%) translateY(196px) scale(1.05); opacity: 0; } }
@keyframes rippleOut { 0% { transform: translate(-50%, -50%) scale(0.25); opacity: 0.75; } 100% { transform: translate(-50%, -50%) scale(1.7); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .tap-floater, .tap-rotor, .water-stream, .water-stream::before, .drop, .ripple { animation: none; }
  .drop { display: none; }
}

/* ---------- Brand strip ---------- */
.strip-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--navy); line-height: 1; }
.strip-label { margin-top: 6px; font-size: 13px; font-weight: 600; color: #64748b; }

/* ============================================================
   ABOUT
============================================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.06); border-radius: 24px;
  box-shadow: 0 10px 40px -12px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #fff; font-size: 18px;
  background: linear-gradient(135deg, var(--orange), var(--royal));
}
.value-card {
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.07); border-radius: 20px; padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(15, 23, 42, 0.28); border-color: rgba(249, 115, 22, 0.4); }
.value-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--orange); background: rgba(249, 115, 22, 0.1); margin-bottom: 14px; }
.value-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.value-text { margin-top: 6px; font-size: 0.9rem; color: rgba(31, 41, 55, 0.7); line-height: 1.55; }

/* ---------- Leadership / team ---------- */
.team-card { background: #fff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 20px;
  padding: 26px 20px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -24px rgba(15, 23, 42, 0.32); border-color: rgba(249, 115, 22, 0.4); }
.team-avatar { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; overflow: hidden;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--orange), var(--royal)); box-shadow: 0 12px 26px -10px rgba(37, 99, 235, 0.55); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--royal), var(--navy)); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, var(--orange-600), var(--navy-700)); }
.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, var(--navy-700), var(--royal)); }
.team-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.08rem; }
.team-role { margin-top: 3px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--orange); }
.team-email { display: inline-block; margin-top: 9px; font-size: 0.82rem; color: #64748b; word-break: break-all; transition: color 0.2s; }
.team-email:hover { color: var(--orange); }
.team-social { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.tsoc { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: #475569;
  background: var(--mist); border: 1px solid rgba(15, 23, 42, 0.08); transition: all 0.25s ease; }
.tsoc:hover { color: #fff; background: var(--orange); transform: translateY(-2px); border-color: transparent; }

.office-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 18px;
  background: var(--mist); border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 16px; padding: 16px 22px;
  font-weight: 600; color: var(--navy-700); font-size: 0.92rem; }
.office-bar a { color: var(--royal-600); word-break: break-all; }
.office-bar a:hover { color: var(--orange); }

/* ============================================================
   CREDENTIALS
============================================================ */
.cred-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%); top: -120px; left: -100px; filter: blur(40px); }
.cred-glow--right { left: auto; right: -120px; top: auto; bottom: -150px; background: radial-gradient(circle, rgba(249, 115, 22, 0.3), transparent 70%); }
.cred-card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px; padding: 22px 24px; backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.cred-card:hover { transform: translateY(-5px); border-color: rgba(249, 115, 22, 0.5); background: rgba(255, 255, 255, 0.09); }
.cred-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fb923c; }
.cred-value { display: block; margin-top: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #fff; font-size: 1.05rem; }
.chip {
  display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px; border-radius: 999px;
}

/* ============================================================
   PRODUCTS
============================================================ */
.product-card {
  position: relative; background: #fff; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 30px -16px rgba(15, 23, 42, 0.2);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 36px 70px -24px rgba(15, 23, 42, 0.4); }
.product-media {
  height: 200px; display: grid; place-items: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #eef2f7 100%);
}
.product-media::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--royal));
}
.product-media img { max-height: 162px; max-width: 78%; object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(15, 23, 42, 0.20)); transition: transform 0.5s ease; }
.product-card:hover .product-media img { transform: scale(1.08) translateY(-4px); }
.product-body { padding: 22px 24px 26px; }
.product-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.2rem; }
.product-desc { margin-top: 8px; font-size: 0.92rem; color: rgba(31, 41, 55, 0.7); line-height: 1.55; }
.product-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-weight: 700; font-size: 0.9rem; color: var(--orange-600);
  transition: gap 0.25s ease, color 0.25s ease;
}
.product-cta:hover { gap: 12px; color: var(--orange); }

/* ---------- Product series & finishes ---------- */
.series-card {
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 16px;
  padding: 18px 16px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.series-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -22px rgba(15, 23, 42, 0.3); border-color: rgba(249, 115, 22, 0.4); }
.series-dot { display: inline-block; width: 26px; height: 26px; border-radius: 50%; margin-bottom: 10px; box-shadow: inset 0 -4px 8px rgba(0,0,0,0.18), 0 4px 10px -4px rgba(15,23,42,0.4); }
.series-dot--blue  { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.series-dot--black { background: linear-gradient(135deg, #334155, #0f172a); }
.series-dot--white { background: linear-gradient(135deg, #ffffff, #e2e8f0); border: 1px solid rgba(15,23,42,0.12); }
.series-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.series-meta { margin-top: 3px; font-size: 0.78rem; color: #64748b; }

.finish-swatch { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--navy-700); background: #fff; border: 1px solid rgba(15,23,42,0.1); padding: 7px 14px; border-radius: 999px; }
.fs-dot { width: 14px; height: 14px; border-radius: 50%; }
.fs-white { background: #fff; border: 1px solid rgba(15,23,42,0.2); }
.fs-blue  { background: #2563eb; }
.fs-black { background: #0f172a; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-card {
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.07); border-radius: 20px; padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--royal)); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -24px rgba(15, 23, 42, 0.3); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 30px; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--mist); margin-bottom: 14px; }
.why-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.why-text { margin-top: 6px; font-size: 0.88rem; color: rgba(31, 41, 55, 0.7); line-height: 1.5; }

/* ============================================================
   PROCESS TIMELINE
============================================================ */
.timeline { position: relative; display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
@media (min-width: 1280px) { .timeline { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
.timeline-step { position: relative; }
.timeline-num {
  position: absolute; top: -14px; left: 20px; z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 13px; color: #fff;
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  box-shadow: 0 8px 18px -8px rgba(249, 115, 22, 0.8);
}
.timeline-card {
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.07); border-radius: 18px;
  padding: 28px 18px 20px; height: 100%; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -20px rgba(15, 23, 42, 0.3); }
.timeline-icon { font-size: 30px; margin-bottom: 10px; }
.timeline-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.98rem; }
.timeline-text { margin-top: 6px; font-size: 0.82rem; color: rgba(31, 41, 55, 0.65); line-height: 1.5; }

/* ============================================================
   CERTIFICATIONS
============================================================ */
.cert-card {
  position: relative; background: #fff; border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px; padding: 28px 24px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-card:hover { transform: translateY(-7px); box-shadow: 0 30px 60px -24px rgba(15, 23, 42, 0.3); }
.cert-ribbon { position: absolute; top: 16px; right: -34px; transform: rotate(45deg); background: #22c55e; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 40px; }
.cert-icon { font-size: 36px; }
.cert-title { margin-top: 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.cert-tag { font-size: 10px; font-weight: 700; color: var(--royal); background: rgba(37, 99, 235, 0.1); padding: 3px 8px; border-radius: 999px; vertical-align: middle; }
.cert-text { margin-top: 8px; font-size: 0.9rem; color: rgba(31, 41, 55, 0.7); line-height: 1.55; }
.cert-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 0.88rem; color: var(--orange-600); }
.cert-link::after { content: "↓"; }
.cert-link--light { color: #fff; }
.cert-link--light::after { content: "→"; }
.cert-card--cta { background: linear-gradient(135deg, var(--navy-700), var(--navy)); border: none; }

/* ============================================================
   DEALER
============================================================ */
.dealer-benefit {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px; padding: 18px 20px; color: #fff; font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}
.dealer-benefit:hover { transform: translateX(6px); background: rgba(255, 255, 255, 0.1); }
.dealer-benefit__icon { font-size: 24px; }

/* ============================================================
   GALLERY
============================================================ */
.gallery-masonry { columns: 1; column-gap: 18px; }
@media (min-width: 640px) { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }
.gallery-item {
  position: relative; display: block; width: 100%; break-inside: avoid; margin-bottom: 18px;
  border-radius: 20px; overflow: hidden; cursor: pointer; border: none; padding: 0;
  box-shadow: 0 10px 30px -16px rgba(15, 23, 42, 0.25);
}
.gallery-ph { display: grid; place-items: center; transition: transform 0.5s ease;
  background: linear-gradient(160deg, #ffffff 0%, #e9eef5 100%); }
.gallery-ph img { max-height: 80%; max-width: 74%; object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(15, 23, 42, 0.18)); }
.gallery-ph--a { height: 260px; }
.gallery-ph--b { height: 220px; }
.gallery-ph--c { height: 300px; }
.gallery-ph--d { height: 230px; }
.gallery-ph--e { height: 280px; }
.gallery-ph--f { height: 240px; }
.gallery-item:hover .gallery-ph { transform: scale(1.04); }
.gallery-item:hover .gallery-ph img { transform: scale(1.06); transition: transform 0.5s ease; }
.gallery-caption {
  position: absolute; inset: auto 0 0 0; padding: 26px 18px 16px; color: #fff;
  font-weight: 700; font-size: 0.95rem; text-align: left;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; flex-direction: column; padding: 24px;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { max-width: min(680px, 92vw); width: 100%; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6); }
.lightbox-content .gallery-ph { height: 60vh; }
.lightbox-caption { color: #fff; margin-top: 18px; font-weight: 600; font-size: 1.05rem; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 20px; border: none; cursor: pointer; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

/* ============================================================
   VIDEO GALLERY (grid of individual players — native controls + 10s skip)
============================================================ */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .video-grid { grid-template-columns: repeat(4, 1fr); } }

.video-card { background: #0f172a; border: 1px solid rgba(15, 23, 42, 0.1); border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 40px -22px rgba(15, 23, 42, 0.45); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -24px rgba(15, 23, 42, 0.55); }
.vc-frame { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #0b1220; }
.vc-video { width: 100%; height: 100%; object-fit: contain; display: block; background: #0b1220; }

.vc-bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 11px;
  background: #0f172a; border-top: 1px solid rgba(255, 255, 255, 0.07); margin: 0; }
.vc-label { font-size: 12px; font-weight: 700; color: #cbd5e1; display: inline-flex; align-items: center; gap: 5px; }
.vc-mute { font-size: 11px; opacity: 0.8; }
.vc-skip { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: #fff; cursor: pointer;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); padding: 7px 10px; border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease; }
.vc-skip:hover { background: var(--orange); border-color: transparent; }
.vc-skip:active { transform: scale(0.94); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-wrap { max-width: 760px; margin: 0 auto; }
.testimonial-track { display: flex; overflow: hidden; }
.testimonial-card {
  flex: 0 0 100%; display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.07); border-radius: 24px;
  padding: 36px; box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.25);
}
.stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.testimonial-quote { margin-top: 16px; font-size: 1.1rem; line-height: 1.65; color: var(--navy-700); font-weight: 500; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.ta-avatar { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; background: linear-gradient(135deg, var(--royal), var(--navy)); }
.ta-name { display: block; font-weight: 700; color: var(--navy); }
.ta-biz { display: block; font-size: 0.85rem; color: #64748b; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.t-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(15, 23, 42, 0.12); background: #fff; color: var(--navy); display: grid; place-items: center; cursor: pointer; transition: 0.2s; }
.t-btn:hover { background: var(--navy); color: #fff; transform: scale(1.06); }
.testimonial-dots { display: flex; gap: 8px; }
.t-dot { width: 9px; height: 9px; border-radius: 999px; background: rgba(15, 23, 42, 0.2); border: none; cursor: pointer; transition: 0.3s; padding: 0; }
.t-dot.active { width: 26px; background: var(--orange); }

/* ============================================================
   FAQ
============================================================ */
.faq-item {
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] { box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.3); border-color: rgba(249, 115, 22, 0.4); }
.faq-q {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  color: var(--navy); font-size: 1.02rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-ico { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--orange); border-radius: 2px; transition: transform 0.3s ease; }
.faq-ico::before { width: 14px; height: 2.5px; }
.faq-ico::after { width: 2.5px; height: 14px; }
.faq-item[open] .faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 22px; color: rgba(31, 41, 55, 0.78); line-height: 1.65; font-size: 0.96rem; }

/* ============================================================
   DOWNLOADS
============================================================ */
.download-card {
  display: block; text-align: center; background: #fff; border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px; padding: 34px 24px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.download-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -24px rgba(15, 23, 42, 0.3); border-color: rgba(249, 115, 22, 0.4); }
.dl-emoji { font-size: 44px; }
.download-title { margin-top: 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.download-text { margin-top: 6px; font-size: 0.9rem; color: rgba(31, 41, 55, 0.68); }
.download-btn { display: inline-block; margin-top: 18px; padding: 10px 22px; border-radius: 12px; font-weight: 700; font-size: 0.88rem; color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-600)); box-shadow: 0 12px 24px -12px rgba(249, 115, 22, 0.7); transition: transform 0.25s ease; }
.download-card:hover .download-btn { transform: translateY(-2px); }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form { background: #fff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 24px; padding: 30px; box-shadow: 0 16px 40px -22px rgba(15, 23, 42, 0.25); }
@media (min-width: 640px) { .contact-form { padding: 38px; } }
.field { display: flex; flex-direction: column; }
.field-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.req { color: var(--orange); }
.field-input {
  width: 100%; padding: 12px 15px; border-radius: 12px; border: 1.5px solid rgba(15, 23, 42, 0.12);
  background: var(--mist); color: var(--ink); font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field-input::placeholder { color: #94a3b8; }
.field-input:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12); }
.field-input.invalid { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12); }
.field-error { color: #ef4444; font-size: 0.78rem; margin-top: 5px; min-height: 1em; }
.form-status { margin-top: 14px; text-align: center; font-weight: 600; font-size: 0.95rem; padding: 0; }
.form-status.success { color: #16a34a; }
.form-status.error { color: #ef4444; }

/* File input (careers resume upload) */
.file-input { padding: 9px 12px; cursor: pointer; }
.file-input::file-selector-button { margin-right: 12px; border: none; background: var(--navy); color: #fff;
  padding: 8px 14px; border-radius: 9px; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: background 0.2s ease; }
.file-input::file-selector-button:hover { background: var(--orange); }

.btn-spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255, 255, 255, 0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact info cards */
.info-card { background: #fff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 24px; padding: 28px; box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.25); }
.info-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.2rem; }
.info-list { margin-top: 18px; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-ico { font-size: 20px; flex: 0 0 26px; }
.info-k { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
.info-v { display: block; color: var(--navy-700); font-weight: 600; font-size: 0.95rem; line-height: 1.5; }
a.info-v:hover { color: var(--orange); }
.quick-btn { display: grid; place-items: center; padding: 11px; border-radius: 12px; font-weight: 700; font-size: 0.85rem; color: #fff; transition: transform 0.2s ease, opacity 0.2s; }
.quick-btn:hover { transform: translateY(-2px); }
.quick-btn--blue { background: var(--royal); }
.quick-btn--green { background: #22c55e; }
.quick-btn--orange { background: var(--orange); }

/* ============================================================
   FOOTER
============================================================ */
.footer-head { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: #94a3b8; transition: color 0.2s, padding 0.2s; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: #94a3b8; }
.footer-contact a { color: #cbd5e1; }
.footer-contact a:hover { color: var(--orange); }
.footer-meta { margin-top: 18px; display: grid; gap: 10px; }
.footer-meta div { display: flex; flex-direction: column; }
.footer-meta dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: #64748b; font-weight: 700; }
.footer-meta dd { font-size: 0.88rem; color: #e2e8f0; font-weight: 600; margin-top: 2px; }
.social-btn { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #cbd5e1; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); transition: 0.25s; }
.social-btn:hover { color: #fff; background: var(--orange); transform: translateY(-3px); border-color: transparent; }

/* ============================================================
   FLOATING ACTIONS
============================================================ */
.float-action {
  position: fixed; right: 18px; z-index: 60; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; cursor: pointer; border: none;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5); transition: transform 0.25s ease, opacity 0.25s ease;
}
.float-action:hover { transform: scale(1.08); }
.float-action--whatsapp { bottom: 150px; background: #22c55e; animation: floatY 4s ease-in-out infinite; }
.float-action--call { bottom: 90px; background: var(--royal); }
.float-action--top { bottom: 30px; background: var(--navy); opacity: 0; pointer-events: none; }
.float-action--top.show { opacity: 1; pointer-events: auto; }
@media (min-width: 1024px) {
  .float-action--whatsapp { bottom: 96px; }
  .float-action--call { bottom: 30px; }
  .float-action--top { bottom: 162px; }
}

/* Sticky mobile CTA bar */
.mobile-cta-bar {
  position: fixed; inset: auto 0 0 0; z-index: 55; display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px); border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 -8px 30px -16px rgba(15, 23, 42, 0.3);
}
.mcta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 8px; border-radius: 12px; font-weight: 700; font-size: 0.85rem; transition: transform 0.2s; }
.mcta:active { transform: scale(0.97); }
.mcta--call { background: rgba(37, 99, 235, 0.12); color: var(--royal-600); }
.mcta--wa { background: rgba(34, 197, 94, 0.14); color: #16a34a; }
.mcta--quote { color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-600)); }

/* Push footer above the mobile bar already handled via footer padding */

/* ============================================================
   REAL LOGO & PRODUCT PHOTOGRAPHY
============================================================ */
.logo-img { height: 38px; width: auto; display: block; transition: transform 0.3s ease; }
@media (min-width: 640px) { .logo-img { height: 46px; } }
a:hover > .logo-img { transform: scale(1.04); }
/* keep brand wordmark white while header is transparent over the dark hero */
#site-header:not(.scrolled) .brand-word { color: #fff; }

/* Real product photo inside hero floating cards */
.float-tap { width: 100%; height: 118px; object-fit: contain; display: block;
  filter: drop-shadow(0 16px 18px rgba(15, 23, 42, 0.25)); margin-bottom: 10px; }
.float-card--2 .float-tap, .float-card--3 .float-tap { height: 92px; }

/* Complete product range grid */
.range-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .range-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .range-grid { grid-template-columns: repeat(4, 1fr); } }
.range-item { background: #fff; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 18px;
  padding: 16px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.range-item:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -22px rgba(15, 23, 42, 0.3); border-color: rgba(249, 115, 22, 0.4); }
.range-thumb { height: 134px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(160deg, #ffffff 0%, #eef2f7 100%); margin-bottom: 12px; overflow: hidden; }
.range-thumb img { max-height: 116px; max-width: 86%; object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(15, 23, 42, 0.16)); transition: transform 0.4s ease; }
.range-item:hover .range-thumb img { transform: scale(1.07); }
.range-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.92rem; line-height: 1.25; }
.range-sub { font-size: 0.74rem; color: #64748b; margin-top: 3px; }

/* ============================================================
   AOS fallback (in case CDN blocked) — content stays visible
============================================================ */
.no-aos [data-aos] { opacity: 1 !important; transform: none !important; }

/* ============================================================
   View-only document viewer (PDF in iframe, download UI hidden)
============================================================ */
.doc-viewer { position: fixed; inset: 0; z-index: 90; display: none; flex-direction: column;
  background: rgba(15, 23, 42, 0.93); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.doc-viewer.open { display: flex; }
.doc-viewer__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; color: #fff; flex: 0 0 auto; }
.doc-viewer__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.98rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-viewer__close { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); color: #fff;
  font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease; }
.doc-viewer__close:hover { background: rgba(255, 255, 255, 0.2); }
.doc-viewer__stage { flex: 1 1 auto; min-height: 0; padding: 0 12px 12px; }
.doc-viewer__stage iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; background: #fff; }

/* On phones & tablets the two-column layouts stack, so horizontal
   fade-left/right slides serve no purpose and push content off-screen.
   Convert them to a gentle vertical rise (like fade-up) below lg. */
@media (max-width: 1023px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] { transform: translate3d(0, 40px, 0) !important; }
  [data-aos="fade-left"].aos-animate,
  [data-aos="fade-right"].aos-animate { transform: translate3d(0, 0, 0) !important; }
}

/* ============================================================
   Cookie consent banner (consent-gated analytics)
============================================================ */
.cookie-consent {
  position: fixed;
  left: 0.75rem; right: 0.75rem; bottom: 5.25rem;
  z-index: 70;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  box-shadow: 0 24px 60px -18px rgba(15, 23, 42, 0.35);
  animation: cookieIn 0.35s ease-out both;
}
.cookie-consent[hidden] { display: none; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.cookie-consent__icon { font-size: 1.6rem; line-height: 1; }
.cookie-consent__body { flex: 1 1 16rem; min-width: 0; }
.cookie-consent__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.cookie-consent__text { font-size: 0.82rem; color: #64748b; line-height: 1.5; margin-top: 0.15rem; }
.cookie-consent__text a { color: var(--royal); font-weight: 600; }
.cookie-consent__text a:hover { text-decoration: underline; }
.cookie-consent__actions { display: flex; gap: 0.5rem; flex: 0 0 auto; margin-left: auto; }
.cookie-btn { font-size: 0.85rem; font-weight: 600; padding: 0.55rem 1.1rem; border-radius: 0.7rem;
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease; border: 1px solid transparent; }
.cookie-btn--ghost { background: transparent; color: #475569; border-color: rgba(15, 23, 42, 0.15); }
.cookie-btn--ghost:hover { background: rgba(15, 23, 42, 0.05); }
.cookie-btn--accept { background: var(--orange); color: #fff; box-shadow: 0 8px 20px -8px rgba(249, 115, 22, 0.6); }
.cookie-btn--accept:hover { background: #ea580c; }
@media (min-width: 1024px) {
  .cookie-consent { left: 1.5rem; right: auto; bottom: 1.5rem; max-width: 30rem; }
}
