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

/* Screen-reader-only: gives a page a real <h1> without altering the visual
   design (brand pages convey the name through a logo image). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --navy: #0a1628;
  --navy-mid: #0f2044;
  --blue: #1a4fa0;
  --blue-bright: #2563eb;
  --blue-light: #dbeafe;
  --accent: #f59e0b;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --wa-green: #25d366;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Sora", sans-serif;
  --max-w: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  /* Fixed nav is 68px — keep anchored section titles clear of it */
  scroll-padding-top: 84px;
}
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Reduced motion — respect user preference (WCAG 2.2.2 / 2.3.3).
   Neutralizes auto-advance crossfades, entrance animations, the badge
   pulse, the WA float glow, and smooth-scroll for vestibular safety. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Notch / landscape safe area */
  padding-left: max(2rem, env(safe-area-inset-left));
  padding-right: max(2rem, env(safe-area-inset-right));
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover {
  color: white;
}

/* Language switcher (blog id/en pages) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 3px;
}
.lang-switch-item {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-radius: 40px;
  transition:
    background 0.2s,
    color 0.2s;
}
.lang-switch-item:hover {
  color: white;
}
.lang-switch-item.active {
  background: var(--blue-bright);
  color: white;
}
.lang-switch-mobile {
  margin: 0.5rem 0;
}
.lang-switch-mobile .lang-switch-item {
  font-size: 14px;
  padding: 8px 16px;
}

.nav-cta {
  background: var(--wa-green);
  color: white;
  padding: 9px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
}
.nav-cta:hover {
  background: #20ba5a;
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.15);
  transform: translateY(-1px);
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: static;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-toggle svg {
  transition: transform 0.2s;
  opacity: 0.6;
}
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:has(.nav-dropdown-menu.is-open) .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown-menu {
  position: fixed;
  top: 68px;
  left: auto;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 12px 12px;
  list-style: none;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-dropdown-menu li a:hover {
  background: rgba(37, 99, 235, 0.2);
  color: white !important;
}
.nav-brand-badge {
  background: rgba(37, 99, 235, 0.3);
  color: #93c5fd;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
  border-radius: 2px;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ─── HERO SLIDESHOW ─────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Content fade transition when switching slides */
