﻿:root {

  --c-navy: #071A35;
  --c-navy-2: #0D2B55;
  --c-blue: #1557FF;
  --c-blue-2: #0040CC;
  --c-blue-3: #EEF3FF;
  --c-teal: #00C896;
  --c-teal-2: #00A07A;
  --c-red: #E53E3E;
  --c-amber: #F59E0B;
  --c-white: #FFFFFF;
  --c-off: #F7F9FC;
  --c-border: #E4EAF4;
  --c-text: #0D1B2A;
  --c-muted: #5E7291;
  --c-faint: #94A7BF;


  --f-sans: 'DM Sans', sans-serif;
  --f-serif: 'Cormorant Garamond', serif;


  --sp-xs: 6px;
  --sp-sm: 12px;
  --sp-md: 20px;
  --sp-lg: 32px;
  --sp-xl: 44px;
  --sp-2xl: 60px;


  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;


  --s-sm: 0 2px 10px rgba(7, 26, 53, .06);
  --s-md: 0 6px 28px rgba(7, 26, 53, .10);
  --s-lg: 0 14px 56px rgba(7, 26, 53, .14);
  --s-xl: 0 28px 80px rgba(7, 26, 53, .18);


  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s cubic-bezier(.4, 0, .2, 1);
  --t-spring: 0.5s cubic-bezier(.34, 1.56, .64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-sans);
  color: var(--c-text);
  background: var(--c-white);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--f-sans);
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: var(--f-sans);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--c-blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}

.skip-link:focus {
  top: 8px;
}

:focus-visible {
  outline: 2.5px solid var(--c-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

.btn-hidden {
  display: none;
}

.page {
  display: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.page.active {
  display: block;
  animation: pageReveal .45s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--sp-2xl) 0;
}

.section-sm {
  padding: var(--sp-xl) 0;
}

.bg-off {
  background: var(--c-off);
}

.bg-navy {
  background: var(--c-navy);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-blue);
  display: block;
  margin-bottom: 10px;
}

.title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--c-text);
  margin-bottom: var(--sp-sm);
}

.subtitle {
  font-size: .975rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 560px;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head .subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: var(--r-md);
  font-family: var(--f-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base),
    border-color var(--t-base), box-shadow var(--t-base),
    transform var(--t-base);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0) scale(.97) !important;
}

.btn-primary {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}

.btn-primary:hover {
  background: var(--c-blue-2);
  border-color: var(--c-blue-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 87, 255, .28);
}

.btn-teal {
  background: var(--c-teal);
  color: var(--c-navy);
  border-color: var(--c-teal);
  font-weight: 700;
}

.btn-teal:hover {
  background: var(--c-teal-2);
  border-color: var(--c-teal-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 150, .28);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}

.btn-outline:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
  background: var(--c-blue-3);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}

.btn-dark:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 26, 53, .28);
}

.submit-btn,
.quote-btn,
.add-lg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-family: var(--f-sans);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--t-base), border-color var(--t-base),
    box-shadow var(--t-base), transform var(--t-base);
}

.submit-btn {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  margin-top: 6px;
}

.submit-btn:hover {
  background: var(--c-blue-2);
  border-color: var(--c-blue-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(21, 87, 255, .28);
}

.quote-btn {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}

.quote-btn:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(7, 26, 53, .3);
}

.add-lg {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  flex: 1;
}

.add-lg:hover {
  background: var(--c-blue-2);
  border-color: var(--c-blue-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(21, 87, 255, .28);
}

.add-lg:active {
  transform: scale(.97);
}

.atc-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--c-blue);
  color: #fff;
  border: 1.5px solid var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--t-base), border-color var(--t-base),
    box-shadow var(--t-base), transform var(--t-base);
}

.atc-btn:hover {
  background: var(--c-blue-2);
  border-color: var(--c-blue-2);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(21, 87, 255, .3);
}

.atc-btn:active {
  transform: scale(.92);
}

.atc-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.learn-btn {
  font-family: var(--f-sans);
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: gap var(--t-base), color var(--t-base);
}

.learn-btn:hover {
  gap: 10px;
  color: var(--c-blue-2);
}

.promo-bar {
  background: linear-gradient(90deg, var(--c-navy-2), var(--c-blue), var(--c-navy-2));
  background-size: 300% 100%;
  animation: promoPan 6s linear infinite;
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.promo-bar mark {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 4px;
  padding: 1px 7px;
  margin: 0 3px;
}

@keyframes promoPan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

.topbar {
  background: var(--c-navy);
  padding: 7px 0;
  font-size: .73rem;
  color: rgba(255, 255, 255, .55);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: 18px;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-pill {
  background: var(--c-teal);
  color: var(--c-navy);
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: .68rem;
  letter-spacing: .04em;
  cursor: pointer;
}

.header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--s-sm);
  transition: box-shadow var(--t-base);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-blue) 25%, var(--c-teal) 50%, var(--c-blue) 75%, transparent);
  background-size: 200% 100%;
  animation: navAccent 4s linear infinite;
  opacity: .75;
}

@keyframes navAccent {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: 200% 0%;
  }
}

.header.scrolled {
  box-shadow: var(--s-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: clamp(10px, 1.55vw, 20px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  min-width: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
  transition: transform var(--t-spring);
}

.logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.07);
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
}

.logo-sub {
  font-size: .62rem;
  font-weight: 500;
  color: var(--c-faint);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
  flex-shrink: 1;
}

.nav-item {
  padding: 7px clamp(7px, .85vw, 13px);
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: all var(--t-fast);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--c-blue);
  border-radius: 2px;
  transition: transform var(--t-base);
}

.nav-item:hover {
  color: var(--c-blue);
}

.nav-item.active {
  color: var(--c-blue);
  font-weight: 700;
}

.nav-item.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(5px, .6vw, 8px);
  flex-shrink: 0;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--c-blue-3);
  color: var(--c-blue);
  padding: 9px clamp(10px, 1vw, 16px);
  border-radius: var(--r-md);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--t-base);
  position: relative;
}

.cart-btn:hover {
  background: var(--c-blue);
  color: #fff;
}

.cart-badge {
  background: var(--c-red);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform var(--t-spring);
}

.cart-badge.bump {
  animation: badgeBump .3s var(--t-spring);
}

@keyframes badgeBump {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.mob-btn {
  display: none;
  padding: 8px;
  border-radius: var(--r-sm);
  color: var(--c-muted);
}

.mob-btn:hover {
  background: var(--c-off);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  height: calc(100svh - 120px);
  max-height: 820px;
  overflow: hidden;
  background: var(--c-navy);
  display: flex;
  align-items: center;
}

.hero-slider-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1);
}

.hs-slide.hs-active {
  opacity: 1;
  z-index: 2;
}

.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  transition: transform 8s cubic-bezier(.25, .46, .45, .94);
  filter: brightness(.42) saturate(.85);
}

.hs-slide.hs-active .hs-bg {
  transform: scale(1);
}

.hs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(7, 26, 53, .88) 0%, rgba(7, 26, 53, .55) 45%, transparent 75%),
    linear-gradient(to bottom, rgba(7, 26, 53, .3) 0%, transparent 35%, rgba(7, 26, 53, .65) 100%);
}

