/* =========================================================
   MR.BOND EV — Light Theme + Electric Green
   ========================================================= */

:root {
  --bg:        #FFFFFF;
  --bg-2:      #F7F9FC;
  --surface:   #FFFFFF;
  --surface-2: #F4F6FA;
  --border:    #E5E7EB;
  --border-2:  #D1D5DB;
  --text:      #0F1115;
  --text-dim:  #5B6373;
  --text-dim-2:#9AA0AC;
  --accent:    #00C26B;
  --accent-2:  #00A85A;
  --accent-bg: #E6FBF1;
  --accent-glow: rgba(0, 194, 107, 0.22);
  --accent-soft: rgba(0, 194, 107, 0.08);
  --danger:    #DC2626;
  --danger-bg: #FEF2F2;
  --orange:    #FF6B1A;
  --shadow-sm: 0 1px 2px rgba(15, 17, 21, 0.04), 0 1px 3px rgba(15, 17, 21, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 17, 21, 0.06), 0 2px 4px rgba(15, 17, 21, 0.04);
  --shadow-lg: 0 18px 40px rgba(15, 17, 21, 0.08), 0 4px 12px rgba(15, 17, 21, 0.05);
  --shadow-accent: 0 12px 30px rgba(0, 194, 107, 0.22);
  --radius:   14px;
  --radius-lg:22px;
  --container: 1200px;
  --t-fast:   .18s ease;
  --t-base:   .35s cubic-bezier(.2,.7,.2,1);
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;          /* both html+body — reliably kills horizontal scroll */
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(0,194,107,.10), transparent 60%),
    radial-gradient(900px 500px at -5% 30%, rgba(0,194,107,.05), transparent 70%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============= NAV ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0);
  transition: background var(--t-base), backdrop-filter var(--t-base), border var(--t-base), box-shadow var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);     /* near-opaque so badges/pills don't bleed through */
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;   /* logo | centered links | actions */
  align-items: center;
  gap: 24px;
}
.nav__inner > .nav__logo { justify-self: start; }
.nav__inner > nav        { justify-self: center; }
.nav__inner > div:last-child { justify-self: end; }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: var(--text);
}
.nav__logo img {
  height: 88px;
  width: auto;
  display: block;
}
.nav__logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
.nav__links {
  display: flex;
  align-items: center;     /* all items on one baseline */
  gap: 4px;
  list-style: none;
}
.nav__links > li { display: flex; align-items: center; }
.nav__links a {
  display: inline-flex;    /* same display mode for every link (incl. Products trigger) */
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .92rem;
  line-height: 1;
  color: var(--text-dim);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--text);
  background: var(--surface-2);
}

/* ============= MEGA MENU ============= */
.nav__has-mega { position: relative; }
.nav__mega-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav__mega-caret { font-size: .7rem; transition: transform var(--t-base); }
.nav__has-mega:hover .nav__mega-caret { transform: rotate(180deg); }
.nav__mega-toggle { display: none; }   /* shown only on mobile */