#heroContent,
#heroDevice {
  transition: opacity 0.22s ease;
}
.slide-fade {
  opacity: 0 !important;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.slide-overlay {
  position: absolute;
  inset: 0;
}
/* Dark reading overlay — applied on top of every slide.
   Guarantees text contrast even with bright/busy photos. */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Left side dark for text, right side lighter so the card visual stays visible */
  background:
    linear-gradient(
      to right,
      rgba(5, 12, 28, 0.72) 0%,
      rgba(5, 12, 28, 0.48) 45%,
      rgba(5, 12, 28, 0.18) 70%,
      rgba(5, 12, 28, 0.08) 100%
    ),
    /* Bottom vignette so dots/nav stay readable */
    linear-gradient(to top, rgba(5, 12, 28, 0.5) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}
.slide-overlay {
  z-index: 2; /* colour accent sits above the dark overlay */
}

/* Navigation */
.hero-slide-nav {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.slide-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.3s,
    width 0.3s;
}
.slide-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}
.slide-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  backdrop-filter: blur(4px);
}
.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}
.slide-arrow svg {
  width: 16px;
  height: 16px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: calc(100% - 10rem);
  padding: 80px 3rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  background: rgba(5, 12, 28, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
}
.hero-content {
  /* no separate box — shares the hero-inner glass card */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 40px;
  padding: 6px 16px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: white;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero h1 em {
  /* Italic emphasis via DM Sans italic (Sora has no italic variant).
     DM Sans italic contrasts the geometric upright of Sora — intentional, not a fallback. */
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
  color: #60a5fa;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-wrap: pretty;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.btn-primary {
  background: var(--blue-bright);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-device {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
.device-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.device-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a4fa0, #2563eb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-logo svg {
  width: 22px;
  height: 22px;
}
.device-brand {
  color: white;
  font-weight: 600;
  font-size: 16px;
}
.device-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-card-mini {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  transition: all 0.2s;
  cursor: default;
}
.product-card-mini:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
}
.pcm-icon {
  width: 20px;
  height: 20px;
  border-radius: 0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
}
.pcm-icon svg {
  width: 18px;
  height: 18px;
}
.pcm-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 500;
}
.pcm-cat {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stat {
  text-align: center;
  flex: 1;
}
.stat-num {
  color: white;
  font-size: 22px;
  font-weight: 600;
  display: block;
}
.stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

/* BRANDS */
.brands-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 2rem;
}
.brands-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.brands-label {
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.brands-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.brand-item {
  color: var(--gray-400);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-item.main {
  color: var(--blue);
}
.brand-item.main .brand-badge {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTION COMMON */
section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-desc {
  color: var(--gray-600);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 560px;
  text-wrap: pretty;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ABOUT */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 100% 0%,
    rgba(37, 99, 235, 0.3) 0%,
    transparent 60%
  );
}
.about-card-content {
  position: relative;
  z-index: 1;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.about-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}
.float-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
  margin-top: 1.5rem;
  align-self: flex-start;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.pillar {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.pillar-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue-bright);
}
.pillar h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* PRODUCTS */
.products {
  background: var(--off-white);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ─── BRAND + CATEGORY FILTER ──────────────────────────── */
.product-brand-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.brand-tab {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 8px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-500);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.brand-tab:hover {
  border-color: var(--gray-400);
  color: var(--navy);
}
.brand-tab.active[data-brand="semua"] {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.brand-tab.active:not([data-brand="semua"]) {
  background: #eff6ff;
  border-color: #2563eb;
  color: #1d4ed8;
}
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.brand-tab.active .brand-dot,
.brand-tab:hover .brand-dot {
  opacity: 1;
}

.product-cat-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--gray-100);
}
.cat-tab {
  padding: 5px 14px;
  border-radius: 40px;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-500);
  font-size: 12.5px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-tab:hover {
  border-color: var(--gray-400);
  color: var(--navy);
}
.cat-tab.active {
  background: #eff6ff;
  border-color: #2563eb;
  color: #1d4ed8;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  align-content: start;
  min-height: 760px;
}
.products-empty {
  text-align: center;
  color: var(--gray-500);
  font-size: 15px;
  padding: 3rem 1rem;
}
/* Fallback for crawlers/visitors without JS — hidden whenever JS runs */
.products-noscript {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.products-noscript li {
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.products-noscript strong {
  color: var(--navy);
}
/* ─── PRODUCT PAGINATION ────────────────────────────────── */
.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.pgn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
}
.pgn-arrow:hover:not(:disabled) {
  border-color: var(--navy);
  color: var(--navy);
}
.pgn-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.pgn-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.pgn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.pgn-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 5px;
}
.pgn-dot:hover:not(.active) {
  background: var(--gray-400);
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}
.product-img {
  background: var(--gray-100);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-inner {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-inner svg {
  width: 64px;
  height: 64px;
}
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.product-img-inner:has(.product-photo) {
  width: 100%;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.product-tag.new {
  background: var(--blue-bright);
}
.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.product-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
  margin-top: auto;
}
.product-card:hover .product-cta {
  gap: 10px;
}

/* WHY US */
.why {
  background: var(--white);
}
.why-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.why-header .section-desc {
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: stretch;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.why-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.07);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: #dbeafe;
}
.why-icon svg {
  width: 24px;
  height: 24px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}
/* Featured card — breaks identical grid (absolute ban) */
.why-card:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--navy);
  border-color: transparent;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.why-card:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 5% 95%,
    rgba(37, 99, 235, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.why-card:first-child:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.25);
  transform: translateY(-3px);
}
.why-card:first-child .why-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 2rem;
}
.why-card:first-child .why-icon svg {
  width: 26px;
  height: 26px;
  stroke: rgba(255, 255, 255, 0.9);
}
.why-card:first-child h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-wrap: balance;
  margin-bottom: 0.75rem;
}
.why-card:first-child p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 380px;
}
/* Compact cards (2–6): icon inline, no chip background */
.why-card:not(:first-child) {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  align-content: start;
}
.why-card:not(:first-child) .why-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 20px;
  height: 20px;
  background: none;
  border-radius: 0;
  margin-bottom: 0;
  margin-top: 3px;
  align-self: start;
}
.why-card:not(:first-child) .why-icon svg {
  width: 18px;
  height: 18px;
}
.why-card:not(:first-child) h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 14px;
  margin-bottom: 0.35rem;
  text-wrap: balance;
}
.why-card:not(:first-child) p {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* COVERAGE */
.coverage {
  background: var(--navy);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 0%,
      rgba(37, 99, 235, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 100%,
      rgba(96, 165, 250, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.coverage-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.coverage .section-title {
  color: white;
}
.coverage .section-desc {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 3rem;
}
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.cov-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cov-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.6),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.cov-stat:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateY(-3px);
}
.cov-stat:hover::before {
  opacity: 1;
}
.cov-icon {
  width: 34px;
  height: 34px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
}
.cov-icon svg {
  width: 17px;
  height: 17px;
}
.cov-num {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cov-unit {
  color: #60a5fa;
  font-size: 1.3rem;
}
.cov-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 6px;
  display: block;
  font-weight: 400;
}

/* PARTNERS */
.partners-wrap {
  margin-top: 3rem;
}
.partners-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.partners-track-wrap {
  position: relative;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.partners-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  cursor: grab;
  user-select: none;
}
.partners-track:active {
  cursor: grabbing;
}
.partners-track::-webkit-scrollbar {
  height: 4px;
}
.partners-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.partners-track::-webkit-scrollbar-thumb {
  background: rgba(96, 165, 250, 0.3);
  border-radius: 4px;
}
.partners-track::-webkit-scrollbar-thumb:hover {
  background: rgba(96, 165, 250, 0.5);
}
.partner-slot {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  width: 160px;
  height: 76px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: default;
  scroll-snap-align: start;
}
.partner-slot:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(96, 165, 250, 0.25);
}
.partner-slot span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}
.partner-slot img {
  width: 120px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.2s;
  pointer-events: none;
}
.partner-slot:hover img {
  opacity: 0.8;
}