.hs-caption {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 4;
  max-width: 320px;
  text-align: right;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s .35s ease, transform .7s .35s ease;
}

.hs-slide.hs-active .hs-caption {
  opacity: 1;
  transform: translateY(0);
}

.hs-tag {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-teal);
  background: rgba(0, 200, 150, .15);
  border: 1px solid rgba(0, 200, 150, .3);
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.hs-title {
  font-family: var(--f-serif);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.hs-counter {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 5;
  font-family: var(--f-serif);
  font-size: .9rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em;
}

.hs-counter strong {
  color: var(--c-teal);
  font-size: 1.4rem;
  font-weight: 300;
}

.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 6;
  background: rgba(255, 255, 255, .08);
}

.hs-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-teal), var(--c-blue));
  width: 0%;
  transition: width linear;
}

.hs-dots {
  position: absolute;
  bottom: 32px;
  left: 40px;
  z-index: 5;
  display: flex;
  gap: 7px;
  align-items: center;
}

.hs-dot {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .22);
  cursor: pointer;
  transition: background .35s, width .35s;
}

.hs-dot.hs-dot-active {
  width: 40px;
  background: var(--c-teal);
}

.hs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(7, 26, 53, .5);
  border: 1px solid rgba(0, 200, 150, .22);
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  font-size: .95rem;
}

.hs-nav:hover {
  background: var(--c-teal);
  border-color: var(--c-teal);
  color: var(--c-navy);
  transform: translateY(-50%) scale(1.1);
}

.hs-nav-prev {
  left: 18px;
}

.hs-nav-next {
  right: 18px;
}

.hero-content {
  position: relative;
  z-index: 6;
  padding: 0 0 0 clamp(28px, 6vw, 100px);
  max-width: 640px;
  animation: heroContentIn .9s .2s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--c-teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--c-teal);
}

.hero-lead {
  font-size: clamp(.88rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.ht-pill {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 5px 12px;
  border-radius: 100px;
}

.feat-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.feat-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 32px rgba(21, 87, 255, .11), 0 0 0 1px rgba(21, 87, 255, .08), inset 0 0 20px rgba(21, 87, 255, .03);
  transform: translateY(-3px);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: transform var(--t-spring), box-shadow var(--t-base);
  position: relative;
}

.feat-icon svg {
  width: 26px;
  height: 26px;
}

.feat-card:hover .feat-icon {
  transform: scale(1.12) rotate(-4deg);
}

.feat-icon.blue {
  background: var(--c-blue-3);
  color: var(--c-blue);
  box-shadow: 0 0 0 0 rgba(21, 87, 255, 0);
}

.feat-card:hover .feat-icon.blue {
  box-shadow: 0 6px 20px rgba(21, 87, 255, .22);
}

.feat-icon.green {
  background: #e8fff9;
  color: var(--c-teal);
  box-shadow: 0 0 0 0 rgba(0, 200, 150, 0);
}

.feat-card:hover .feat-icon.green {
  box-shadow: 0 6px 20px rgba(0, 200, 150, .22);
}

.feat-icon.amber {
  background: #fffbeb;
  color: var(--c-amber);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
}

.feat-card:hover .feat-icon.amber {
  box-shadow: 0 6px 20px rgba(245, 158, 11, .22);
}

.feat-icon.purple {
  background: #f2efff;
  color: #7c3aed;
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
}

.feat-card:hover .feat-icon.purple {
  box-shadow: 0 6px 20px rgba(124, 58, 237, .22);
}

.feat-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.feat-desc {
  font-size: .85rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.brands-section {
  background: var(--c-off);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 36px 0;
}

.brands-label {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-faint);
  margin-bottom: 20px;
}

.brands-section {
  overflow: hidden;
}

.brands-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

@keyframes brandsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: brandsScroll 32s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 22px;
  border-right: 1px solid var(--c-border);
  transition: opacity .2s ease;
  opacity: .65;
  cursor: default;
  flex-shrink: 0;
}

.brand-item:hover {
  opacity: 1;
}

.brand-logo {
  width: 80px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--s-sm);
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px 6px;
}

.brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-mono {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-navy);
}

.brand-name {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--c-muted);
  white-space: nowrap;
}

.media-collections {
  display: grid;
  gap: 30px;
}

.media-collection-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}

.media-collection-head h3 {
  color: var(--c-navy);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.media-collection-head p {
  color: var(--c-muted);
  font-size: .84rem;
}

.media-track-wrap {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}

.moving-gallery {
  overflow: hidden;
  padding: 4px 0;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.moving-gallery::-webkit-scrollbar {
  display: none;
}

.media-track {
  display: flex;
  gap: 18px;
  padding: 4px 2px 12px;
}

.moving-gallery .photo-grid {
  width: max-content;
  animation: gallery-reel 26s linear infinite;
}

.moving-gallery:hover .photo-grid,
.moving-gallery:focus-within .photo-grid {
  animation-play-state: paused;
}

@keyframes gallery-reel {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.video-gallery .work-video-card {
  flex: 0 0 min(580px, 100%);
}

.photo-grid .gallery-card {
  flex: 0 0 268px;
}

.gallery-card,
.work-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: var(--c-white);
  box-shadow: var(--s-sm);
}

.gallery-card {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  margin: 0;
  position: relative;
}

.gallery-photo {
  height: 104px;
  width: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--t-base);
}

.gallery-card:hover .gallery-photo {
  transform: scale(1.05);
}

.gallery-card figcaption,
.media-caption {
  display: grid;
  gap: 4px;
  padding: 11px 13px;
}

.gallery-card strong,
.media-caption strong {
  font-size: .9rem;
}

.gallery-card span,
.media-caption span {
  color: var(--c-muted);
  font-size: .76rem;
  line-height: 1.45;
}

.work-video {
  width: 100%;
  height: 252px;
  display: block;
  object-fit: cover;
  background: var(--c-navy);
}

.media-caption a {
  color: var(--c-blue);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .moving-gallery {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .moving-gallery .photo-grid {
    animation: none;
  }
}

.cta-card {
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-2));
  border-radius: var(--r-xl);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  position: relative;
}

.cta-card::before {
  content: '+';
  position: absolute;
  right: 240px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  opacity: .04;
}

.cta-card .title {
  color: #fff;
  font-size: 1.9rem;
}

.cta-card p {
  color: rgba(255, 255, 255, .5);
  font-size: .93rem;
  margin-top: 6px;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.prod-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(36px) scale(.96);
  transition:
    opacity .6s cubic-bezier(.4, 0, .2, 1) var(--ci, 0s),
    transform .6s cubic-bezier(.22, 1, .36, 1) var(--ci, 0s),
    border-color .22s ease,
    box-shadow .22s ease;
}

.prod-card.card-entered {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.prod-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 14px 44px rgba(21, 87, 255, .14), 0 0 0 1px rgba(21, 87, 255, .1), inset 0 0 28px rgba(21, 87, 255, .04);
  transform: translateY(-5px) scale(1) !important;
}

