:root {
  --blue: #1a6fdb;
  --blue-dark: #1458b0;
  --blue-light: #e8f1fd;
  --blue-mid: #c8ddf8;
  --orange: #f97316;
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-grey: #f1f5f9;
  --border: #e2e8f0;
  --border-blue: #bfd4f5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-blue: 0 4px 20px rgba(26,111,219,0.18);
}

[data-theme="dark"] {
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-light: #1e293b;
  --blue-mid: #334155;
  --text-dark: #f8fafc;
  --text-body: #e2e8f0;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --bg: #0f172a;
  --bg-soft: #1e293b;
  --bg-grey: #334155;
  --border: #334155;
  --border-blue: #1e40af;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-blue: 0 4px 20px rgba(59,130,246,0.25);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text-body);overflow-x:hidden;line-height:1.6;transition: background-color 0.3s ease, color 0.3s ease;}
::-webkit-scrollbar{width:5px;}
::-webkit-scrollbar-track{background:var(--bg-grey);}
::-webkit-scrollbar-thumb{background:var(--blue);border-radius:3px;}
img{max-width:100%;}
a{text-decoration:none;}

/* ── THEME TOGGLE SWITCH ── */
.theme-switch-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s ease;
}

.theme-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s ease;
  user-select: none;
}

.theme-label.active {
  color: #fff;
}

.theme-switch {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 48px;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #7db1ff; /* Light mode blue from image */
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
  border-radius: 34px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.slider:before {
  background-color: #fff;
  bottom: 3px;
  content: "";
  height: 18px;
  left: 3px;
  position: absolute;
  transition: .4s;
  width: 18px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background-color: #2c3e50; /* Dark mode blue/grey */
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Specific styling for the toggle icon decorations (craters/clouds) could be added here if needed */

[data-theme="dark"] .theme-switch-container {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ── TOPBAR ── */
.topbar{background:var(--blue-dark);color:#fff;padding:9px 0;font-size:13px;transition: background 0.3s ease;}
.topbar-inner{max-width:1200px;margin:auto;padding:0 20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px;}
.topbar-left{display:flex;align-items:center;gap:20px;}
.topbar-left span{display:flex;align-items:center;gap:5px;opacity:.9;}
.topbar-right{display:flex;align-items:center;gap:15px;}
.topbar-right a{color:#fff;display:flex;align-items:center;gap:5px;font-weight:500;opacity:.9;transition:.2s;}
.topbar-right a:hover{opacity:1;}
.topbar-pill{background:rgba(255,255,255,0.2);border-radius:20px;padding:3px 10px;font-size:12px;font-weight:600;}

/* ── NAV V2 (REBUILD) ── */
.nav-v2-skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.2s;
}
.nav-v2-skip:focus {
  top: 0;
}

.nav-v2 {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav-v2.nav-v2--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08); /* Requested styling */
}

.nav-v2-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-v2-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-v2-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -.5px;
}
.nav-v2-logo-info {
  line-height: 1.2;
}
.nav-v2-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
}
.nav-v2-logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-v2-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-v2-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 7px;
  transition: 0.2s all ease;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-v2-link:hover, .nav-v2-link:focus {
  background: var(--blue-light);
  color: var(--blue);
}
.nav-v2-link.active {
  color: var(--blue);
  font-weight: 600;
}

/* Dropdown */
.nav-v2-has-dropdown {
  position: relative;
}
.nav-v2-chevron {
  transition: transform 0.2s ease;
}
.nav-v2-has-dropdown:hover .nav-v2-chevron,
.nav-v2-has-dropdown.open .nav-v2-chevron {
  transform: rotate(180deg);
}

.nav-v2-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  padding: 8px;
  pointer-events: none;
}
@media (hover: hover) {
  .nav-v2-has-dropdown:hover .nav-v2-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}
.nav-v2-has-dropdown.open .nav-v2-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-v2-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 6px;
  color: var(--text-dark);
  transition: background 0.2s;
  text-decoration: none;
}
.nav-v2-dropdown-item:hover, .nav-v2-dropdown-item:focus {
  background: var(--bg-soft);
}
.nav-v2-dropdown-item svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.nav-v2-di-text {
  display: flex;
  flex-direction: column;
}
.nav-v2-di-title {
  font-weight: 600;
  font-size: 14px;
}
.nav-v2-di-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.nav-v2-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-v2-btn-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
  white-space: nowrap;
}
.nav-v2-btn-wa:hover { background: #1ebe5d; }

.nav-v2-btn-call {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
  white-space: nowrap;
}
.nav-v2-btn-call:hover { 
  background: var(--blue-dark); 
  box-shadow: var(--shadow-blue);
}

.nav-v2-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 36px;
  justify-content: center;
}
.nav-v2-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-v2-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-v2-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-v2-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-v2-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg);
  box-shadow: inset 0 1px 0 var(--border);
}

.nav-v2-mobile-inner {
  padding: 16px 20px 24px;
}

.nav-v2-mob-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-grey);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s ease;
}

.nav-v2-mob-section {
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-grey);
}
.nav-v2-mob-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 8px;
}
.nav-v2-mob-sublink {
  display: block;
  padding: 8px 0 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-v2-mob-link:hover, .nav-v2-mob-sublink:hover { color: var(--blue); }
.nav-v2-mob-link:active, .nav-v2-mob-sublink:active { color: var(--blue-dark); }

.nav-v2-mob-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.nav-v2-btn-wa-full {
  background: #25D366;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}
.nav-v2-btn-call-full {
  background: var(--blue);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .nav-v2-container {
    height: 60px;
  }
  .nav-v2-links, .nav-v2-btn-wa {
    display: none;
  }
  .nav-v2-hamburger {
    display: flex;
  }
}


/* ── HERO V2 (REBUILD) ── */
.hero-v2 {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%, #f8fafc 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  min-height: min(85vh, 780px);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

[data-theme="dark"] .hero-v2 {
  background: linear-gradient(135deg, #0d1b2e 0%, #0f172a 60%, #111827 100%);
}

.hero-v2-inner {
  max-width: 1280px; /* Wider for desktop feel */
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left Content */
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid var(--border-blue);
  letter-spacing: 0.3px;
}

.hero-v2-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-v2-highlight {
  color: var(--blue);
}

.hero-v2-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
}

/* CTAs */
.hero-v2-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-v2-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-v2-primary, .btn-v2-wa, .btn-v2-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.25s all ease;
  white-space: nowrap;
}

.btn-v2-primary {
  padding: 16px 28px;
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
  font-size: 16px;
}
.btn-v2-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,111,219,0.25);
  color: #fff;
}

.btn-v2-wa {
  padding: 16px 28px;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
}
.btn-v2-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  color: #fff;
}

.btn-v2-outline {
  padding: 14px 24px;
  border: 1.5px solid var(--border-blue);
  color: var(--blue);
  background: var(--bg);
}
.btn-v2-outline:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}

.btn-v2-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  transition: 0.2s;
  text-decoration: none;
}
.btn-v2-link:hover {
  text-decoration: underline;
  color: var(--blue-dark);
}