/* CONTACT */
.contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-wrap: balance;
}
.contact-info p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-map {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue-bright);
}
.contact-item-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item-value {
  font-size: 14px;
  color: var(--gray-800);
  font-weight: 500;
}

.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
}
.contact-form-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-bright);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--wa-green);
  color: white;
  border: none;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  margin-top: 0.5rem;
}
.wa-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.wa-btn svg {
  width: 22px;
  height: 22px;
}

/* ── Technical Support Banner ──────────────────────────── */
.tech-support-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.tech-support-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.tech-support-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
}
.tech-support-body {
  flex: 1;
  min-width: 0;
}
.tech-support-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.tech-support-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.4rem;
}
.tech-support-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}
.tech-support-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}
.tech-support-number {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.tech-support-number-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.tech-support-number-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.01em;
}
.tech-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10b981;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.tech-support-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
@media (max-width: 900px) {
  .tech-support-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
    gap: 1.25rem;
  }
  .tech-support-cta {
    align-items: flex-start;
    width: 100%;
  }
  .tech-support-number {
    align-items: flex-start;
  }
  .tech-support-btn {
    width: 100%;
    justify-content: center;
  }
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.divider span {
  color: var(--gray-500);
  font-size: 13px;
  white-space: nowrap;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--gray-200);
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: max(2rem, calc(1.5rem + env(safe-area-inset-bottom)));
  right: max(2rem, calc(1.5rem + env(safe-area-inset-right)));
  /* Above page content, below nav (100) and the mobile menu overlay (101) */
  z-index: 90;
  background: var(--wa-green);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  animation: waFloat 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