.prod-thumb {
  position: relative;
  height: 210px;
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 87, 255, .08), transparent 42%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.prod-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .45) 50%,
      rgba(255, 255, 255, 0) 60%);
  background-size: 250% 100%;
  animation: shimmer 1.6s linear infinite;
}

.prod-thumb.img-ready::before {
  animation: none;
  opacity: 0;
  transition: opacity .3s;
}

@keyframes shimmer {
  from {
    background-position: 180% center;
  }

  to {
    background-position: -80% center;
  }
}

.prod-thumb .prod-img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  background: transparent;
  cursor: zoom-in;
  filter: saturate(1.07) contrast(1.03);
  clip-path: inset(100% 0 0 0);
  transform: scale(.98);
  transition: clip-path .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
  z-index: 2;
}

.prod-thumb .prod-img-real.loaded {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.prod-card:hover .prod-thumb .prod-img-real {
  transform: scale(1.04);
}

.prod-thumb .prod-emoji-fb {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  transition: opacity .5s ease;
}

.prod-thumb .prod-img-real.loaded~.prod-emoji-fb {
  opacity: 0;
}

.prod-thumb::after {
  content: 'View Details';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(7, 26, 53, .72) 0%, rgba(7, 26, 53, .1) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  opacity: 0;
  transition: opacity .28s ease;
}

.prod-card:hover .prod-thumb::after {
  opacity: 1;
}

.badge-stack {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 4;
}

.pill {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
}

.pill-sale {
  background: var(--c-blue);
  color: #fff;
}

.pill-new {
  background: var(--c-teal);
  color: var(--c-navy);
}

.pill-popular {
  background: var(--c-amber);
  color: var(--c-navy);
}

.pill-oos {
  background: var(--c-faint);
  color: #fff;
}

.wish-btn {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--c-faint);
  opacity: 0;
  transition: all var(--t-base);
}

.prod-card:hover .wish-btn,
.wish-btn.active {
  opacity: 1;
}

.wish-btn:hover,
.wish-btn.active {
  color: var(--c-teal);
  transform: scale(1.15);
}

.prod-body {
  padding: 15px 16px;
}

.prod-cat {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 5px;
}

.prod-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 7px;
}

.prod-stars {
  color: var(--c-amber);
  font-size: .73rem;
  letter-spacing: -1px;
}

.prod-revs {
  font-size: .7rem;
  color: var(--c-faint);
  margin-left: 4px;
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-border);
  padding-top: 11px;
  margin-top: 9px;
}

.was {
  font-size: .7rem;
  color: var(--c-faint);
  text-decoration: line-through;
  display: block;
  line-height: 1;
}

.now {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--c-teal);
  letter-spacing: -.02em;
}

.save {
  font-size: .58rem;
  font-weight: 700;
  background: #fff0f0;
  color: var(--c-blue);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.testimonials-section {
  background: var(--c-navy);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 87, 255, .12) 0%, transparent 70%);
  pointer-events: none;
}

.test-head {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.test-head .label {
  color: var(--c-teal);
}

.test-head .title {
  color: #fff;
}

.test-head .subtitle {
  color: rgba(255, 255, 255, .45);
  margin: 0 auto;
}

.test-track-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.test-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.test-card {
  flex: 0 0 auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  transition: border-color .25s ease, transform .3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  user-select: none;
}

.test-card:hover {
  border-color: rgba(0, 200, 150, .45);
  box-shadow: 0 8px 32px rgba(0, 200, 150, .12), 0 0 0 1px rgba(0, 200, 150, .12), inset 0 0 24px rgba(0, 200, 150, .04);
  transform: translateY(-2px);
}

.test-card::before {
  content: '\201C';
  font-family: var(--f-serif);
  font-size: 6rem;
  line-height: .8;
  color: var(--c-teal);
  opacity: .22;
  position: absolute;
  top: 20px;
  left: 26px;
  pointer-events: none;
  user-select: none;
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.test-star {
  color: var(--c-amber);
  font-size: .88rem;
}

.test-quote {
  font-family: var(--f-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-teal-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, .15);
}

.test-name {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
}

.test-role {
  font-size: .72rem;
  color: rgba(255, 255, 255, .38);
  margin-top: 1px;
}

.test-badge {
  margin-left: auto;
  background: rgba(0, 200, 150, .15);
  border: 1px solid rgba(0, 200, 150, .25);
  color: var(--c-teal);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

.test-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.test-dots-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s, width .2s;
  flex-shrink: 0;
}

.test-dot.active {
  background: var(--c-teal);
  width: 22px;
  border-radius: 4px;
}

.test-arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s;
  flex-shrink: 0;
}

.test-arr:hover:not(:disabled) {
  background: var(--c-teal);
  border-color: var(--c-teal);
  color: #fff;
  transform: scale(1.08);
}

.test-arr:disabled {
  opacity: .25;
  cursor: default;
}

.home-prod-track-wrap {
  overflow-x: auto;
  padding: 12px 0 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}

.home-prod-track-wrap::-webkit-scrollbar {
  height: 5px;
}

.home-prod-track-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.home-prod-track-wrap::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 4px;
}

.home-prod-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  padding: 4px 20px 8px;
  width: max-content;
}

.home-prod-track .prod-card {
  flex: 0 0 268px;
  width: 268px;
}

.home-prod-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.prod-arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  box-shadow: var(--s-sm);
  flex-shrink: 0;
}

.prod-arr:hover:not(:disabled) {
  background: var(--c-teal);
  border-color: var(--c-teal);
  color: #fff;
  transform: scale(1.08);
}

.prod-arr:disabled {
  opacity: .25;
  cursor: default;
}

.products-layout {
  display: grid;
  grid-template-columns: 238px 1fr;
  gap: 26px;
  align-items: start;
}

.sidebar {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 22px;
  position: sticky;
  top: 82px;
}

.sb-section {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-border);
}

.sb-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sb-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-faint);
  margin-bottom: 10px;
}

.cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: all var(--t-fast);
  text-align: left;
}

.cat-btn:hover {
  background: var(--c-off);
  color: var(--c-text);
}

.cat-btn.active {
  background: var(--c-blue-3);
  color: var(--c-blue);
  font-weight: 600;
}

.cat-num {
  font-size: .68rem;
  background: var(--c-border);
  color: var(--c-faint);
  padding: 1px 7px;
  border-radius: 100px;
}

.cat-btn.active .cat-num {
  background: rgba(21, 87, 255, .15);
  color: var(--c-blue);
}

.range-slider {
  width: 100%;
  accent-color: var(--c-blue);
  margin: 9px 0 4px;
}

.range-row {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--c-muted);
}

.sb-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: .85rem;
  color: var(--c-muted);
  cursor: pointer;
}

.sb-check input {
  accent-color: var(--c-blue);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 10px;
  flex-wrap: wrap;
}

.result-count {
  font-size: .85rem;
  color: var(--c-muted);
}

.result-count strong {
  color: var(--c-text);
}

.toolbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-input {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 8px 13px;
  font-size: .83rem;
  outline: none;
  width: clamp(112px, 11vw, 160px);
  background: var(--c-off);
  color: var(--c-text);
  transition: border-color var(--t-fast), width var(--t-base), background var(--t-fast);
  font-family: var(--f-sans);
}