.nav__mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 700px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 28px 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), transform var(--t-base);
  z-index: 200;
}
.nav__mega::before {        /* hover bridge across the gap */
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav__has-mega:hover .nav__mega,
.nav__has-mega:focus-within .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__mega-grid {
  display: block;
}
/* Header inside the dropdown */
.nav__mega-head {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.nav__mega-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav__mega-eyebrow i { font-size: .95rem; }
.nav__mega-lead {
  margin: 8px 0 0;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--text-dim);
}

/* Two-column clean product list — no thumbnails, just typography */
.nav__mega-grid { padding: 0; }
.nav__mega-list {
  columns: 2;
  column-gap: 32px;
}
.nav__mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--text-dim);
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
  break-inside: avoid;
  text-decoration: none;
}
.nav__mega-item:hover {
  background: var(--accent-bg);
  color: var(--text);
  padding-left: 14px;
}
.nav__mega-name {
  flex: 1;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__mega-item:hover .nav__mega-name { color: var(--text); }
.nav__mega-go {
  flex: 0 0 auto;
  font-size: .78rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  color: var(--accent);
}
.nav__mega-item:hover .nav__mega-go { opacity: 1; transform: translateX(0); }

/* Footer row — "View all" link on the left, "Catalogue PDF" on the right, divider above */
.nav__mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.nav__mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.nav__mega-all i { transition: transform var(--t-fast); font-size: .82rem; }
.nav__mega-all:hover i { transform: translateX(4px); }
.nav__mega-pdf {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.nav__mega-pdf:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav__mega-pdf i { font-size: .9rem; }

/* Top-nav Catalogue pill — sits beside Get Quote on every page */
.nav__catalogue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.nav__catalogue i {
  color: #E11900;     /* PDF red — instantly recognisable as a document link */
  font-size: 1rem;
}
.nav__catalogue:hover {
  background: var(--accent-bg);
  border-color: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .nav__catalogue span { display: none; }    /* on mobile, show just the icon to save width */
  .nav__catalogue { padding: 9px 11px; }
}

/* Products page — filter chips on the left, Catalogue download button on the right */
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-row .filter-chips { margin-bottom: 0; flex: 1 1 auto; }
.catalogue-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.catalogue-pill i { font-size: 1rem; }
.catalogue-pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .filter-row { flex-direction: column; align-items: stretch; }
  .catalogue-pill { justify-content: center; }
}

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;        /* never wrap "Get Quote" to two lines */
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: var(--shadow-sm);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}
.nav__toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px; height: 42px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  background: var(--accent-2);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}
.btn .arrow {
  transition: transform var(--t-fast);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============= SECTION COMMON ============= */
.section {
  padding: 100px 0;
  position: relative;
}
.section--sm { padding: 60px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;           /* keep on one line — pill should hug its content, never wrap */
  max-width: 100%;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.section__head {
  text-align: center;
  margin-bottom: 60px;
}
.section__head h2 { margin: 18px 0 14px; }
.section__head p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ============= HERO ============= */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 40px;
  align-items: center;
}
.hero__title {
  /* Tighter scale than the global h1 — the keyword phrase is long and needs to wrap in 2-3 clean lines */
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.12;
  margin: 22px 0 18px;
  max-width: 620px;
  text-wrap: balance;            /* lets the browser balance line lengths (Chromium 114+, Firefox 121+, Safari 17.5+) */
}
.hero__title .accent { color: var(--accent); }
.hero__title-sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(.9rem, 1.1vw, 1.05rem);     /* absolute scale — doesn't compound with the H1's font-size */
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-dim);
  line-height: 1.4;
}
.hero__title .strike {
  position: relative;
  display: inline-block;
}
.hero__title .strike::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6px; height: 14px;
  background: var(--accent-bg);
  z-index: -1;
  border-radius: 3px;
}
.hero__sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__typed {
  color: var(--accent);
  font-weight: 700;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero__stats {
  display: flex; gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero__stat .n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.hero__stat .l {
  color: var(--text-dim);
  font-size: .85rem;
  letter-spacing: .04em;
}

.hero__visual-wrap {
  position: relative;
}
.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;            /* matches the 1025x768 hero image */
  box-shadow: var(--shadow-lg);
}
.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fills the frame edge-to-edge, no gaps */
  display: block;
  filter: contrast(1.03) saturate(1.04);  /* subtle pop for the light photo */
}