@media (prefers-reduced-motion: reduce) {
  .wa-float:hover {
    transform: none;
  }
}
.wa-float svg {
  width: 23px;
  height: 23px;
}
.wa-float-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}
@keyframes waFloat {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
  }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #060d18;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: white;
}

/* Top bar */
.footer-topbar {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.9rem 2rem;
}
.footer-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
}
.footer-topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
}
.footer-topbar-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #60a5fa;
}

/* Main section */
.footer-main {
  padding: 4rem 2rem 3rem;
}
.footer-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.1fr;
  gap: 2rem;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}
.footer-brand-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #60a5fa;
}
.footer-contact-divider {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.65rem 0 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Link columns */
.footer-col-title {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 13.5px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}
.footer-social-btn svg {
  width: 16px;
  height: 16px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 2rem;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 12.5px;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-topbar-inner {
    flex-direction: column;
    gap: 0.6rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    gap: 1rem;
    justify-content: center;
  }
}

/* ─── ABOUT US PAGE ──────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 60%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 90% 10%,
      rgba(26, 79, 160, 0.12) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.about-hero-inner h1 em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
  color: #60a5fa;
}
.about-hero-inner > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.about-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ahs-item {
  text-align: center;
  padding: 0 1.5rem;
}
.ahs-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.ahs-num span {
  color: #60a5fa;
  font-size: 1.4rem;
}
.ahs-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.ahs-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Overview */
.about-section {
  background: var(--white);
  padding: 6rem 2rem;
}
.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.about-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-info-label {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 2px;
}
.about-info-value {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.5;
}

/* Visual card */
.about-overview-visual {
  position: sticky;
  top: 100px;
}
.about-visual-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.avc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.avc-title {
  color: white;
  font-weight: 600;
  font-size: 15px;
}
.avc-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.avc-brands {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.avc-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avc-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avc-brand-row > span:nth-child(2) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  flex: 1;
}
.avc-brand-tag {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  padding: 2px 8px;
  border-radius: 20px;
}
.avc-footer {
  display: flex;
  gap: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.avc-stat {
  flex: 1;
  text-align: center;
}
.avc-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.avc-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* Vision Mission */
.about-visi {
  background: var(--gray-100);
  padding: 6rem 2rem;
}
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-vm-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-vm-visi {
  background: linear-gradient(135deg, #0f2044, #1a4fa0);
}
.about-vm-misi {
  background: linear-gradient(135deg, #0a1628, #0f2044);
}
.avm-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  opacity: 0.75;
}
.avm-icon svg {
  width: 22px;
  height: 22px;
}
.about-vm-card h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.about-vm-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-size: 15px;
}
.avm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.avm-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.avm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
}

/* Values */
.about-values {
  background: var(--white);
  padding: 6rem 2rem;
}
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}
.about-value-card {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: none;
  border-radius: 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-200);
}
.about-value-card:nth-child(-n+2) {
  border-top: none;
  padding-top: 0;
}
.about-value-card:hover {
  box-shadow: none;
  transform: none;
}
.about-value-card:hover h4 {
  color: var(--blue-bright);
}
.av-icon {
  width: 20px;
  height: 20px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.av-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-bright);
}
.about-value-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  text-wrap: balance;
  transition: color 0.15s;
}
.about-value-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Brands */
.about-brands {
  background: var(--gray-100);
  padding: 6rem 2rem;
}
.about-brands-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-brand-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  text-decoration: none;
  border: 1px solid var(--gray-200);
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.about-brand-card:hover {
  box-shadow: 0 6px 20px rgba(10, 22, 40, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateX(4px);
}
.abc-icon {
  width: 72px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 0.5rem;
  overflow: hidden;
}
.abc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.abc-body {
  flex: 1;
  min-width: 0;
}
.abc-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.abc-body p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.abc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.abc-tags span {
  font-size: 11px;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}
.abc-arrow {
  color: var(--gray-400);
  flex-shrink: 0;
  transition:
    color 0.2s,
    transform 0.2s;
}
.abc-arrow svg {
  width: 18px;
  height: 18px;
}
.about-brand-card:hover .abc-arrow {
  color: #2563eb;
  transform: translateX(4px);
}

/* About responsive */
@media (max-width: 900px) {
  .about-overview-grid,
  .about-vm-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-overview-visual {
    position: static;
  }
  .ahs-divider {
    display: none;
  }
  .ahs-item {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 560px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-brand-card {
    flex-wrap: wrap;
  }
  .abc-arrow {
    display: none;
  }
}


/* ─── CONTACT PAGE HERO ──────────────────────────────────── */
.contact-hero {
  background: var(--navy);
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 50% 60%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 90% 10%,
      rgba(26, 79, 160, 0.12) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.contact-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-breadcrumb {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.contact-breadcrumb:hover {
  color: rgba(255, 255, 255, 0.8);
}
.contact-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
  text-wrap: balance;
}
.contact-hero-inner h1 em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
  color: #60a5fa;
}
.contact-hero-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
}

/* Active nav link */
.nav-links .nav-active {
  color: white !important;
}

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(10, 22, 40, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 68px;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  /* Tap outside area triggers close via JS */
}
.mobile-menu.open {
  display: flex;
  animation: menuFadeIn 0.2s ease;
}
@keyframes menuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: 400;
  position: relative;
  z-index: 1; /* above overlay click zone */
}