.search-input:focus {
  border-color: var(--c-blue);
  background: var(--c-white);
  width: clamp(150px, 15vw, 220px);
}

.search-input::placeholder {
  color: var(--c-faint);
}

.sort-sel {
  appearance: none;
  background: var(--c-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%235E7291'/%3E%3C/svg%3E") no-repeat right 11px center;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 8px 30px 8px 13px;
  font-size: .83rem;
  color: var(--c-text);
  outline: none;
  cursor: pointer;
  font-family: var(--f-sans);
}

.sort-sel:focus {
  border-color: var(--c-blue);
}

.sale-strip {
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-2));
  border-radius: var(--r-xl);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
  overflow: hidden;
  position: relative;
}

.sale-strip::before {
  content: '+';
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: .06;
}

.sale-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 6px;
}

.sale-strip h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.sale-strip p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
}

.sale-strip-actions {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
}

.breadcrumb {
  background: var(--c-off);
  border-bottom: 1px solid var(--c-border);
  padding: 13px 0;
}

.bc-inner {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
}

.bc-inner a {
  color: var(--c-muted);
  transition: color var(--t-fast);
  cursor: pointer;
}

.bc-inner a:hover {
  color: var(--c-blue);
}

.bc-inner .sep {
  color: var(--c-border);
}

.bc-inner .cur {
  color: var(--c-text);
  font-weight: 500;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(21, 87, 255, .1), transparent 46%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  border: 1px solid var(--c-border);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(7, 26, 53, .03);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  cursor: zoom-in;
}

.img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, .3) 50%,
      rgba(255, 255, 255, 0) 65%);
  background-size: 250% 100%;
  animation: teamShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

.img-main:hover {
  border-color: var(--c-blue);
  box-shadow: 0 12px 40px rgba(21, 87, 255, .12), inset 0 0 0 1px rgba(21, 87, 255, .08);
}

.img-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  position: relative;
  z-index: 2;
  background: transparent;
  filter: saturate(1.08) contrast(1.04);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 8px;
  max-height: 232px;
  overflow-y: auto;
}

.thumbs-gallery-badge {
  font-size: .68rem;
  font-weight: 600;
  color: var(--c-blue);
  background: var(--c-blue-3);
  border: 1px solid #c7d9ff;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
}

.thumb-item {
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f8fbff);
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--c-border);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: zoom-in;
}

.thumb-item img {
  padding: 5px;
  background: transparent;
  filter: saturate(1.06) contrast(1.03);
}

.thumb-item.active,
.thumb-item:hover {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 1px rgba(21, 87, 255, .18);
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 87, 255, .2), transparent 36%),
    rgba(3, 10, 22, .96);
  padding: max(18px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-stage {
  width: min(100%, 1240px);
  height: min(100%, 84svh);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  user-select: none;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .08), transparent 58%),
    rgba(255, 255, 255, .03);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .28);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  filter: saturate(1.08) contrast(1.04);
  -webkit-user-drag: none;
  user-select: none;
}

.gallery-emoji {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(4rem, 18vw, 9rem);
}

.gallery-close,
.gallery-nav {
  position: fixed;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 1.05rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--t-fast), transform var(--t-fast);
}

.gallery-close:hover,
.gallery-nav:hover {
  background: rgba(255, 255, 255, .22);
  transform: scale(1.06);
}

.gallery-close {
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
}

.gallery-prev {
  left: max(16px, env(safe-area-inset-left));
  top: 50%;
  transform: translateY(-50%);
}

.gallery-next {
  right: max(16px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
}

.gallery-prev:hover,
.gallery-next:hover {
  transform: translateY(-50%) scale(1.06);
}

.gallery-caption,
.gallery-count {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .78);
  text-align: center;
}

.gallery-caption {
  bottom: max(38px, calc(env(safe-area-inset-bottom) + 36px));
  max-width: min(720px, calc(100vw - 40px));
  font-size: .92rem;
  font-weight: 700;
}

.gallery-count {
  bottom: max(16px, calc(env(safe-area-inset-bottom) + 14px));
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.detail-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 7px;
}

.detail-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 12px;
}

.detail-stars {
  color: var(--c-amber);
  font-size: 1rem;
}

.detail-was {
  font-size: .88rem;
  color: var(--c-faint);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.detail-price {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--c-teal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.save-badge {
  background: #fff0f0;
  color: var(--c-blue);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
}

.detail-desc {
  font-size: .93rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin: 18px 0;
}

.detail-info-panel {
  border: 1px solid var(--c-border);
  background: var(--c-off);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 18px 0 20px;
}

.detail-info-panel h3 {
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--c-text);
}

.detail-info-panel p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 22px;
}

.trust-item {
  text-align: center;
  font-size: .75rem;
  color: var(--c-muted);
}

.trust-item span {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 4px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.qty-ctrl:focus-within {
  border-color: var(--c-blue);
}

.qty-ctrl button {
  width: 38px;
  height: 42px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-muted);
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}

.qty-ctrl button:hover {
  background: var(--c-blue-3);
  color: var(--c-blue);
}

.qty-ctrl button:active {
  background: var(--c-blue);
  color: #fff;
}

.qty-ctrl .qn {
  width: 52px;
  height: 42px;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-text);
  border: none;
  border-left: 2px solid var(--c-border);
  border-right: 2px solid var(--c-border);
  background: transparent;
  outline: none;
  font-family: var(--f-sans);

  -moz-appearance: textfield;
}

.qty-ctrl .qn::-webkit-outer-spin-button,
.qty-ctrl .qn::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.feat-list {
  list-style: none;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 5px 0;
  font-size: .87rem;
  color: var(--c-muted);
}

.feat-list li::before {
  content: '✓';
  color: var(--c-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.specs-tbl {
  width: 100%;
  border-collapse: collapse;
}

.specs-tbl tr:nth-child(odd) {
  background: var(--c-off);
}

.specs-tbl td {
  padding: 8px 12px;
  font-size: .83rem;
  vertical-align: top;
}

.specs-tbl td:first-child {
  font-weight: 600;
  color: var(--c-text);
  width: 38%;
}

.specs-tbl td:last-child {
  color: var(--c-muted);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--t-base);
}

.value-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 32px rgba(21, 87, 255, .11), 0 0 0 1px rgba(21, 87, 255, .08), inset 0 0 20px rgba(21, 87, 255, .03);
  transform: translateY(-2px);
}

.val-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-blue-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-spring), box-shadow var(--t-base), background var(--t-base);
}

.val-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-blue);
  transition: stroke var(--t-base);
}

.value-card:hover .val-ico {
  background: var(--c-blue);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 22px rgba(21, 87, 255, .3);
}

.value-card:hover .val-ico svg {
  stroke: #fff;
}

.val-name {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.val-desc {
  font-size: .83rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--t-base);
}

.team-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 14px 44px rgba(21, 87, 255, .12), 0 0 0 1px rgba(21, 87, 255, .08), inset 0 0 24px rgba(21, 87, 255, .03);
  transform: translateY(-3px);
}