/* Trust Badges */
.hero-v2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.v2-trust-item {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Authorized Strip */
.hero-v2-auth {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-auth-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.v2-auth-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.v2-chip {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

/* Right Grid */
.hero-v2-visual {
  width: 100%;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.v2-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: 0.3s ease;
  height: 100%;
}

.v2-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
}

.v2-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.v2-card-info {
  margin-bottom: 16px;
  flex-grow: 1;
}

.v2-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.v2-card-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.v2-card-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.badge-green { background: #dcfce7; color: #166534; }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-gray { background: #f3f4f6; color: #374151; }

/* Feature Card Override */
.v2-card.featured {
  background: var(--blue);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}

.v2-card.featured:hover {
  box-shadow: 0 12px 32px rgba(26,111,219,0.3);
  border-color: var(--blue-dark);
}

.v2-card.featured .v2-card-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.v2-card.featured .v2-card-title {
  color: #fff;
}

.v2-card.featured .v2-card-label {
  color: rgba(255,255,255,0.8);
}

.v2-card.featured .v2-card-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-v2-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-v2 {
    padding: 40px 0 60px;
    min-height: auto;
  }
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-v2-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-v2-primary, .btn-v2-wa, .btn-v2-outline {
    width: 100%;
  }
  .btn-v2-link {
    text-align: center;
    display: block;
  }
  .hero-v2-grid {
    grid-template-columns: repeat(2, 1fr); /* Keep 2 column cards on mobile to stay compact */
  }
}

@media (max-width: 480px) {
  .hero-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .v2-card {
    padding: 14px;
  }
}

/* ── QUICK CONTACT BAR ── */
.qcbar{background:var(--blue);padding:18px 0;}
.qcbar-inner{max-width:1200px;margin:auto;padding:0 20px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;}
.qcbar-text{color:#fff;font-size:16px;font-weight:600;}
.qcbar-text span{opacity:.8;font-size:14px;font-weight:400;display:block;margin-top:2px;}
.qcbar-actions{display:flex;gap:12px;flex-wrap:wrap;}
.qcbar-btn{display:flex;align-items:center;gap:8px;padding:11px 22px;border-radius:9px;font-weight:700;font-size:14px;transition:.2s;white-space:nowrap;}
.qcb-call{background:#fff;color:var(--blue);}
.qcb-call:hover{background:var(--blue-light);}
.qcb-wa{background:#25D366;color:#fff;}
.qcb-wa:hover{background:#1ebe5d;}
.qcb-dir{background:rgba(255,255,255,0.15);color:#fff;border:1px solid rgba(255,255,255,0.3);}
.qcb-dir:hover{background:rgba(255,255,255,0.25);}

/* ── TRUST STRIP ── */
.trust-strip{background:var(--bg-soft);border-bottom:1px solid var(--border);padding:18px 0;}
.trust-strip-inner{max-width:1200px;margin:auto;padding:0 20px;display:flex;flex-wrap:wrap;gap:24px;justify-content:center;align-items:center;}
.ts-item{display:flex;align-items:center;gap:9px;font-size:13px;color:var(--text-body);font-weight:500;}
.ts-item .ts-icon{width:32px;height:32px;background:var(--bg);border:1px solid var(--border);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:15px;box-shadow:var(--shadow-sm);}
.ts-divider{width:1px;height:28px;background:var(--border);}

/* ── SECTION COMMON ── */
.sec{padding:72px 0;}
.sec-inner{max-width:1200px;margin:auto;padding:0 20px;}
.sec-header{text-align:center;margin-bottom:48px;}
.sec-tag{display:inline-block;background:var(--blue-light);color:var(--blue);font-size:12px;font-weight:700;padding:4px 14px;border-radius:20px;margin-bottom:12px;border:1px solid var(--border-blue);letter-spacing:.5px;text-transform:uppercase;}
.sec-title{font-family:'Poppins',sans-serif;font-size:clamp(26px,4vw,38px);font-weight:800;color:var(--text-dark);line-height:1.2;margin-bottom:10px;}
.sec-title em{font-style:normal;color:var(--blue);}
.sec-sub{font-size:16px;color:var(--text-muted);max-width:560px;margin:0 auto;line-height:1.7;}


/* ── PRODUCTS V3 ── */
.prod-v3-sec { padding: 80px 0; background: var(--bg-soft); }
[data-theme="dark"] .prod-v3-sec { background: var(--bg-soft); }

.prod-v3-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Header */
.prod-v3-header { text-align: center; margin-bottom: 40px; }
.prod-v3-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  border: 1px solid var(--border-blue);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.prod-v3-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 12px;
}
.prod-v3-title em { font-style: normal; color: var(--blue); }
.prod-v3-sub { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Level 1: Category tabs */
.prod-v3-tabs-wrap { position: relative; max-width: 900px; margin: 0 auto 36px; }
.prod-v3-tabs-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 10px; width: 60px;
  background: linear-gradient(to right, transparent, var(--bg-soft));
  pointer-events: none;
}
.prod-v3-tabs { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 8px; }
.prod-v3-tabs::-webkit-scrollbar { display: none; }
.prod-v3-tab {
  flex-shrink: 0; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  padding: 9px 22px; border-radius: 24px; border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text-muted);
  cursor: pointer; white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.prod-v3-tab:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.prod-v3-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--shadow-blue); }
[data-theme="dark"] .prod-v3-tab { background: rgba(255,255,255,0.05); color: var(--text-muted); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .prod-v3-tab:hover { background: rgba(59,130,246,0.12); color: var(--blue); border-color: rgba(59,130,246,0.35); }
[data-theme="dark"] .prod-v3-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Level 2: Brand cards */
.prod-v3-brands-container { margin-bottom: 32px; }
.prod-v3-brand-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.prod-v3-brand-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 20px; min-width: 90px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--bg);
  cursor: pointer; transition: all 0.18s ease;
}
.prod-v3-brand-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-2px); }
.prod-v3-brand-card.active { border-color: var(--blue); background: var(--blue-light); box-shadow: var(--shadow-blue); }
[data-theme="dark"] .prod-v3-brand-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .prod-v3-brand-card:hover { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.4); }
[data-theme="dark"] .prod-v3-brand-card.active { background: rgba(59,130,246,0.15); border-color: var(--blue); }
.prod-v3-brand-logo { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.prod-v3-brand-logo img { width: 36px; height: 36px; object-fit: contain; }
[data-theme="dark"] .prod-v3-brand-logo img { filter: invert(1) brightness(0.8); }
.prod-v3-brand-name { font-size: 12px; font-weight: 700; color: var(--text-muted); text-align: center; }
.prod-v3-brand-card:hover .prod-v3-brand-name,
.prod-v3-brand-card.active .prod-v3-brand-name { color: var(--blue); }

/* Level 3: Product grid */
.prod-v3-product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1023px) { .prod-v3-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .prod-v3-product-grid { grid-template-columns: 1fr; } }