/* Close (✕) button inside mobile menu */
.mobile-close-btn {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2;
}
.mobile-close-btn:hover,
.mobile-close-btn:active {
  color: white;
}

/* ─── BLOG / ARTICLE PAGES ──────────────────────────────────── */
.article-hero {
  background: var(--navy);
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 30%,
    rgba(37, 99, 235, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
  margin: 1rem 0 1.25rem;
}
.article-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-meta .am-brand {
  color: #93c5fd;
  font-weight: 500;
}
.article-body {
  padding: 4rem 2rem 5rem;
  background: var(--white);
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.8;
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 2.5rem 0 1rem;
  text-wrap: balance;
}
.article-content h2:first-child {
  margin-top: 0;
}
.article-content p {
  margin: 0 0 1.25rem;
}
.article-content ul,
.article-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
}
.article-content strong {
  color: var(--navy);
  font-weight: 600;
}
.article-cta {
  max-width: 720px;
  margin: 3rem auto 0;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-cta-text h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.article-cta-text p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}
.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}
.article-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 40px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

/* ─── BLOG INDEX ─────────────────────────────────────────────── */
.blog-hero {
  background: var(--navy);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.75rem;
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto;
}
.blog-section {
  padding: 4rem 2rem;
}
.blog-section:nth-child(even) {
  background: var(--off-white);
}
.blog-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.blog-section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-section-header h2 {
  font-size: 1.3rem;
  color: var(--navy);
}
.blog-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: block;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.1);
}
.blog-card h3 {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.blog-card p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .article-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  /* Nuclear GPU fix: disable ALL backdrop-filter and will-change on mobile.
     Low-end Android GPUs run out of compositor layers when many elements
     simultaneously use these properties, causing full-section render artifacts. */
  * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    will-change: auto !important;
  }

  /* Full-bleed hero on mobile — remove glass card, background fills screen */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
    padding: 100px 1.5rem 5rem;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
  }
  /* Shorter cross-fade: reduces time both slides are composited simultaneously */
  .hero-slide {
    transition: opacity 0.35s ease;
  }
  /* On mobile, uniform-dark overlay so text stays readable over any photo */
  .hero-slide::after {
    background: rgba(5, 12, 28, 0.62);
  }
  /* Hide decorative grid — tiled linear-gradient adds GPU load on mobile */
  .hero-grid {
    display: none;
  }
  .hero-visual,
  .hero-device {
    display: none;
  }
  .hero h1 {
    text-shadow: 0 2px 16px rgba(5, 12, 28, 0.9);
  }
  .hero-desc {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 8px rgba(5, 12, 28, 0.8);
  }
  .hero .btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 22, 40, 0.97);
  }
  nav.scrolled {
    background: rgba(10, 22, 40, 1);
  }
  .slide-arrow {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .why-card:hover {
    transform: none;
  }
  .coverage-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    gap: 0.75rem;
  }
  .cov-stat {
    padding: 0.9rem 0.75rem;
  }
  .cov-num {
    font-size: 1.5rem;
  }
  .cov-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.4rem;
  }
  .cov-icon svg {
    width: 14px;
    height: 14px;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  /* Navbar switcher would crowd the hamburger off-screen below ~370px;
     the copy inside the mobile menu covers this case instead. */
  .lang-switch:not(.lang-switch-mobile) {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  /* Filter tabs → single-row horizontal scroll */
  .product-brand-tabs,
  .product-cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .product-brand-tabs::-webkit-scrollbar,
  .product-cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .brand-tab,
  .cat-tab {
    flex-shrink: 0;
  }

  /* Product grid → horizontal swipe carousel */
  .products-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    min-height: unset;
    gap: 1rem;
    padding: 0.5rem 1rem 1.5rem;
    margin: 0 -1rem; /* bleed to section edge for full-width feel */
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* Pagination hidden — all cards visible in scroll */
  .product-pagination {
    display: none !important;
  }
}

@media (max-width: 560px) {
  section {
    padding: 4rem 1.25rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card:first-child {
    grid-column: 1;
  }
  .coverage-stats {
    grid-template-columns: 1fr 1fr;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 2rem;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    font-size: 11px;
    padding: 4px 12px;
    gap: 6px;
    white-space: nowrap;
  }
  /* Card width slightly wider on small phones */
  .product-card {
    flex: 0 0 85%;
  }
}

/* ─── MOBILE SUB-NAV GROUP (Products accordion) ──────────── */
.mobile-menu-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mobile-group-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  padding: 0;
}
.mobile-group-toggle svg {
  transition: transform 0.25s ease;
  opacity: 0.45;
}
.mobile-menu-group.open .mobile-group-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}
.mobile-group-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    padding 0.25s ease;
  opacity: 0;
}
.mobile-menu-group.open .mobile-group-links {
  max-height: 400px;
  opacity: 1;
  padding-top: 1rem;
}
.mobile-group-links a {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.15s;
}
.mobile-group-links a:hover,
.mobile-group-links a:active {
  color: white !important;
}

/* ─── BRANDS BAR RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .brands-inner {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .brands-list {
    gap: 1.5rem;
  }
}
@media (max-width: 560px) {
  .brands-bar {
    padding: 1.25rem;
  }
  .brands-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .brands-list {
    gap: 0.65rem 1.5rem;
  }
}

/* ─── TOUCH: LARGER TAP TARGETS ──────────────────────────── */
@media (pointer: coarse) {
  .cat-tab {
    padding: 9px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .brand-tab {
    min-height: 44px;
  }
  .tab-btn {
    min-height: 44px;
  }
}

/* ─── CONTACT FORM / ABOUT VALUES / FOOTER ───────────────── */
@media (max-width: 560px) {
  /* Form card — reduce horizontal padding on narrow screens */
  .contact-form-box {
    padding: 1.5rem;
  }
  /* About values: restore separator on 2nd card in single column */
  .about-value-card:nth-child(2) {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.25rem;
  }
}

/* Footer: true single column on very narrow screens (≤420px) */
@media (max-width: 420px) {
  .footer-main-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand-col {
    grid-column: 1;
  }
}