.team-photo {
  height: 180px;
  background: linear-gradient(135deg, var(--c-blue-3) 0%, #c7deff 40%, var(--c-blue-3) 100%);
  background-size: 200% 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  position: relative;
  overflow: hidden;
  transition: background-position var(--t-slow);
}

.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, .35) 50%,
      rgba(255, 255, 255, 0) 65%);
  background-size: 250% 100%;
  animation: teamShimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes teamShimmer {
  0% {
    background-position: 180% center;
  }

  100% {
    background-position: -80% center;
  }
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(21, 87, 255, .18) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.team-card:hover .team-photo::after {
  opacity: 1;
}

.team-card:hover .team-photo {
  background-position: 100% 100%;
}

.team-photo>* {
  position: relative;
  z-index: 1;
  transition: transform var(--t-spring), filter var(--t-base);
  display: block;
}

.team-card:hover .team-photo>* {
  transform: scale(1.12) translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(21, 87, 255, .3));
}

.team-info {
  padding: 14px;
}

.team-name {
  font-weight: 700;
  font-size: .93rem;
  margin-bottom: 2px;
}

.team-role {
  font-size: .73rem;
  color: var(--c-blue);
  font-weight: 600;
}

.team-spec {
  font-size: .7rem;
  color: var(--c-faint);
  margin-top: 2px;
}

.accred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.accred-pill {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .8);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.svc-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
}

.svc-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 32px rgba(21, 87, 255, .11), 0 0 0 1px rgba(21, 87, 255, .08), inset 0 0 20px rgba(21, 87, 255, .03);
  transform: translateY(-3px);
}

.svc-head {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--c-border);
}

.svc-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--c-blue-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform var(--t-spring), box-shadow var(--t-base), background var(--t-base);
}

.svc-ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--c-blue);
  transition: stroke var(--t-base);
}

.svc-card:hover .svc-ico {
  background: var(--c-blue);
  transform: scale(1.14) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(21, 87, 255, .28);
}

.svc-card:hover .svc-ico svg {
  stroke: #fff;
}

.svc-title {
  font-size: 1.03rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.svc-desc {
  font-size: .83rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.svc-feats {
  padding: 14px 22px;
  background: var(--c-off);
}

.svc-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--c-muted);
  padding: 3px 0;
}

.svc-feat::before {
  content: '->';
  color: var(--c-blue);
  font-weight: 700;
}

.svc-foot {
  padding: 11px 22px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: flex-end;
}

.map-wrap {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-md);
  margin-bottom: 18px;
  background: var(--c-off);
  transition: box-shadow var(--t-base);
}

.map-wrap:hover {
  box-shadow: var(--s-lg);
}

#google-map {
  width: 100%;
  height: 340px;
  display: block;
  border: none;
  background: var(--c-off);
}

.map-address-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  font-size: .8rem;
  color: var(--c-muted);
}

.map-addr-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.map-address-bar span {
  flex: 1;
  min-width: 0;
}

.map-dir-btn {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--c-blue-3);
  transition: background var(--t-fast), color var(--t-fast);
}

.map-dir-btn:hover {
  background: var(--c-blue);
  color: #fff;
}

.leaflet-canon-popup .leaflet-popup-content-wrapper {
  border-radius: var(--r-md) !important;
  box-shadow: var(--s-lg) !important;
  padding: 0 !important;
  border: 1px solid var(--c-border);
  overflow: hidden;
}

.leaflet-canon-popup .leaflet-popup-content {
  margin: 14px 16px !important;
  font-family: var(--f-sans) !important;
  line-height: 1.5;
}

.leaflet-canon-popup .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-canon-popup .leaflet-popup-tip {
  background: #fff;
  box-shadow: none;
}

.leaflet-canon-popup .leaflet-popup-close-button {
  color: var(--c-faint) !important;
  font-size: 16px !important;
  top: 6px !important;
  right: 8px !important;
}

.leaflet-canon-popup .leaflet-popup-close-button:hover {
  color: var(--c-text) !important;
}

.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 255, 255, .8) !important;
  backdrop-filter: blur(4px);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.leader-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow-y: auto;
  box-shadow: var(--s-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-lg);
  border-color: transparent;
}

.leader-card:focus-visible {
  outline: 2.5px solid var(--c-blue);
  outline-offset: 3px;
}

.lc-header {
  background: linear-gradient(135deg, var(--lc-color), var(--lc-color-2));
  padding: 22px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 96px;
}

.lc-dept-tag {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 14px;
  align-self: flex-start;
}

.lc-avatar-wrap {
  position: relative;
  margin-bottom: -22px;
  z-index: 1;
}

.lc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 3px solid rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  transition: transform var(--t-spring);
  overflow: hidden;
}

.leader-card:hover .lc-avatar {
  transform: scale(1.08);
}

.lc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.lc-status {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  border: 2.5px solid #fff;
  position: absolute;
  bottom: 2px;
  right: 2px;
}

.lc-body {
  padding: 30px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.lc-id-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.lc-id-no {
  font-size: .6rem;
  font-weight: 700;
  color: var(--c-faint);
  letter-spacing: .08em;
}

.lc-badge {
  font-size: .58rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lc-name {
  font-size: .97rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 2px;
}

.lc-role {
  font-size: .73rem;
  font-weight: 600;
  color: var(--c-muted);
}

.lc-spec {
  font-size: .7rem;
  color: var(--c-faint);
  margin-bottom: 6px;
}

.lc-bio {
  font-size: .74rem;
  color: var(--c-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.lc-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin: 8px 0 6px;
}

.lc-stat {
  flex: 1;
  padding: 8px 4px;
  text-align: center;
  border-right: 1px solid var(--c-border);
}

.lc-stat:last-child {
  border-right: none;
}

.lc-stat-val {
  font-size: .9rem;
  font-weight: 800;
  color: var(--c-text);
}

.lc-stat-lbl {
  font-size: .57rem;
  color: var(--c-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lc-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.lc-cred {
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--c-off);
  color: var(--c-muted);
  border: 1px solid var(--c-border);
  letter-spacing: .04em;
}

.lc-contacts {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  border-top: 1px solid var(--c-border);
  padding-top: 10px;
}

.lc-contact-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--c-off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  text-decoration: none;
  border: 1px solid var(--c-border);
  transition: background var(--t-fast), transform var(--t-spring);
  flex-shrink: 0;
}


.lc-contact-btn:hover {
  background: var(--c-blue-3);
  border-color: var(--c-blue);
  transform: scale(1.12);
}

.lc-profile-btn {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 700;
  color: var(--c-blue);
  background: var(--c-blue-3);
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-family: var(--f-sans);
  white-space: nowrap;
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}

.lc-profile-btn:hover {
  background: #dce8ff;
  transform: translateX(2px);
}

.leader-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(7, 26, 53, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.leader-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.leader-modal-box {
  background: var(--c-white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 640px;

  flex-shrink: 0;
  box-shadow: var(--s-xl);
  margin: auto;
  transform: translateY(40px) scale(.97);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.leader-modal-overlay.open .leader-modal-box {
  transform: translateY(0) scale(1);
}

.lm-inner {
  display: flex;
  flex-direction: column;
  position: relative;
}

.lm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--c-border);
  font-size: .85rem;
  color: var(--c-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  box-shadow: var(--s-sm);
}

.lm-close:hover {
  background: #fff;
  color: var(--c-red);
  transform: rotate(90deg);
}

.lm-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px 22px;
  position: relative;
}

.lm-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .5);
  border: 3px solid rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  box-shadow: var(--s-md);
  overflow: hidden;
}

.lm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lm-hero-info {
  flex: 1;
}

.lm-dept-tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 6px;
}

.lm-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 3px;
}