/* Spec pills BELOW the image (no longer overlapping the product) */
.hero__spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.hero__spec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hero__spec .pin {
  width: 8px; height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.hero__chips {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero__chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  font-size: .8rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.hero__chip .pin {
  width: 8px; height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.hero__chip--1 { top: 22px;  left: -18px;  animation-delay: 0s; }
.hero__chip--2 { top: 50%; right: -18px; transform: translateY(-50%); animation-delay: 1s; }
.hero__chip--3 { bottom: 22px; left: -18px; animation-delay: 2s; }

/* Keep middle chip centered while floating */
.hero__chip--2 { animation-name: float-mid; }
@keyframes float-mid {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 8px)); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============= MARQUEE ============= */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex; gap: 50px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-dim);
  font-size: .95rem;
}
.marquee__item .icn {
  color: var(--accent);
  font-size: 1.3rem;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============= APPLICATIONS GRID ============= */
.apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.app-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(0,194,107,.10), transparent 40%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.app-card:hover::before { opacity: 1; }
.app-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-soft);
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 22px;
}
.app-card h4 { margin-bottom: 8px; }
.app-card p { color: var(--text-dim); font-size: .92rem; }
.app-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: .75rem;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============= PRODUCT GRID ============= */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.product-card__img {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-base);
}
.product-card:hover .product-card__img img {
  transform: scale(1.06);
}
.product-card__badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.product-card__body { padding: 22px; }
.product-card__body h4 { margin-bottom: 8px; }
.product-card__body p {
  color: var(--text-dim);
  font-size: .9rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
}
.product-card__link svg, .product-card__link i { transition: transform var(--t-fast); }
.product-card:hover .product-card__link i { transform: translateX(4px); }

/* ============= STATS ============= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat .n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .l {
  color: var(--text-dim);
  font-size: .9rem;
  letter-spacing: .04em;
}

/* ============= CTA BANNER ============= */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF6 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner h2 { margin: 16px 0; }
.cta-banner p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 30px;
}

/* ============= FILTER CHIPS ============= */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: inherit;
}
.chip:hover {
  border-color: var(--border-2);
  color: var(--text);
}
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

/* ============= ABOUT SECTIONS ============= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-md);
}
.about-split__img img { width: 100%; height: 100%; object-fit: cover; }
.about-split h2 { margin-bottom: 18px; }
.about-split p { color: var(--text-dim); margin-bottom: 16px; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--shadow-sm);
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  margin: 0 auto 22px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-soft);
  display: grid; place-items: center;
  font-size: 1.7rem;
  color: var(--accent);
}
.value-card h4 { margin-bottom: 10px; }
.value-card p { color: var(--text-dim); font-size: .92rem; }

.certs {
  display: flex; gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cert {
  padding: 18px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.cert .icn { color: var(--accent); font-size: 1.5rem; }

/* ============= PRODUCT DETAIL ROWS (list view) ============= */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 24px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--shadow-sm);
}
.product-row:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.product-row__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
}
.product-row__img img { width: 100%; height: 100%; object-fit: cover; }
.product-row__body h3 { margin-bottom: 14px; }
.product-row__body p {
  color: var(--text-dim);
  margin-bottom: 18px;
}
.product-row__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.product-row__tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: .04em;
  font-weight: 600;
}
.product-row__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============= PRODUCT DETAIL PAGE ============= */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
/* Left-column wrapper — holds the gallery + Key Features card under it.
   This balances column heights so the right column's spec table + CTAs
   don't leave a giant blank space on the left. */
.product-detail__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.product-detail__features-card {
  background: linear-gradient(160deg, #FFFFFF 0%, #F4FBF1 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.product-detail__features-card:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-md);
}
.product-detail__features-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.product-detail__features-title i {
  color: var(--accent);
  font-size: 1.15rem;
}
.product-detail__features-card .feature-list { margin: 0; }
.product-detail__gallery {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #FFFFFF 0%, #F0FDF6 100%);
  box-shadow: var(--shadow-md);
  padding: 40px;
}
.product-detail__gallery > img,
.product-detail__gallery #galleryMain {
  width: 100%;
  height: auto;          /* preserve natural aspect ratio — prevents stretching */
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
}

/* Thumbnail strip (multi-image products) */
.product-detail__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.product-detail__thumb {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.product-detail__thumb:hover { transform: translateY(-2px); }
.product-detail__thumb.is-active { border-color: var(--accent); }
.product-detail__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
}
.product-detail__info h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
.product-detail__info .lede {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.product-detail__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}