/* Product card */
.prod-v3-product-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 20px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg);
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.prod-v3-product-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-blue); transform: translateY(-3px); }
[data-theme="dark"] .prod-v3-product-card { background: #1e2535; border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .prod-v3-product-card:hover { background: #252d40; border-color: var(--border-blue); }
.prod-v3-card-body { flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.prod-v3-product-title {
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--text-dark); line-height: 1.3; margin: 0;
}
.prod-v3-product-specs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.prod-v3-product-specs li { font-size: 13px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 7px; line-height: 1.4; }
.prod-v3-product-specs li::before { content: '\203A'; color: var(--blue); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.prod-v3-price-tag { font-size: 12px; font-weight: 600; color: var(--text-light); margin: 0; letter-spacing: 0.3px; }

/* Action buttons */
.prod-v3-card-actions { display: flex; gap: 8px; }
.prod-v3-btn-wa,
.prod-v3-btn-call {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.prod-v3-btn-wa { background: #25D366; color: #fff; }
.prod-v3-btn-wa:hover { background: #1ebe5d; color: #fff; }
.prod-v3-btn-call { background: var(--blue-light); color: var(--blue); border: 1px solid var(--border-blue); }
.prod-v3-btn-call:hover { background: var(--blue); color: #fff; }
[data-theme="dark"] .prod-v3-btn-call { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3); color: var(--blue); }
[data-theme="dark"] .prod-v3-btn-call:hover { background: var(--blue); color: #fff; }

/* ── SERVICES V2 (REBUILD) ── */
.svc-v2-sec { padding: 80px 0; background: var(--bg-white, #ffffff); }
.svc-v2-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.svc-v2-header { text-align: center; margin-bottom: 48px; }
.svc-v2-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 16px; border: 1px solid var(--border-blue); letter-spacing: 0.5px; text-transform: uppercase;
}
.svc-v2-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 12px; }
.svc-v2-title em { font-style: normal; color: var(--blue); }
.svc-v2-sub { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Grid & Cards */
.svc-v2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1023px) { .svc-v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .svc-v2-grid { grid-template-columns: 1fr; } }

.svc-v2-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 24px; display: flex; flex-direction: column; align-items: flex-start;
  opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.svc-v2-card.svc-v2-visible { opacity: 1; transform: translateY(0); }
.svc-v2-card.svc-v2-visible:hover { background: #fff; box-shadow: var(--shadow-md); border-color: var(--border-blue); transform: translateY(-3px); }

.svc-v2-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.svc-v2-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--text-dark); margin: 14px 0 8px; line-height: 1.3; }
.svc-v2-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.svc-v2-badge { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* AMC Highlights */
.svc-v2-amc-block {
  background: linear-gradient(135deg, var(--blue) 0%, #0052a3 100%);
  border-radius: 20px; padding: 48px 40px; margin-top: 48px;
  display: flex; flex-direction: row; gap: 40px;
}
@media (max-width: 1023px) { .svc-v2-amc-block { flex-direction: column; padding: 40px 24px; } }

.svc-v2-amc-left { flex: 1; }
.svc-v2-amc-tag { background: rgba(255,255,255,0.15); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; display: inline-block; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.svc-v2-amc-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 32px); color: #fff; margin-bottom: 12px; line-height: 1.25; }
.svc-v2-amc-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 520px; }

.svc-v2-amc-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.svc-v2-amc-pill { background: rgba(255,255,255,0.12); color: #fff; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; }

.svc-v2-amc-right { align-self: center; }
@media (max-width: 1023px) { .svc-v2-amc-right { margin-top: 32px; width: 100%; } }

.svc-v2-amc-box { background: rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; text-align: center; min-width: 220px; width: 100%; }
.svc-v2-amc-box-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 8px; }
.svc-v2-amc-box-sub { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }

.svc-v2-btn-primary {
  background: #fff; color: var(--blue); font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: 10px; width: 100%; display: block; text-align: center; margin-bottom: 10px; text-decoration: none; transition: background 0.2s;
}
.svc-v2-btn-primary:hover { background: #f0f4f8; }
.svc-v2-btn-secondary {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
  font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 10px;
  width: 100%; display: block; text-align: center; text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.svc-v2-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Section Footer */
.svc-v2-footer { text-align: center; margin-top: 48px; border-top: 1px solid var(--border); padding-top: 48px; }
.svc-v2-footer-text { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.svc-v2-footer-btn { display: inline-block; background: var(--blue); color: #fff; font-weight: 700; padding: 14px 32px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: 0.2s; }
.svc-v2-footer-btn:hover { background: #0047a0; box-shadow: var(--shadow-blue); }
/* ── ABOUT US V2 (REBUILD) ── */
.abt-v2-sec { padding: 80px 0; background: var(--bg-soft, #f8fafc); }
.abt-v2-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.abt-v2-header { text-align: center; margin-bottom: 56px; }
.abt-v2-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 16px; border: 1px solid var(--border-blue); letter-spacing: 0.5px; text-transform: uppercase;
}
.abt-v2-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.abt-v2-title em { font-style: normal; color: var(--blue); }
.abt-v2-sub { font-size: 16px; color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* Part 1: Story + Values */
.abt-v2-part1 { display: flex; gap: 60px; align-items: flex-start; }
@media (max-width: 1023px) { .abt-v2-part1 { flex-direction: column; gap: 48px; } }

/* Left Story */
.abt-v2-left { width: 100%; max-width: 520px; }
@media (max-width: 1023px) { .abt-v2-left { max-width: 100%; } }
.abt-v2-story-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
}
.abt-v2-story-p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.abt-v2-story-p:last-of-type { margin-bottom: 0; }

.abt-v2-trust-row { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.abt-v2-trust-pt { display: flex; align-items: center; gap: 10px; }
.abt-v2-trust-icon {
  width: 36px; height: 36px; border-radius: 8px; background: var(--blue-light);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
}
.abt-v2-trust-info { display: flex; flex-direction: column; }
.abt-v2-trust-label { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.abt-v2-trust-desc { font-size: 12px; color: var(--text-muted); }

/* Right Cards */
.abt-v2-right { flex-grow: 1; width: 100%; }
.abt-v2-val-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 600px) { .abt-v2-val-grid { grid-template-columns: 1fr; } }
.abt-v2-val-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.abt-v2-val-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-blue); }
.abt-v2-val-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--blue-light);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
}
.abt-v2-val-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-dark); margin: 10px 0 6px; }
.abt-v2-val-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Part 2: Stats Row */
.abt-v2-stats-row {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 24px; margin-top: 64px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
}
.abt-v2-stat-item {
  text-align: center; position: relative; flex: 1; min-width: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
@media (min-width: 768px) {
  .abt-v2-stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -16px; top: 10%; height: 80%; width: 1px; background: var(--border);
  }
}
.abt-v2-stat-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 52px); color: var(--blue); line-height: 1; text-align: center; }
.abt-v2-stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-top: 6px; max-width: 120px; text-align: center; line-height: 1.4; }

/* Footer CTA */
.abt-v2-footer { text-align: center; margin-top: 48px; }
.abt-v2-ftr-text { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.abt-v2-ftr-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.abt-v2-btn-call, .abt-v2-btn-wa { padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; transition: 0.2s ease; display: inline-flex; align-items: center; justify-content: center; }
.abt-v2-btn-call { background: var(--blue); color: #fff; }
.abt-v2-btn-call:hover { opacity: 0.9; box-shadow: var(--shadow-sm); }
.abt-v2-btn-wa { background: #25D366; color: #fff; }
.abt-v2-btn-wa:hover { background: #1ebe5d; box-shadow: 0 4px 12px rgba(37,211,102,0.2); }

/* ── RATINGS ── */
.ratings-sec{background:var(--blue);padding:60px 0;}
.rating-inner{max-width:1200px;margin:auto;padding:0 20px;}
.rating-row{display:grid;grid-template-columns:auto 1fr auto;gap:48px;align-items:center;}
.rating-big{text-align:center;}
.rating-big .num{font-family:'Poppins',sans-serif;font-size:72px;font-weight:800;color:#fff;line-height:1;}
.rating-big .stars{font-size:24px;margin:6px 0;}
.rating-big .count{font-size:14px;color:rgba(255,255,255,0.7);}
.rating-divider{width:1px;background:rgba(255,255,255,0.2);height:100px;}
.testimonials-grid-small{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.testi-sm{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.15);border-radius:14px;padding:20px;}
.testi-sm .stars{font-size:13px;color:#fbbf24;margin-bottom:10px;}
.testi-sm .txt{font-size:13px;color:rgba(255,255,255,0.85);line-height:1.6;margin-bottom:14px;font-style:italic;}
.testi-sm .author{font-size:12px;color:rgba(255,255,255,0.6);font-weight:600;}
.rating-cta{text-align:center;}
.rating-cta p{color:rgba(255,255,255,0.8);font-size:14px;margin-bottom:16px;}

/* ── WHOLESALE ── */
.wholesale-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
.wh-info{display:flex;flex-direction:column;gap:16px;}
.wh-tile{background:var(--bg);border:1px solid var(--border);border-radius:13px;padding:18px;display:flex;gap:14px;align-items:flex-start;transition:.2s;}
.wh-tile:hover{border-color:var(--border-blue);box-shadow:var(--shadow);}
.wh-tile-icon{width:42px;height:42px;background:var(--blue-light);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;}
.wh-tile-title{font-weight:700;font-size:14px;color:var(--text-dark);margin-bottom:3px;}
.wh-tile-desc{font-size:13px;color:var(--text-muted);}
.wh-form{background:var(--bg);border:1px solid var(--border);border-radius:18px;padding:32px;box-shadow:var(--shadow);}
.wh-form h3{font-family:'Poppins',sans-serif;font-size:20px;font-weight:700;color:var(--text-dark);margin-bottom:6px;}
.wh-form p{font-size:13px;color:var(--text-muted);margin-bottom:22px;}
.fg{margin-bottom:14px;}
.fg label{display:block;font-size:12px;font-weight:600;color:var(--text-body);margin-bottom:5px;text-transform:uppercase;letter-spacing:.4px;}
.fg input,.fg select,.fg textarea{width:100%;padding:11px 14px;border:1.5px solid var(--border);border-radius:9px;font-size:14px;color:var(--text-dark);font-family:'Inter',sans-serif;transition:.2s;outline:none;background:var(--bg);}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(26,111,219,0.1);}
.fg textarea{height:90px;resize:vertical;}
.fg-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.btn-form{width:100%;padding:13px;background:var(--blue);color:#fff;border:none;border-radius:9px;font-size:15px;font-weight:700;cursor:pointer;transition:.2s;font-family:'Inter',sans-serif;}
.btn-form:hover{background:var(--blue-dark);box-shadow:var(--shadow-blue);}

/* ── CONTACT ── */
.contact-sec{background:var(--bg-soft);}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;}
.contact-cards{display:flex;flex-direction:column;gap:14px;}
.cc{background:var(--bg);border:1px solid var(--border);border-radius:13px;padding:18px 20px;display:flex;gap:14px;align-items:flex-start;transition:.2s;}
.cc:hover{border-color:var(--border-blue);box-shadow:var(--shadow);}
.cc-icon{width:40px;height:40px;background:var(--blue-light);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;}
.cc-label{font-size:11px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:3px;}
.cc-val{font-size:14px;font-weight:600;color:var(--text-dark);}
.cc-val a{color:var(--blue);}
.contact-cta-btns{display:flex;gap:10px;margin-top:6px;flex-wrap:wrap;}
.btn-cc{display:flex;align-items:center;gap:6px;padding:10px 18px;border-radius:8px;font-weight:700;font-size:13px;transition:.2s;}
.btn-cc-blue{background:var(--blue);color:#fff;}
.btn-cc-blue:hover{background:var(--blue-dark);}
.btn-cc-wa{background:#25D366;color:#fff;}
.btn-cc-wa:hover{background:#1ebe5d;}
.btn-cc-outline{border:1.5px solid var(--border-blue);color:var(--blue);background:var(--bg);}
.btn-cc-outline:hover{background:var(--blue-light);}
.contact-form-box{background:var(--bg);border:1px solid var(--border);border-radius:18px;padding:28px;box-shadow:var(--shadow);}
.contact-form-box h3{font-family:'Poppins',sans-serif;font-size:18px;font-weight:700;color:var(--text-dark);margin-bottom:4px;}
.contact-form-box p{font-size:13px;color:var(--text-muted);margin-bottom:20px;}
.map-wrap{margin-top:40px;border-radius:16px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow);}
.map-wrap iframe{width:100%;height:380px;border:none;display:block;}

/* ── FAQ ── */
.faq-wrap{max-width:760px;margin:0 auto;}
.faq-item{border:1px solid var(--border);border-radius:12px;margin-bottom:10px;overflow:hidden;background:var(--bg);transition:.2s;}
.faq-item:hover{border-color:var(--border-blue);}
.faq-q{width:100%;text-align:left;padding:17px 20px;background:none;border:none;cursor:pointer;color:var(--text-dark);font-size:15px;font-weight:600;display:flex;justify-content:space-between;align-items:center;font-family:'Inter',sans-serif;gap:12px;}
.faq-arrow{width:26px;height:26px;background:var(--blue-light);border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:.3s;color:var(--blue);font-size:16px;}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.faq-a-inner{padding:0 20px 16px;font-size:14px;color:var(--text-muted);line-height:1.7;}
.faq-item.open .faq-a{max-height:160px;}
.faq-item.open .faq-arrow{transform:rotate(45deg);background:var(--blue);color:#fff;}

/* ── FOOTER ── */
footer{background:var(--text-dark);color:#fff;padding:56px 0 0;}
.footer-inner{max-width:1200px;margin:auto;padding:0 20px;}
.footer-grid{display:grid;grid-template-columns:2.2fr 1fr 1fr 1.4fr;gap:48px;margin-bottom:48px;}
.footer-brand .brand-name{font-family:'Poppins',sans-serif;font-weight:800;font-size:20px;margin-bottom:10px;color:#fff;}
.footer-brand p{font-size:13px;color:#9ca3af;line-height:1.7;margin-bottom:14px;}
.footer-brand .gst-chip{display:inline-block;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);border-radius:8px;padding:6px 12px;font-size:12px;color:#93c5fd;font-weight:600;}
.footer-col h4{font-size:14px;font-weight:700;color:#fff;margin-bottom:14px;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:8px;}
.footer-col ul li a{font-size:13px;color:#9ca3af;transition:.2s;}
.footer-col ul li a:hover{color:#93c5fd;}
.footer-contact-row{display:flex;gap:8px;align-items:flex-start;margin-bottom:8px;font-size:13px;color:#9ca3af;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding:18px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;font-size:12px;color:#6b7280;}
.footer-bottom a{color:#93c5fd;}

/* ── FLOATING ── */
.fab{position:fixed;bottom:24px;right:24px;z-index:9999;display:flex;flex-direction:column;gap:10px;}
.fab-btn{width:54px;height:54px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:22px;box-shadow:0 4px 16px rgba(0,0,0,0.2);transition:.25s;text-decoration:none;border:none;cursor:pointer;}
.fab-wa{background:#25D366;color:#fff;animation:waPulse 2.5s ease-in-out infinite;}
.fab-wa:hover{transform:scale(1.1);}
.fab-call{background:var(--blue);color:#fff;}
.fab-call:hover{transform:scale(1.1);}
@keyframes waPulse{0%,100%{box-shadow:0 4px 16px rgba(37,211,102,0.35)}50%{box-shadow:0 4px 28px rgba(37,211,102,0.7)}}
.sticky-mob{position:fixed;bottom:0;left:0;right:0;z-index:998;background:var(--bg);border-top:1px solid var(--border);padding:10px 16px;display:none;gap:10px;box-shadow:0 -4px 16px rgba(0,0,0,0.08);}
.sticky-mob a{flex:1;padding:12px;text-align:center;border-radius:9px;font-weight:700;font-size:14px;}
.smb-call{background:var(--blue);color:#fff;}
.smb-wa{background:#25D366;color:#fff;}

/* ── PAYMENT MODES ── */
.pay-grid{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;}
.pay-card{background:var(--bg);border:1px solid var(--border);border-radius:12px;padding:18px 22px;text-align:center;min-width:120px;transition:.2s;}
.pay-card:hover{border-color:var(--border-blue);box-shadow:var(--shadow);transform:translateY(-2px);}
.pay-icon{font-size:28px;margin-bottom:7px;}
.pay-label{font-size:13px;color:var(--text-body);font-weight:600;}

/* ── ANIMATIONS ── */
.fade-up{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease;}
.fade-up.show{opacity:1;transform:none;}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-visual{display:none;}
  .about-grid,.wholesale-grid,.contact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .rating-row{grid-template-columns:1fr;gap:24px;}
  .rating-divider{display:none;}
}
@media(max-width:768px){
  .nav-links,.nav-actions .btn-nav-wa{display:none;}
  .hamburger{display:flex;}
  .topbar-left span:not(:first-child){display:none;}
  .footer-grid{grid-template-columns:1fr;}
  .testimonials-grid-small{grid-template-columns:1fr;}
  .fg-row{grid-template-columns:1fr;}
  .sticky-mob{display:flex;}
  .fab{bottom:76px;}
  body{padding-bottom:66px;}
}
@media(max-width:480px){
  .ts-divider{display:none;}
  .qcbar-inner{flex-direction:column;text-align:center;}
}

/* ── TRUST BAR V2 ── */
.trust-v2 {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  transition: background 0.3s ease;
}

.trust-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-v2-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}
.trust-v2-list::-webkit-scrollbar {
  display: none;
}

.trust-v2-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}

/* Divider for desktop */
.trust-v2-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.trust-v2-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-v2-text {
  display: flex;
  flex-direction: column;
}

.trust-v2-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-v2-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* Tablet: 2 rows of 4 */
@media (max-width: 1023px) {
  .trust-v2-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    gap: 24px 16px;
  }
  .trust-v2-item:not(:last-child):after {
    display: none;
  }
  .trust-v2-item {
    flex-shrink: 1;
  }
}

/* Mobile: 4 rows of 2 */
@media (max-width: 767px) {
  .trust-v2-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .trust-v2-item {
    align-items: flex-start;
  }
}

/* ── GLOBAL DARK MODE OVERRIDES ── */

/* SERVICES V2 */
[data-theme="dark"] .svc-v2-sec { 
  background: var(--bg-white, #13151a); 
}
[data-theme="dark"] .svc-v2-card { 
  background: var(--bg-soft); 
  border-color: rgba(255,255,255,0.08); 
}
[data-theme="dark"] .svc-v2-card.svc-v2-visible:hover { 
  background: var(--bg-card, #1e2535); 
  border-color: var(--border-blue); 
}
[data-theme="dark"] .svc-v2-footer { 
  border-top-color: rgba(255,255,255,0.08); 
}
[data-theme="dark"] .svc-v2-footer-text { 
  color: var(--text-muted); 
}

/* ABOUT V2 */
[data-theme="dark"] .abt-v2-sec { 
  background: var(--bg-soft); 
}
[data-theme="dark"] .abt-v2-val-card { 
  background: var(--bg-soft); 
  border-color: rgba(255,255,255,0.08); 
}
[data-theme="dark"] .abt-v2-val-card:hover { 
  background: var(--bg-card, #1e2535); 
  border-color: var(--border-blue); 
}
[data-theme="dark"] .abt-v2-stats-row { 
  background: var(--bg-white, #13151a); 
  border-top-color: rgba(255,255,255,0.08); 
  border-bottom-color: rgba(255,255,255,0.08); 
}
[data-theme="dark"] .abt-v2-stat-item:not(:last-child)::after { 
  background: rgba(255,255,255,0.08); 
}
[data-theme="dark"] .abt-v2-story-p { 
  color: var(--text-muted); 
}
[data-theme="dark"] .abt-v2-sub { 
  color: var(--text-muted); 
}
[data-theme="dark"] .abt-v2-footer { 
  color: var(--text-muted); 
}

/* ── WHOLESALE & BULK SUPPLY V2 ── */
.bulk-v2-sec { padding: 80px 0; background: var(--bg-soft, #f8fafc); }
[data-theme="dark"] .bulk-v2-sec { background: var(--bg-soft, #111827); }

.bulk-v2-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.bulk-v2-header { text-align: center; margin-bottom: 56px; }
.bulk-v2-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 16px; border: 1px solid var(--border-blue); letter-spacing: 0.5px; text-transform: uppercase;
}
.bulk-v2-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.bulk-v2-title em { font-style: normal; color: var(--blue); }
.bulk-v2-sub { font-size: 16px; color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }
[data-theme="dark"] .bulk-v2-sub { color: var(--text-muted); }

/* Part 1: Who We Serve */
.bulk-v2-part1 { margin-bottom: 72px; }
.bulk-v2-tile-heading { text-align: center; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; }
.bulk-v2-tile-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.bulk-v2-tile {
  background: var(--bg-white, #fff); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 24px; display: flex; align-items: center; gap: 10px;
  transition: 0.2s ease;
}
.bulk-v2-tile:hover { border-color: var(--border-blue); box-shadow: var(--shadow-sm); }
[data-theme="dark"] .bulk-v2-tile { background: var(--bg-card, #1e2535); border-color: rgba(255,255,255,0.08); }

.bulk-v2-tile-icon { width: 20px; height: 20px; color: var(--blue); display: flex; align-items: center; justify-content: center; }
.bulk-v2-tile-text { font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* Part 2: What We Offer */
.bulk-v2-part2 { margin-bottom: 72px; text-align: center; }
.bulk-v2-subtitle { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; text-align: center; }
.bulk-v2-subtitle-desc { font-size: 16px; color: var(--text-muted); line-height: 1.6; max-width: 600px; margin: 0 auto 40px; }
[data-theme="dark"] .bulk-v2-subtitle-desc { color: var(--text-muted); }

.bulk-v2-feat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: left; }
@media (max-width: 768px) { .bulk-v2-feat-row { grid-template-columns: 1fr; } }

.bulk-v2-feat-item { display: flex; flex-direction: column; align-items: flex-start; }
.bulk-v2-feat-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px; flex-shrink: 0;
}
[data-theme="dark"] .bulk-v2-feat-icon { background: rgba(59, 130, 246, 0.15); }
.bulk-v2-feat-title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 16px 0 8px; }
.bulk-v2-feat-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
[data-theme="dark"] .bulk-v2-feat-desc { color: var(--text-muted); }

/* Part 3: Why Choose Us */
.bulk-v2-part3 { margin-bottom: 48px; }
.bulk-v2-diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 1023px) { .bulk-v2-diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bulk-v2-diff-grid { grid-template-columns: 1fr; } }

.bulk-v2-diff-card {
  background: var(--bg-white, #fff); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 24px; transition: 0.4s ease;
  opacity: 0; transform: translateY(20px);
}
.bulk-v2-diff-card.bulk-v2-visible { opacity: 1; transform: translateY(0); }
.bulk-v2-diff-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
[data-theme="dark"] .bulk-v2-diff-card { background: var(--bg-card, #1e2535); border-color: rgba(255,255,255,0.08); }

.bulk-v2-diff-num { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: color-mix(in srgb, var(--blue) 20%, transparent); line-height: 1; }
.bulk-v2-diff-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--text-dark); margin: 12px 0 8px; }
.bulk-v2-diff-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
[data-theme="dark"] .bulk-v2-diff-desc { color: var(--text-muted); }

/* CTA Block */
.bulk-v2-cta {
  background: linear-gradient(135deg, var(--blue), #0052a3); border-radius: 20px;
  padding: 48px 40px; text-align: center; margin-top: 48px;
}
.bulk-v2-cta-title { font-family: 'Poppins', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.bulk-v2-cta-desc { font-size: 15px; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.bulk-v2-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.bulk-v2-btn-primary { background: #fff; color: var(--blue); font-weight: 700; padding: 14px 28px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: 0.2s ease; }
.bulk-v2-btn-primary:hover { background: #f0f4f8; transform: translateY(-1px); }

.bulk-v2-btn-secondary { background: transparent; border: 1.5px solid #fff; color: #fff; font-weight: 600; padding: 14px 28px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: 0.2s ease; }
.bulk-v2-btn-secondary:hover { background: rgba(255,255,255,0.1); }

.bulk-v2-btn-ghost { background: rgba(255,255,255,0.12); color: #fff; font-weight: 600; padding: 14px 28px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: 0.2s ease; }
.bulk-v2-btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ── REVIEWS & TESTIMONIALS V2 ── */
.rev-v2-sec { padding: 80px 0; background: var(--bg-white); overflow: hidden; }
[data-theme="dark"] .rev-v2-sec { background: #13151a; }

.rev-v2-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.rev-v2-header { text-align: center; margin-bottom: 48px; }
.rev-v2-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 16px; border: 1px solid var(--border-blue); letter-spacing: 0.5px; text-transform: uppercase;
}
.rev-v2-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.rev-v2-title em { font-style: normal; color: var(--blue); }

/* Rating Hero Block */
.rev-v2-hero { display: flex; justify-content: center; margin-bottom: 56px; }
.rev-v2-hero-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.rev-v2-rating-top { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.rev-v2-rating-left { display: flex; flex-direction: column; align-items: center; }
.rev-v2-rating-big { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(64px, 8vw, 96px); color: var(--blue); line-height: 1; margin-bottom: 8px; }
.rev-v2-stars { display: flex; gap: 4px; margin-bottom: 4px; }
.rev-v2-rating-text { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.rev-v2-bars { display: flex; flex-direction: column; gap: 10px; }
.rev-v2-bar-row { display: flex; align-items: center; gap: 12px; }
.rev-v2-bar-label { font-size: 13px; font-weight: 600; color: var(--text-muted); width: 24px; text-align: right; }
.rev-v2-bar { width: 200px; height: 8px; border-radius: 4px; background: var(--border); overflow: hidden; position: relative; }
[data-theme="dark"] .rev-v2-bar { background: rgba(255,255,255,0.1); }
.rev-v2-bar-fill { height: 100%; border-radius: 4px; background: var(--blue); }
.rev-v2-bar-count { font-size: 13px; font-weight: 500; color: var(--text-muted); width: 24px; text-align: left; }

.rev-v2-google-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; margin-top: 16px; }
.rev-v2-google-icon { display: flex; align-items: center; justify-content: center; }
.rev-v2-google-text { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.rev-v2-google-sub { font-size: 13px; color: var(--text-muted); }
.rev-v2-google-link { color: var(--blue); font-size: 14px; font-weight: 600; text-decoration: none; transition: 0.2s; margin-top: 4px; }
.rev-v2-google-link:hover { text-decoration: underline; }

/* Auto Scrolling Review Cards */
.rev-v2-viewport {
  position: relative; overflow: hidden; width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding: 10px 0;
}
.rev-v2-viewport::before, .rev-v2-viewport::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.rev-v2-viewport::before { left: 0; background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%); }
.rev-v2-viewport::after { right: 0; background: linear-gradient(to left, var(--bg-white) 0%, transparent 100%); }
[data-theme="dark"] .rev-v2-viewport::before { background: linear-gradient(to right, #13151a 0%, transparent 100%); }
[data-theme="dark"] .rev-v2-viewport::after { background: linear-gradient(to left, #13151a 0%, transparent 100%); }

.rev-v2-track {
  display: flex; width: max-content; will-change: transform;
  animation: revScroll 40s linear infinite;
}
.rev-v2-track:hover { animation-play-state: paused; }
@media (max-width: 768px) { .rev-v2-track { animation-duration: 30s; } }
@media (prefers-reduced-motion: reduce) { .rev-v2-track { animation: none; } }

@keyframes revScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rev-v2-card {
  width: 320px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; margin-right: 20px; flex-shrink: 0; transition: 0.3s;
}
[data-theme="dark"] .rev-v2-card { background: var(--bg-card, #1e2535); border-color: rgba(255,255,255,0.08); }

.rev-v2-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rev-v2-card-stars { display: flex; gap: 2px; }
.rev-v2-card-google { display: flex; align-items: center; }

.rev-v2-card-text { font-size: 15px; color: var(--text-body, var(--text-dark)); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
[data-theme="dark"] .rev-v2-card-text { color: var(--text-body); }

.rev-v2-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.rev-v2-card-reviewer { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.rev-v2-card-badge {
  background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; display: inline-block;
}
[data-theme="dark"] .rev-v2-card-badge { background: rgba(59,130,246,0.15); }
.rev-v2-card-loc { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.rev-v2-card-src { font-size: 11px; color: var(--text-muted); font-weight: 600; }

/* Section Footer */
.rev-v2-footer { text-align: center; margin-top: 48px; }
.rev-v2-footer-text { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.rev-v2-btn-outline {
  display: inline-flex; justify-content: center; align-items: center; border: 2px solid var(--blue); color: var(--blue);
  background: transparent; padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; transition: 0.2s ease;
}
.rev-v2-btn-outline:hover { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }

/* ── REVIEWS & TESTIMONIALS V2 ── */
.rev-v2-sec { padding: 80px 0; background: var(--bg-white); overflow: hidden; }
[data-theme="dark"] .rev-v2-sec { background: #13151a; }

.rev-v2-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.rev-v2-header { text-align: center; margin-bottom: 48px; }
.rev-v2-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 16px; border: 1px solid var(--border-blue); letter-spacing: 0.5px; text-transform: uppercase;
}
.rev-v2-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.rev-v2-title em { font-style: normal; color: var(--blue); }

/* Rating Hero Block */
.rev-v2-hero { display: flex; justify-content: center; margin-bottom: 56px; }
.rev-v2-hero-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.rev-v2-rating-top { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.rev-v2-rating-left { display: flex; flex-direction: column; align-items: center; }
.rev-v2-rating-big { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(64px, 8vw, 96px); color: var(--blue); line-height: 1; margin-bottom: 8px; }
.rev-v2-stars { display: flex; gap: 4px; margin-bottom: 4px; }
.rev-v2-rating-text { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.rev-v2-bars { display: flex; flex-direction: column; gap: 10px; }
.rev-v2-bar-row { display: flex; align-items: center; gap: 12px; }
.rev-v2-bar-label { font-size: 13px; font-weight: 600; color: var(--text-muted); width: 24px; text-align: right; }
.rev-v2-bar { width: 200px; height: 8px; border-radius: 4px; background: var(--border); overflow: hidden; position: relative; }
[data-theme="dark"] .rev-v2-bar { background: rgba(255,255,255,0.1); }
.rev-v2-bar-fill { height: 100%; border-radius: 4px; background: var(--blue); }
.rev-v2-bar-count { font-size: 13px; font-weight: 500; color: var(--text-muted); width: 24px; text-align: left; }

.rev-v2-google-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; margin-top: 16px; }
.rev-v2-google-icon { display: flex; align-items: center; justify-content: center; }
.rev-v2-google-text { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.rev-v2-google-sub { font-size: 13px; color: var(--text-muted); }
.rev-v2-google-link { color: var(--blue); font-size: 14px; font-weight: 600; text-decoration: none; transition: 0.2s; margin-top: 4px; }
.rev-v2-google-link:hover { text-decoration: underline; }

/* Auto Scrolling Review Cards */
.rev-v2-viewport {
  position: relative; overflow: hidden; width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding: 10px 0;
}
.rev-v2-viewport::before, .rev-v2-viewport::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.rev-v2-viewport::before { left: 0; background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%); }
.rev-v2-viewport::after { right: 0; background: linear-gradient(to left, var(--bg-white) 0%, transparent 100%); }
[data-theme="dark"] .rev-v2-viewport::before { background: linear-gradient(to right, #13151a 0%, transparent 100%); }
[data-theme="dark"] .rev-v2-viewport::after { background: linear-gradient(to left, #13151a 0%, transparent 100%); }

.rev-v2-track {
  display: flex; width: max-content; will-change: transform;
  animation: revScroll 40s linear infinite;
}
.rev-v2-track:hover { animation-play-state: paused; }
@media (max-width: 768px) { .rev-v2-track { animation-duration: 30s; } }
@media (prefers-reduced-motion: reduce) { .rev-v2-track { animation: none; } }

@keyframes revScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rev-v2-card {
  width: 320px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; margin-right: 20px; flex-shrink: 0; transition: 0.3s;
}
[data-theme="dark"] .rev-v2-card { background: var(--bg-card, #1e2535); border-color: rgba(255,255,255,0.08); }

.rev-v2-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rev-v2-card-stars { display: flex; gap: 2px; }
.rev-v2-card-google { display: flex; align-items: center; }

.rev-v2-card-text { font-size: 15px; color: var(--text-body, var(--text-dark)); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
[data-theme="dark"] .rev-v2-card-text { color: var(--text-body); }

.rev-v2-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.rev-v2-card-reviewer { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.rev-v2-card-badge {
  background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; display: inline-block;
}
[data-theme="dark"] .rev-v2-card-badge { background: rgba(59,130,246,0.15); }
.rev-v2-card-loc { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.rev-v2-card-src { font-size: 11px; color: var(--text-muted); font-weight: 600; }

/* Section Footer */
.rev-v2-footer { text-align: center; margin-top: 48px; }
.rev-v2-footer-text { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.rev-v2-btn-outline {
  display: inline-flex; justify-content: center; align-items: center; border: 2px solid var(--blue); color: var(--blue);
  background: transparent; padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; transition: 0.2s ease;
}
.rev-v2-btn-outline:hover { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }

/* ── FAQ V2 ── */
.faq-v2-sec { padding: 80px 0; background: var(--bg-soft); }
[data-theme="dark"] .faq-v2-sec { background: #111827; }

.faq-v2-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.faq-v2-header { text-align: center; margin-bottom: 48px; }
.faq-v2-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 16px; border: 1px solid var(--border-blue); letter-spacing: 0.5px; text-transform: uppercase;
}
.faq-v2-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.faq-v2-title em { font-style: normal; color: var(--blue); }
.faq-v2-sub { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.faq-v2-wrap { max-width: 780px; margin: 0 auto; }
.faq-v2-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px;
  overflow: hidden; transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
[data-theme="dark"] .faq-v2-item { background: #1e2535; border-color: rgba(255,255,255,0.08); }

.faq-v2-question {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; color: var(--text-dark); transition: background 0.2s ease;
}
.faq-v2-question:hover { background: var(--bg-soft); }
[data-theme="dark"] .faq-v2-question:hover { background: rgba(255,255,255,0.04); }

.faq-v2-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue-light); color: var(--blue);
  font-size: 20px; line-height: 28px; text-align: center; flex-shrink: 0; transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.faq-v2-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-v2-answer-inner { padding: 16px 24px 20px 24px; font-size: 15px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); }
[data-theme="dark"] .faq-v2-answer-inner { border-top-color: rgba(255,255,255,0.06); }

.faq-v2-item.open { box-shadow: var(--shadow-sm); border-color: var(--border-blue); }
[data-theme="dark"] .faq-v2-item.open { border-color: rgba(59,130,246,0.3); }
.faq-v2-item.open .faq-v2-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }

.faq-v2-footer { text-align: center; margin-top: 48px; }
.faq-v2-ftr-text { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.faq-v2-ftr-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.faq-v2-btn-wa { background: var(--blue); color: #fff; font-weight: 700; padding: 12px 28px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: 0.2s ease; }
.faq-v2-btn-wa:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,71,160,0.2); }
.faq-v2-btn-call { background: var(--blue-light); color: var(--blue); font-weight: 700; padding: 12px 28px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: 0.2s ease; }
[data-theme="dark"] .faq-v2-btn-call { background: rgba(59,130,246,0.15); }
.faq-v2-btn-call:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }

/* FOOTER DARK MODE */
[data-theme="dark"] footer {
  background: #13151a !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

[data-theme="dark"] .footer-bottom {
  background: #0e1017 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.4) !important;
}

[data-theme="dark"] .footer-bottom a {
  color: var(--blue) !important;
}

[data-theme="dark"] .brand-name,
[data-theme="dark"] footer h3,
[data-theme="dark"] footer h4,
[data-theme="dark"] .footer-col h4 {
  color: #ffffff !important;
}

[data-theme="dark"] footer p,
[data-theme="dark"] .footer-brand p,
[data-theme="dark"] .footer-contact-row {
  color: rgba(255,255,255,0.55) !important;
}

[data-theme="dark"] footer a,
[data-theme="dark"] .footer-col a {
  color: rgba(255,255,255,0.6) !important;
}

[data-theme="dark"] footer a:hover,
[data-theme="dark"] .footer-col a:hover {
  color: var(--blue) !important;
}

[data-theme="dark"] .gst-chip {
  color: rgba(255,255,255,0.45) !important;
}

[data-theme="dark"] footer hr {
  border-color: rgba(255,255,255,0.08) !important;
}

/* ── CCTV V2 ── */
.cctv-v2-sec {
  background: var(--bg-white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

[data-theme="dark"] .cctv-v2-sec {
  background: #13151a;
}

.cctv-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.cctv-v2-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.cctv-v2-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid var(--border-blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

[data-theme="dark"] .cctv-v2-tag {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}

.cctv-v2-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cctv-v2-title em {
  color: var(--blue);
  font-style: normal;
}

.cctv-v2-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Part 1: Use Case Tiles */
.cctv-v2-part1 {
  margin-bottom: 64px;
}

.cctv-v2-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.cctv-v2-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cctv-v2-tile {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: default;
}

[data-theme="dark"] .cctv-v2-tile {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.cctv-v2-tile:hover {
  background: var(--blue-light);
  border-color: var(--border-blue);
  color: var(--blue);
}

[data-theme="dark"] .cctv-v2-tile:hover {
  background: rgba(59,130,246,0.12);
  border-color: var(--blue);
}

.cctv-v2-tile svg {
  flex-shrink: 0;
}

/* Part 2: What We Offer */
.cctv-v2-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .cctv-v2-offer-grid {
    grid-template-columns: 1fr;
  }
}

.cctv-v2-offer-card {
  opacity: 0;
  transform: translateY(24px);
}
.cctv-v2-offer-card.cctv-v2-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cctv-v2-offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

[data-theme="dark"] .cctv-v2-offer-icon {
  background: rgba(59,130,246,0.15);
}

.cctv-v2-offer-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cctv-v2-offer-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Part 3: Brands and Highlight Box */
.cctv-v2-part3 {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.cctv-v2-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cctv-v2-brand-pill {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid var(--border-blue);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 30px;
}

[data-theme="dark"] .cctv-v2-brand-pill {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}

.cctv-v2-brand-pill-other {
  background: var(--bg-soft);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 30px;
}

[data-theme="dark"] .cctv-v2-brand-pill-other {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

/* Highlight Box */
.cctv-v2-highlight {
  background: linear-gradient(135deg, var(--blue), #0052a3);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.cctv-v2-highlight h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  color: #fff;
  margin-bottom: 10px;
}

.cctv-v2-highlight p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cctv-v2-hl-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cctv-v2-btn-wa {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cctv-v2-btn-wa:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

.cctv-v2-btn-call {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cctv-v2-btn-call:hover {
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════
   BRAND TICKER  —  from original style.css (file:41)
   ═══════════════════════════════════════════════════════════ */
.brand-ticker {
  background: var(--bg-soft);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s ease;
}
.brand-ticker-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.brand-ticker-wrap {
  width: 100%;
  max-width: 100vw;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.brand-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.brand-ticker-track:hover {
  animation-play-state: paused;
}
.brand-ticker-row {
  display: flex;
  gap: 20px;
  padding: 0 10px;
}
.brand-ticker-item {
  width: 160px;
  height: 80px;
  background: #ffffff !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
  padding: 14px 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-ticker-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.brand-ticker-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.brand-ticker-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.brand-ticker-item--text {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-ticker-track { animation-play-state: paused; }
}
@media (max-width: 768px) {
  .brand-ticker { padding: 30px 0; }
  .brand-ticker-item { width: 110px; height: 54px; padding: 10px 16px; }
}

/* ═══ WA BUTTON GLOBAL OVERRIDES ═════════════════════════════ */
.nav-v2-btn-wa, .nav-v2-btn-wa-full, .btn-v2-wa, .qcb-wa,
.prod-v2-btn-wa, .prod-v3-btn-wa,
.svc-v2-btn-secondary[href*="wa.me"], .svc-v2-btn-secondary[href*="api.whatsapp"],
.bulk-v2-btn-secondary[href*="wa.me"], .bulk-v2-btn-secondary[href*="api.whatsapp"],
.cctv-v2-btn-wa, .abt-v2-btn-wa, .faq-v2-btn-wa,
.smb-wa, .fab-wa,
.rev-v2-btn-outline[href*="wa.me"], .rev-v2-btn-outline[href*="api.whatsapp"],
.btn-cc-wa {
  background-color: #25D366 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: none !important;
  text-decoration: none !important;
}
.nav-v2-btn-wa:hover, .nav-v2-btn-wa-full:hover, .btn-v2-wa:hover, .qcb-wa:hover,
.prod-v2-btn-wa:hover, .prod-v3-btn-wa:hover,
.cctv-v2-btn-wa:hover, .abt-v2-btn-wa:hover, .faq-v2-btn-wa:hover,
.smb-wa:hover, .fab-wa:hover, .btn-cc-wa:hover {
  background-color: #1ebe5d !important;
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES
   ═══════════════════════════════════════════════════════════════ */

/* Global safety */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; }

/* ── TOPBAR ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .topbar-left { flex-wrap: wrap; gap: 6px; }
  .topbar-left span:first-child { display: none; }
  .topbar-right { gap: 8px; }
  .topbar-pill { display: none; }
}

/* ── NAV V2 ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-v2-btn-wa { display: none !important; }
  .nav-v2-btn-call { display: none !important; }
  .nav-v2-hamburger { display: flex !important; }
  .nav-v2-links { display: none !important; }
}

/* ── HERO V2 ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-v2 { padding: 40px 0 56px; }
  .hero-v2-inner { grid-template-columns: 1fr !important; gap: 36px; }
  .hero-v2-visual { display: none; }
  .hero-v2-cta-row { flex-direction: column; }
  .btn-v2-primary, .btn-v2-wa, .btn-v2-outline { width: 100%; text-align: center; }
}

/* ── BRAND TICKER ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .brand-ticker { padding: 24px 0; }
  .brand-ticker-item { width: 100px !important; height: 56px !important; padding: 8px 12px !important; }
  .brand-ticker-item--text { font-size: 13px; }
}

/* ── QUICK CONTACT BAR ──────────────────────────────────────── */
@media (max-width: 640px) {
  .qcbar-inner { flex-direction: column; text-align: center; gap: 12px; }
  .qcbar-actions { justify-content: center; flex-wrap: wrap; }
  .qcbar-btn { flex: 1; min-width: 120px; justify-content: center; }
}

/* ── PRODUCTS V3 ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .prod-v3-sec { padding: 48px 0; }
  .prod-v3-inner { padding: 0 16px; }
  .prod-v3-tabs-wrap { margin-bottom: 20px; }
  .prod-v3-tabs { gap: 8px; }
  .prod-v3-tab { font-size: 13px; padding: 8px 16px; }
  .prod-v3-brand-row { gap: 8px; }
  .prod-v3-brand-card { min-width: 72px; padding: 12px 14px; }
  .prod-v3-brand-logo { width: 32px; height: 32px; }
  .prod-v3-brand-name { font-size: 11px; }
  .prod-v3-product-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .prod-v3-prod-card { padding: 16px; }
  .prod-v3-cta-row { flex-direction: column; }
  .prod-v3-btn-wa, .prod-v3-btn-call { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .prod-v3-brand-card { min-width: 64px; padding: 10px 12px; }
  .prod-v3-brand-logo { width: 28px; height: 28px; }
}

/* ── SERVICES ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .svc-v2-amc-block { flex-direction: column; padding: 28px 20px; }
  .svc-v2-grid { grid-template-columns: 1fr; }
}

/* ── RATINGS / TESTIMONIALS ─────────────────────────────────── */
@media (max-width: 768px) {
  .rating-row { grid-template-columns: 1fr; gap: 24px; }
  .rating-divider { display: none; }
  .testimonials-grid-small { grid-template-columns: 1fr; }
}

/* ── ABOUT ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .abt-v2-part1 { flex-direction: column; gap: 32px; }
  .abt-v2-stats-row { padding: 32px 16px; gap: 24px; }
  .abt-v2-ftr-btns { flex-direction: column; }
  .abt-v2-btn-call, .abt-v2-btn-wa { width: 100%; text-align: center; justify-content: center; }
}

/* ── WHOLESALE / BULK ────────────────────────────────────────── */
@media (max-width: 768px) {
  .wholesale-grid, .bulk-v2-feat-row { grid-template-columns: 1fr; }
  .wh-form { padding: 20px 16px; }
  .bulk-v2-cta-btns { flex-direction: column; }
}

/* ── CONTACT ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 260px; }
  .contact-cta-btns { flex-wrap: wrap; }
  .btn-cc { flex: 1; min-width: 120px; justify-content: center; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* ── STICKY MOBILE BAR ──────────────────────────────────────── */
@media (max-width: 768px) {
  .sticky-mob { display: flex !important; }
  body { padding-bottom: 68px; }
  .fab { bottom: 80px; }
}

/* ── PAYMENT ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .pay-grid { gap: 10px; }
  .pay-card { min-width: 90px; padding: 14px 16px; }
}

/* ── SECTION SPACING ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .sec { padding: 48px 0; }
  .sec-header { margin-bottom: 32px; }
  .svc-v2-sec, .abt-v2-sec, .prod-v3-sec { padding: 48px 0; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-wrap: nowrap; overflow: hidden; }
  .topbar-left span:first-child { display: none; }
  .topbar-pill { display: none; }
  .topbar-right { gap: 8px; }
}

/* ── STORE GALLERY ─────────────────────────────────────────── */
.gallery-sec {
  padding: 64px 0 0;
  background: var(--bg);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 20px;
}
.gallery-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-blue);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.gallery-title em { font-style: normal; color: var(--blue); }

.gallery-track-wrap {
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gallery-scroll 22s linear infinite;
  padding: 8px 0 24px;
}
.gallery-track:hover { animation-play-state: paused; }

.gallery-slide {
  flex-shrink: 0;
  width: 340px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-slide:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .gallery-slide { width: 260px; height: 185px; }
  .gallery-sec { padding: 40px 0 0; }
}
@media (max-width: 480px) {
  .gallery-slide { width: 220px; height: 156px; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation-play-state: paused; }
}