.lm-role {
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 3px;
}

.lm-spec {
  font-size: .77rem;
  color: var(--c-faint);
}

.lm-stats-row {
  display: flex;
  border-bottom: 1px solid var(--c-border);
}

.lm-stat {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--c-border);
}

.lm-stat:last-child {
  border-right: none;
}

.lm-stat-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-text);
}

.lm-stat-lbl {
  font-size: .65rem;
  color: var(--c-faint);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.lm-section {
  padding: 18px 28px 0;
}

.lm-section-title {
  font-size: .65rem;
  font-weight: 800;
  color: var(--c-faint);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.lm-bio {
  font-size: .87rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 4px;
}

.lm-edu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lm-edu-list li {
  font-size: .82rem;
  color: var(--c-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.lm-edu-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-size: .7rem;
  top: 1px;
}

.lm-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 4px;
}

.lm-contact-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 28px;
  border-top: 1px solid var(--c-border);
  margin-top: 18px;
  background: var(--c-off);
}

.lm-contact-link {
  font-size: .8rem;
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: none;
  flex: 1;
  min-width: 180px;
  transition: opacity var(--t-fast);
}

.lm-contact-link:hover {
  opacity: .75;
}

@media (max-width: 1200px) {
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .lm-hero {
    flex-direction: column;
    text-align: center;
  }

  .lm-contact-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

.cc {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: left;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.cc:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 28px rgba(21, 87, 255, .10), 0 0 0 1px rgba(21, 87, 255, .07), inset 0 0 16px rgba(21, 87, 255, .03);
  transform: translateY(-2px);
}

.cc-ico {
  width: 52px;
  height: 52px;
  background: var(--c-blue-3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  transition: transform var(--t-spring), box-shadow var(--t-base), background var(--t-base);
}

.cc-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-blue);
  transition: stroke var(--t-base);
}

.cc:hover .cc-ico {
  background: var(--c-blue);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(21, 87, 255, .3);
}

.cc:hover .cc-ico svg {
  stroke: #fff;
}

.cc-title {
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 7px;
}

.cc-detail {
  font-size: .8rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.cc-detail a {
  color: var(--c-blue);
  text-decoration: none;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-detail a:hover {
  text-decoration: underline;
}

.department-contacts,
.contact-person-details {
  display: grid;
  gap: 5px;
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 5px;
}

.field-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--c-border);
  border-radius: 9px;
  font-family: var(--f-sans);
  font-size: .88rem;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.field-input:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 255, .1);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

textarea.field-input {
  resize: vertical;
  min-height: 115px;
}

select.field-input {
  appearance: none;
  background: var(--c-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%235E7291'/%3E%3C/svg%3E") no-repeat right 11px center;
  cursor: pointer;
}

.emergency {
  background: #fff5f5;
  border: 2px solid #fed7d7;
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 14px;
}

.emergency h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-red);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.emergency p {
  font-size: .83rem;
  color: #c53030;
  line-height: 1.6;
  margin-bottom: 12px;
}

.info-panel {
  background: var(--c-blue-3);
  border-radius: var(--r-lg);
  padding: 18px;
}

.info-panel h4 {
  font-weight: 700;
  font-size: .87rem;
  color: var(--c-blue-2);
  margin-bottom: 9px;
}

.info-list {
  list-style: none;
}

.info-list li {
  font-size: .8rem;
  color: var(--c-muted);
  padding: 3px 0 3px 13px;
  position: relative;
}

.info-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--c-blue);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 18px;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.faq-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 6px 24px rgba(21, 87, 255, .09), 0 0 0 1px rgba(21, 87, 255, .06), inset 0 0 14px rgba(21, 87, 255, .02);
  transform: translateY(-2px);
}

.faq-q {
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.faq-a {
  font-size: .8rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.footer {
  background: var(--c-navy);
  color: #fff;
  padding: 18px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-blue) 25%, var(--c-teal) 50%, var(--c-blue) 75%, transparent);
  background-size: 200% 100%;
  animation: navAccent 4s linear infinite;
  opacity: .75;
}

.footer-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-grid>.footer-logo,
.footer-grid>.footer-col {
  flex: 1 1 0;
  min-width: 0;
}

.footer-logo .logo-name,
.footer-logo .logo-sub {
  color: #fff;
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, .35);
}

.footer-tagline {
  font-size: .83rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.65;
  margin-top: 8px;
  max-width: 180px;
}

.footer-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .45);
  transition: color var(--t-fast);
  cursor: pointer;
}

.footer-links a:hover {
  color: #fff;
}

.footer-ci {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}

.footer-ci a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-ci a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
  white-space: nowrap;
}

.footer-certs {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.cert-pill {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .3);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  white-space: nowrap;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .38);
  z-index: 200;
  backdrop-filter: blur(3px);
  animation: none;
}

.overlay.open {
  display: block;
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: -410px;
  width: 390px;
  height: 100%;
  background: var(--c-white);
  z-index: 201;
  box-shadow: -8px 0 50px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  transition: right var(--t-slow);
}

.drawer.open {
  right: 0;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-border);
}

.drawer-title {
  font-size: 1.07rem;
  font-weight: 800;
}

.close-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-faint);
  transition: all var(--t-fast);
}

.close-btn:hover {
  background: var(--c-off);
  color: var(--c-text);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 22px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 9px;
  color: var(--c-faint);
  text-align: center;
}

.cart-empty .ei {
  font-size: 3rem;
}

.cart-empty p {
  font-size: .93rem;
  font-weight: 500;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--c-border);
  animation: cardIn .3s ease both;
}

.ci-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--c-off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
}

.ci-info {
  flex: 1;
  min-width: 0;
}

.ci-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 1px;
}

.ci-cat {
  font-size: .68rem;
  color: var(--c-blue);
  font-weight: 500;
  margin-bottom: 7px;
}

.ci-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ci-qty {
  display: flex;
  align-items: center;
  background: var(--c-off);
  border-radius: 7px;
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}

.ci-qty:focus-within {
  box-shadow: 0 0 0 2px var(--c-blue);
}

.ci-qty button {
  width: 26px;
  height: 26px;
  font-size: 1rem;
  color: var(--c-muted);
  transition: background var(--t-fast), color var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-qty button:hover {
  background: var(--c-blue-3);
  color: var(--c-blue);
}

.ci-qty button:active {
  background: var(--c-blue);
  color: #fff;
}

.ci-qty .qn {
  width: 36px;
  height: 26px;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-text);
  border: none;
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  background: transparent;
  outline: none;
  font-family: var(--f-sans);
  -moz-appearance: textfield;
}