.spec-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0;
}
.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  font-size: .94rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .k {
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: .02em;
}
.spec-row .v { color: var(--text); font-weight: 600; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px 0 30px;
}
.feature-list li {
  display: flex; gap: 12px;
  font-size: .96rem;
  color: var(--text);
}
.feature-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-iso {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--accent-bg);
  border-radius: var(--radius);
  transition: border-color var(--t-fast);
}
.product-iso:hover { border-color: var(--accent); }
.product-iso img { width: 40px; height: 40px; flex-shrink: 0; }
.product-iso span { font-size: .86rem; color: var(--text-dim); line-height: 1.4; }
.product-iso strong { color: var(--text); }

.product-actions {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

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

/* ============= CONTACT ============= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}
.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info h3 { margin-bottom: 24px; }
.contact-item {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.contact-item__body { flex: 1; }
.contact-item__body .label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim-2);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-item__body .val {
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.contact-item__body .val a:hover { color: var(--accent); }
.contact-actions {
  display: flex; gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.action-chip {
  flex: 1;
  min-width: 100px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  font-size: .88rem;
  color: var(--text);
  transition: all var(--t-fast);
  font-weight: 500;
}
.action-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--text-dim); margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field { display: block; margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: .92rem;
  display: flex; gap: 10px; align-items: center;
}
.alert--success {
  background: var(--accent-bg);
  border: 1px solid var(--accent);
  color: var(--accent-2);
}
.alert--error {
  background: var(--danger-bg);
  border: 1px solid var(--danger);
  color: var(--danger);
}

/* ============= PAGE HERO (sub-pages) ============= */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0,194,107,.10), transparent 60%);
}
.breadcrumb {
  display: inline-flex; gap: 10px;
  color: var(--text-dim);
  font-size: .88rem;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-dim-2); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__brand p {
  color: var(--text-dim);
  font-size: .92rem;
  max-width: 320px;
}
.footer__col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  color: var(--text-dim);
  font-size: .92rem;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .85rem;
  flex-wrap: wrap; gap: 14px;
}
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: all var(--t-fast);
}
.footer__socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

/* ============= FLOATING WHATSAPP BUTTON ============= */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35), 0 4px 10px rgba(15,17,21,.12);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.float-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .45), 0 6px 14px rgba(15,17,21,.18);
  color: #fff;
}
.float-whatsapp i {
  font-size: 1.4rem;
  line-height: 1;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 10px 24px rgba(37,211,102,.35), 0 0 0 12px rgba(37,211,102,0); }
}
@media (max-width: 720px) {
  .float-whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .float-whatsapp span { display: none; }
  .float-whatsapp i { font-size: 1.5rem; }
}