.ci-qty .qn::-webkit-outer-spin-button,
.ci-qty .qn::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ci-price {
  font-size: .93rem;
  font-weight: 700;
}

.drawer-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--c-border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}

.ct-label {
  font-size: .87rem;
  font-weight: 600;
  color: var(--c-muted);
}

.ct-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-blue);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--c-navy);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--r-md);
  font-size: .85rem;
  font-weight: 500;
  z-index: 300;
  box-shadow: var(--s-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  white-space: nowrap;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.wa-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 28px 90px;
  pointer-events: none;
}

.wa-popup {
  position: relative;
  background: linear-gradient(145deg, var(--c-navy), #0a2248);
  border: 1px solid rgba(0, 200, 150, .22);
  border-radius: 22px;
  width: 340px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42), 0 0 0 1px rgba(0, 200, 150, .1);
  overflow: hidden;
  transform: translateX(120%) scale(.94);
  opacity: 0;
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
  pointer-events: none;
}

.wa-popup.wa-visible {
  transform: translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.wa-popup::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, .14) 0%, transparent 70%);
  pointer-events: none;
}

.wa-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.wa-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
  position: relative;
}

.wa-avatar::after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid var(--c-navy);
}

.wa-agent-info {
  flex: 1;
  min-width: 0;
}

.wa-agent-name {
  font-size: .87rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.wa-agent-role {
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.wa-online-pill {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #25D366;
  background: rgba(37, 211, 102, .12);
  border: 1px solid rgba(37, 211, 102, .22);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 46px;
  align-items: center;

}

.wa-body {
  padding: 16px 20px;
}

.wa-bubble {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 4px 16px 16px 16px;
  padding: 13px 16px;
  margin-bottom: 14px;
  position: relative;
}

.wa-bubble-text {
  font-size: .85rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.6;
}

.wa-bubble-time {
  font-size: .62rem;
  color: rgba(255, 255, 255, .28);
  margin-top: 6px;
  text-align: right;
}

.wa-cta-row {
  display: flex;
  gap: 9px;
}

.wa-btn-chat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: var(--f-sans);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .32);
  text-decoration: none;
}

.wa-btn-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
}

.wa-btn-later {
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .45);
  font-family: var(--f-sans);
  font-size: .78rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.wa-btn-later:hover {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .75);
}

.wa-dismiss {
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-dismiss-btn {
  font-size: .68rem;
  color: rgba(255, 255, 255, .22);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-sans);
  letter-spacing: .03em;
  transition: color .2s;
}

.wa-dismiss-btn:hover {
  color: rgba(255, 255, 255, .55);
}

.wa-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .4);
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.wa-close:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  transform: rotate(90deg);
}

.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 599;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 2px 8px rgba(0, 0, 0, .25);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
  border: none;
}

.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
}

.wa-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: waPing 2.2s cubic-bezier(0, 0, .2, 1) infinite;
}

@keyframes waPing {
  0% {
    transform: scale(.9);
    opacity: .7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.wa-fab-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-red);
  border: 2px solid white;
  font-size: .5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(7, 26, 53, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.cta-popup-overlay.cta-open {
  opacity: 1;
  pointer-events: auto;
}

.cta-popup {
  position: relative;
  background: linear-gradient(145deg, var(--c-navy), #0d2b55);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  transform: translateY(60px) scale(.97);
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(0, 200, 150, .12);
}

.cta-popup-overlay.cta-open .cta-popup {
  transform: translateY(0) scale(1);
}

.cta-popup-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, .18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-popup-inner {
  position: relative;
  z-index: 1;
  padding: 44px 44px 36px;
  text-align: center;
}

.cta-popup-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  animation: popupFloat 3s ease-in-out infinite alternate;
}

@keyframes popupFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

.cta-popup-title {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.cta-popup-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 28px;
}

.cta-popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-popup-note {
  font-size: .68rem;
  color: rgba(255, 255, 255, .28);
  letter-spacing: .03em;
}

.cta-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

.cta-popup-close:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  transform: rotate(90deg);
}

@media (max-width: 1024px) {

  .grid-4,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px;
  }

  .sb-section {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex: 1;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 42px 0;
  }

  .section-sm {
    padding: 34px 0;
  }

  .topbar {
    display: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "logo cart menu"
      "search search search";
    align-items: center;
    gap: 8px;
    height: auto;
    min-height: 68px;
    padding-top: 8px;
    padding-bottom: 9px;
  }

  .logo {
    grid-area: logo;
    gap: 9px;
    min-width: 0;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .logo-name {
    font-size: clamp(.96rem, 4.2vw, 1.08rem);
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .logo-sub {
    font-size: .57rem;
  }

  .header-actions {
    display: contents;
  }

  .cart-btn {
    grid-area: cart;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: .82rem;
  }

  .mob-btn {
    grid-area: menu;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .search-input {
    grid-area: search;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-size: .88rem;
    border-radius: 13px;
    background: var(--c-off);
  }

  .search-input:focus {
    width: 100%;
  }

  .hero {
    min-height: 480px;
    height: 72svh;
    max-height: 640px;
  }

  .hero-content {
    padding: 0 22px;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-lead {
    font-size: .85rem;
  }

  .hs-caption {
    display: none;
  }

  .hero-trust {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .team-grid,
  .detail-layout,
  .contact-layout,
  .contact-cards,
  .value-grid,
  .svc-grid,
  .faq-grid,
  .trust-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .media-collection-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-video {
    height: clamp(210px, 55vw, 300px);
  }

  .products-layout {
    gap: 18px;
  }

  .sidebar {
    display: block;
    position: static;
    padding: 14px;
    border-radius: 14px;
  }

  .sidebar #catSidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar #catSidebar .cat-btn {
    width: auto;
    flex: 0 0 auto;
    gap: 8px;
    white-space: nowrap;
  }

  .sidebar .sb-section {
    border-top: 1px solid var(--c-border);
    border-bottom: none;
    margin: 12px 0 0;
    padding: 12px 0 0;
  }

  .sidebar .sb-section:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
  }

  .sidebar .sb-section:last-child .sb-label {
    width: 100%;
    margin-bottom: 0;
  }

  .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolbar {
    align-items: stretch;
  }

  .toolbar-right {
    width: 100%;
    min-width: 0;
  }

  .sort-sel {
    width: 100%;
    min-height: 42px;
  }

  .prod-thumb {
    height: 170px;
  }

  .prod-thumb .prod-img-real {
    padding: 16px;
  }

  .prod-body {
    padding: 13px;
  }

  .prod-name {
    font-size: .9rem;
  }

  .prod-foot {
    align-items: flex-start;
    gap: 8px;
  }

  .now {
    font-size: 1rem;
  }

  .nav {
    display: none;
    flex-direction: column;
    overflow: visible;
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    background: var(--c-white);
    padding: 8px;
    border: 1px solid var(--c-border);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--s-md);
    z-index: 99;
  }

  .nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 13px 12px;
    border-radius: 10px;
    font-size: .83rem;
  }

  .nav-item::after {
    left: 12px;
    bottom: 7px;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .nav-item.active::after {
    transform: scaleX(1);
  }

  .header-actions .btn-primary {
    display: none;
  }

  .header-actions .login-btn {
    display: none;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  .cta-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sale-strip {
    grid-template-columns: 1fr;
  }

  .sale-strip-actions {
    flex-wrap: wrap;
  }

  .img-main {
    border-radius: 18px;
    font-size: 4.8rem;
  }

  .img-main img {
    padding: 18px;
  }

  .thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .detail-name {
    font-size: 1.55rem;
  }

  .detail-price {
    font-size: 1.65rem;
    flex-wrap: wrap;
  }

  .detail-info-panel {
    padding: 14px;
  }

  .trust-row {
    gap: 6px;
    padding: 12px 0;
  }

  .qty-row {
    align-items: stretch;
  }

  .qty-ctrl {
    flex-shrink: 0;
  }

  .section-title,
  .title {
    font-size: 1.7rem;
  }

  .footer-grid {
    flex-wrap: wrap;
  }

  .footer-grid>.footer-logo,
  .footer-grid>.footer-col {
    flex: 1 1 100%;
  }

  .drawer {
    width: min(100vw, 390px);
    right: -100vw;
  }

  .wa-overlay {
    justify-content: center;
    padding: 0 14px 82px;
  }

  .wa-popup {
    width: 100%;
    max-width: 360px;
  }

  .cta-popup-overlay {
    padding: 0 12px 16px;
  }

  .cta-popup {
    border-radius: 22px;
    max-height: calc(100svh - 32px);
    overflow-y: auto;
  }

  .cta-popup-inner {
    padding: 34px 22px 26px;
  }

  .cta-popup-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 14px;
  }

  .section-sm {
    padding: 24px 0 34px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 7px;
    padding-top: 7px;
    padding-bottom: 8px;
  }

  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: .98rem;
  }

  .logo-name {
    font-size: .98rem;
  }

  .logo-sub {
    letter-spacing: .04em;
  }

  .cart-btn {
    min-height: 38px;
    padding: 7px 10px;
    gap: 6px;
    font-size: .78rem;
  }

  .cart-badge {
    min-width: 17px;
    height: 17px;
    font-size: .58rem;
  }

  .mob-btn {
    width: 38px;
    height: 38px;
  }

  .search-input {
    min-height: 40px;
    padding: 8px 12px;
    font-size: .84rem;
  }

  .nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 400px;
    height: 65svh;
  }

  .hero-h1 {
    font-size: 1.7rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 9px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hs-nav {
    display: none;
  }

  .grid-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prod-card {
    border-radius: 16px;
  }

  .prod-thumb {
    height: clamp(190px, 56vw, 230px);
  }

  .prod-body {
    padding: 14px 16px;
  }

  .prod-foot {
    align-items: center;
    gap: 10px;
  }

  .now {
    font-size: 1.06rem;
    line-height: 1.15;
  }

  .products-layout {
    gap: 14px;
  }

  .toolbar {
    gap: 8px;
  }

  .result-count {
    width: 100%;
  }

  .sidebar {
    margin: 0;
    padding: 12px;
    border-radius: 14px;
  }

  .sidebar #catSidebar {
    margin-left: -2px;
    margin-right: -2px;
  }

  .range-row {
    font-size: .72rem;
  }

  .img-main {
    max-height: min(78vw, 360px);
  }

  .thumbs {
    grid-template-columns: repeat(4, minmax(58px, 1fr));
    gap: 7px;
  }

  .thumb-item img {
    padding: 4px;
  }

  .qty-row {
    flex-direction: column;
  }

  .qty-ctrl,
  .add-lg {
    width: 100%;
  }

  .qty-ctrl button,
  .qty-ctrl .qn {
    flex: 1;
  }

  .specs-tbl td {
    display: block;
    width: 100%;
    padding: 8px 10px;
  }

  .specs-tbl td:first-child {
    width: 100%;
    padding-bottom: 2px;
  }

  .specs-tbl td:last-child {
    padding-top: 2px;
  }

  .home-prod-track-wrap {
    overflow-x: hidden;
  }

  .home-prod-track {
    flex-direction: column;
    width: 100%;
    padding: 4px 0 8px;
  }

  .home-prod-track .prod-card {
    flex: none;
    width: 100%;
  }

  .home-prod-nav {
    display: none;
  }

  .brand-item {
    padding: 12px 16px;
  }

  .drawer-head,
  .drawer-body,
  .drawer-foot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-item {
    gap: 10px;
  }

  .ci-thumb {
    width: 50px;
    height: 50px;
  }

  .toast {
    left: 14px;
    right: 14px;
    transform: translateY(70px);
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .toast.show {
    transform: translateY(0);
  }

  .wa-cta-row {
    flex-direction: column;
  }

  .wa-fab {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-stage {
    height: 76svh;
  }

  .gallery-close,
  .gallery-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-prev {
    left: 18px;
    top: auto;
    bottom: max(18px, env(safe-area-inset-bottom));
    transform: none;
  }

  .gallery-next {
    right: 18px;
    top: auto;
    bottom: max(18px, env(safe-area-inset-bottom));
    transform: none;
  }

  .gallery-prev:hover,
  .gallery-next:hover {
    transform: scale(1.06);
  }

  .gallery-caption {
    bottom: max(74px, calc(env(safe-area-inset-bottom) + 72px));
    font-size: .84rem;
  }

  .gallery-count {
    bottom: max(58px, calc(env(safe-area-inset-bottom) + 56px));
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 6px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .logo-name {
    font-size: .92rem;
  }

  .logo-sub {
    font-size: .52rem;
  }

  .cart-btn {
    padding: 7px 9px;
  }

  .mob-btn {
    width: 36px;
    height: 36px;
  }

  .nav {
    left: 12px;
    right: 12px;
  }
}

@media (hover: none) and (pointer: coarse) {

  .prod-card:hover,
  .team-card:hover,
  .svc-card:hover,
  .cc:hover {
    transform: none !important;
  }

  .prod-card:hover .prod-thumb .prod-img-real {
    transform: scale(1);
  }

  .prod-thumb::after {
    display: none;
  }

  .wish-btn {
    opacity: 1;
  }

  .btn:hover,
  .prod-arr:hover:not(:disabled),
  .test-arr:hover:not(:disabled),
  .content-img:hover {
    transform: none;
  }
}

.content-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--s-xl);
  display: block;
  transition: transform var(--t-slow), box-shadow var(--t-slow), filter var(--t-slow);
  position: relative;

  filter: brightness(1) saturate(1.04);
  cursor: zoom-in;
}

.content-img:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 32px 80px rgba(7, 26, 53, .22), 0 0 0 2px rgba(21, 87, 255, .14);
  filter: brightness(1.04) saturate(1.08);
}

.content-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: block;
}

.content-img-wrap .content-img {
  border-radius: var(--r-xl);
}

.content-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, .12) 50%,
      rgba(255, 255, 255, 0) 70%);
  background-size: 250% 100%;
  animation: teamShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.content-img-wrap:hover::after {
  animation-play-state: paused;
  opacity: 0;
}