/* ============= UTILITIES & FX ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,17,21,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,17,21,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.text-accent { color: var(--accent); }

/* ============= RESPONSIVE ============= */
@media (max-width: 992px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .apps, .products, .stats, .values { grid-template-columns: repeat(2, 1fr) !important; }
  .about-split { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .product-row { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  /* On mobile, flatten the left wrapper into the grid and re-order:
     gallery → info → features (natural reading order, matches old layout). */
  .product-detail__left { display: contents; }
  .product-detail__gallery { position: static; order: 1; }
  .product-detail__info { order: 2; }
  .product-detail__features-card { order: 3; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero { padding: 130px 0 70px; }
  /* Hero title — drop the desktop max-width and pull the size in a touch for narrow screens */
  .hero__title { max-width: none; font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .hero__title-sub { font-size: .92rem; }
  /* Mobile header: flex (not the desktop centering grid) so actions don't get squeezed */
  .nav__inner { display: flex; justify-content: space-between; gap: 12px; }
  .nav__logo img { height: 54px; }              /* smaller logo on mobile */
  .nav__cta { padding: 9px 15px; font-size: .82rem; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav.menu-open .nav__links {
    display: flex;
    align-items: stretch;        /* left-align menu items, full width */
    text-align: left;
    position: absolute;
    top: 70px; left: 16px; right: 16px;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    /* When the Products mega menu expands inline, the menu can be taller than the screen.
       Cap to viewport height and allow the panel to scroll internally. */
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;          /* don't scroll the page behind when reaching the menu's ends */
    -webkit-overflow-scrolling: touch;     /* smooth iOS momentum scroll */
  }
  /* Mega menu → mobile accordion. "Products" link still navigates; chevron expands. */
  .nav__has-mega { display: flex; flex-wrap: wrap; align-items: center; }
  .nav__has-mega > .nav__mega-trigger { flex: 1 1 auto; }
  .nav__mega-caret { display: none; }
  .nav__mega-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; flex: 0 0 auto;
    border: none; background: transparent; color: var(--text-dim);
    cursor: pointer; font-size: 1rem; border-radius: 8px;
  }
  .nav__mega-toggle:hover { background: var(--surface-2); }
  .nav__mega-toggle i { transition: transform var(--t-base); }
  .nav__has-mega.is-open .nav__mega-toggle i { transform: rotate(180deg); }

  .nav__mega,
  .nav__has-mega:hover .nav__mega,
  .nav__has-mega:focus-within .nav__mega {
    display: none;
    position: static !important;
    transform: none !important;   /* kill desktop translateX(-50%) that clipped it left */
    left: auto !important; right: auto !important;
    opacity: 1; visibility: visible;
    width: 100%; max-width: 100%; flex-basis: 100%;
    box-shadow: none; border: none; border-radius: 0;
    padding: 4px 4px 8px; margin-top: 4px;
  }
  .nav__has-mega.is-open .nav__mega { display: block; }
  .nav__mega-grid { padding: 0; }
  .nav__mega-list { columns: 1; column-gap: 0; }    /* single column on mobile */
  .nav__mega-item { padding: 11px 12px; }
  .nav__mega-name { font-size: .94rem; }
  .nav__mega-go { display: none; }
  .nav__mega-head { margin: 0 0 4px; padding: 12px 12px 10px; border-bottom: 1px solid var(--border); }
  .nav__mega-lead { display: none; }                /* hide description on mobile to keep menu compact */
  .nav__mega-all { margin: 4px 0 0; padding: 12px 14px; border-top: 1px solid var(--border); justify-content: flex-start; }

  .apps, .products, .stats, .values, .related-grid { grid-template-columns: 1fr !important; }
  .hero__stats { flex-wrap: wrap; gap: 22px 28px; }
  /* marquee felt sluggish on narrow screens — scroll faster + tighter gap */
  .marquee__track { animation-duration: 14s; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 24px; }
  .contact-info, .contact-form { padding: 26px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================================================
   LEADERSHIP CARDS (About page) + WeChat QR modal
   ========================================================= */
.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.lead-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.lead-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  opacity: 0;
  transition: opacity var(--t-base);
}
.lead-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}
.lead-card:hover::before { opacity: 1; }

.lead-card--founder {
  background: linear-gradient(180deg, #F6FBF4 0%, #FFFFFF 65%);
  border-color: var(--accent-soft);
}
.lead-card--founder::before { opacity: 1; }

.lead-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.lead-card__avatar {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .04em;
  border: 2px solid var(--accent-soft);
}
.lead-card--founder .lead-card__avatar {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #fff;
  border-color: #0F172A;
}
.lead-card__heading { min-width: 0; }
.lead-card__role {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lead-card__role .year-chip {
  font-size: .65rem;
  color: var(--text-dim);
  letter-spacing: .08em;
  font-weight: 600;
  background: var(--surface-2);
  padding: 2px 8px;
  border-radius: 999px;
}
.lead-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}
.lead-card p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 12px;
  text-align: left;
}
.lead-card p:last-of-type { margin-bottom: 0; }

.lead-card__quote {
  margin: 18px 0 0;
  padding: 16px 18px 16px 52px;
  background: var(--accent-bg);
  border-radius: 12px;
  font-style: italic;
  font-size: .94rem;
  color: var(--text);
  position: relative;
  border-left: 3px solid var(--accent);
  line-height: 1.55;
}
.lead-card__quote i {
  position: absolute;
  top: 10px; left: 18px;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
  opacity: .55;
}
.lead-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;       /* push to bottom — equal-height cards */
  padding-top: 24px;
}
.lead-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  border: 1px solid var(--accent-soft);
  background: var(--accent-bg);
  color: var(--accent);
  cursor: pointer;
  font-family: inherit;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.lead-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.lead-btn--wechat {
  background: #fff;
  color: #07C160;
  border-color: #07C160;
}
.lead-btn--wechat:hover {
  background: #07C160;
  color: #fff;
  border-color: #07C160;
}

/* ----- WeChat QR Modal ----- */
.wechat-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wechat-modal[hidden] { display: none; }
.wechat-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: wechatFade .2s ease;
}
.wechat-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 38px 30px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  animation: wechatPop .26s cubic-bezier(.16, 1.05, .28, 1.06);
}
@keyframes wechatFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wechatPop  {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
.wechat-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: none; background: transparent;
  border-radius: 50%;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.wechat-modal__close:hover {
  background: var(--surface-2);
  color: var(--text);
}
.wechat-modal__header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #07C160;
}
.wechat-modal__header i { font-size: 1.5rem; }
.wechat-modal__header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.wechat-modal__qr {
  display: block;
  margin: 0 auto 18px;
  width: 240px; height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}
.wechat-modal__lead {
  font-size: .98rem;
  color: var(--text);
  margin: 0 0 8px;
}
.wechat-modal__steps {
  font-size: .85rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* Mobile leadership */
@media (max-width: 900px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-card__top { gap: 14px; }
  .lead-card__avatar { width: 56px; height: 56px; font-size: 1.05rem; }
}

/* =========================================================
   LOCATIONS (About page) — prateektapes-style cards
   ========================================================= */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.loc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.loc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}
.loc-card--featured {
  border-color: var(--accent);
  border-width: 1.5px;
}
.loc-card__pill {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.loc-card__city {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.25;
}
.loc-card__addr {
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0 0 18px;
}
.loc-card__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 26px;
  font-size: .98rem;
}
.loc-card__phone i {
  color: var(--accent);
  font-size: 1rem;
}
.loc-card__phone a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.loc-card__phone a:hover { border-color: var(--accent); }
.loc-card__dir {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--t-fast);
}
.loc-card__dir-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  transition: width var(--t-fast);
}
.loc-card__dir:hover { gap: 18px; }
.loc-card__dir:hover .loc-card__dir-line { width: 40px; }

.loc-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--text-dim);
  font-size: .94rem;
  flex-wrap: wrap;
  text-align: center;
}
.loc-footer a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.loc-footer a:hover { border-color: var(--accent); color: var(--accent); }
.loc-footer i { color: var(--accent); margin-right: 4px; }

@media (max-width: 720px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card { padding: 26px 24px 22px; }
  .loc-card__city { font-size: 1.2rem; }
}

/* =========================================================
   FOOTER v2 — polish, contact icons, Care card, badges
   ========================================================= */
.footer__logo { display: inline-block; margin-bottom: 20px; }
.footer__logo img { height: 70px; width: auto; }

.footer__tagline {
  color: var(--text-dim);
  font-size: .94rem;
  line-height: 1.65;
  max-width: 330px;
  margin: 0 0 14px;
}
.footer__sub {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
  max-width: 330px;
}
.footer__sub a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.footer__sub a:hover { border-color: var(--accent); }
.footer__sub i { font-size: .78rem; }

/* Social row in brand block + brand-color hovers */
.footer__brand .footer__socials {
  margin-top: 22px;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__brand .social {
  width: 42px; height: 42px;
  font-size: 1.05rem;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.footer__brand .social:hover { transform: translateY(-2px); }
.social--fb:hover  { background: #1877F2 !important; border-color: #1877F2 !important; color: #fff !important; }
.social--ig:hover  { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #515BD4 100%) !important; border-color: transparent !important; color: #fff !important; }
.social--li:hover  { background: #0A66C2 !important; border-color: #0A66C2 !important; color: #fff !important; }
.social--wa:hover  { background: #25D366 !important; border-color: #25D366 !important; color: #fff !important; }

/* "View All Products →" emphasis */
.footer__more {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

/* Contact column — slim, text-first (matches the lightness of Company/Products columns) */
.footer__contact { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer__contact > li {
  color: var(--text-dim);
  font-size: .88rem;
  line-height: 1.55;
  margin: 0;
}
.footer__contact a {
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer__contact a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Customer care line — accent label + bold number on a single row */
.footer__care-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer__care-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}
.footer__care-line a {
  color: var(--text) !important;
  font-weight: 700;
  border: none !important;
}
.footer__care-line a:hover { color: var(--accent) !important; }

.footer__email { padding-bottom: 6px; }

/* Plant blocks — compact single-paragraph format */
.footer__plant strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 2px;
}
.footer__plant {
  font-size: .85rem;
  line-height: 1.5;
}

/* Bottom row trust badges */
.footer__copy { color: var(--text-dim); font-size: .85rem; }
.footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.footer__badge i { color: var(--accent); font-size: .9rem; }

@media (max-width: 720px) {
  .footer { padding: 56px 0 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer__tagline, .footer__sub { max-width: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; gap: 14px; }
  .footer__badges { justify-content: flex-start; }
}

/* =========================================================
   HERO PRODUCT SPOTLIGHT (homepage — featured EVA tape)
   ========================================================= */
.hero-product-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-product {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-product::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}
.hero-product::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-product__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
  z-index: 1;
}
.hero-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-product:hover .hero-product__media img { transform: scale(1.04); }
/* =========================================================
   FLAGSHIP PRODUCTS GRID (homepage + products page top row)
   ========================================================= */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.flagship-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.flagship-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 1;
}
.flagship-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}
.flagship-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}
.flagship-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.flagship-card:hover .flagship-card__media img { transform: scale(1.05); }
.flagship-card__star {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  color: #FFD700;
  font-size: .85rem;
  box-shadow: 0 4px 10px rgba(0, 168, 89, .35);
}
.flagship-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.flagship-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--text);
}
.flagship-card__tag {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0 0 18px;
  flex: 1;
}
.flagship-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.flagship-card__link i { transition: transform var(--t-fast); }
.flagship-card:hover .flagship-card__link i { transform: translateX(4px); }

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

/* =========================================================
   MEGA-MENU flagship sub-section (top of the dropdown)
   ========================================================= */
.nav__mega-flagship {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.nav__mega-flagship-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px 6px;
}
.nav__mega-flagship-label i { color: #FFD700; font-size: .8rem; }
.nav__mega-flagship-items {
  columns: 2;
  column-gap: 32px;
}
.nav__mega-item--flag .nav__mega-name {
  font-weight: 600;
  color: var(--text);
}

/* Flagship eyebrow — sits above the card in the section head */
.hero-product__head { margin-bottom: 40px; }
.flagship-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 168, 89, .35);
}
.flagship-eyebrow i { color: #FFD700; font-size: .85rem; }

.hero-product__body {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.hero-product__title {
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.2;
  color: var(--text);
}
.hero-product__lede {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.4;
}
.hero-product__desc {
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0 0 24px;
  font-size: .95rem;
}
.hero-product__features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
.hero-product__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
.hero-product__features li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.hero-product__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero-product {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }
  .hero-product__title { font-size: 1.55rem; }
  .hero-product__features { grid-template-columns: 1fr; }
  .hero-product::after { top: -20%; right: -30%; width: 280px; height: 280px; }
}

/* =========================================================
   FAQ ACCORDION (About page, mirrored by FAQPage schema)
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.faq-item:hover { border-color: var(--accent-soft); }
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  user-select: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.faq-item[open] > summary::after {
  content: '−';
  background: var(--accent);
  color: #fff;
}
.faq-item > summary:hover { color: var(--accent); }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-dim);
  line-height: 1.65;
}
.faq-answer p { margin: 0; font-size: .94rem; }
.faq-answer strong { color: var(--text); }
@media (max-width: 720px) {
  .faq-item > summary { padding: 16px 50px 16px 18px; font-size: .95rem; }
  .faq-answer { padding: 0 18px 18px; }
}
