@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ── Primary — Deep Refined Navy ── */
  --primary:       #0C1D31;
  --primary-light: #193250;
  --primary-dark:  #061020;

  /* ── Accent — Electric Teal (replaces gold) ── */
  --gold:       #00BFA5;
  --gold-light: #26D4BC;
  --gold-dark:  #00897B;

  /* ── Neutrals ── */
  --white:      #FFFFFF;
  --light:      #F2F8FC;
  --light-2:    #E6F2F8;
  --text:       #0C1D31;
  --text-muted: #4E6A80;
  --text-light: #8FAABF;
  --border:     #D2E4EE;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(12,29,49,0.06);
  --shadow:    0 4px 24px rgba(12,29,49,0.09);
  --shadow-lg: 0 10px 40px rgba(12,29,49,0.13);
  --shadow-xl: 0 20px 60px rgba(12,29,49,0.18);

  /* ── Tokens ── */
  --radius:     12px;
  --radius-lg:  18px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== SKIP LINK ===== */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: white; padding: 8px 16px; border-radius: 0 0 8px 0; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; transition: var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(12,29,49,0.08), 0 4px 20px rgba(12,29,49,0.06); }
.navbar.transparent { background: rgba(255,255,255,0.72); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(12,29,49,0.05); }
.navbar.solid { background: var(--primary); }
.nav-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav-logo { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.nav-logo img { height: 56px; width: 56px; object-fit: contain; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.05; }
.nav-logo-text strong { color: var(--primary-dark); font-size: 17px; font-weight: 800; letter-spacing: -0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-logo-text small { color: rgba(12,29,49,0.48); font-size: 9px; font-weight: 500; letter-spacing: 0.4px; text-transform: none; margin-top: 4px; white-space: nowrap; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link { color: rgba(12,29,49,0.72); font-weight: 500; font-size: 14px; padding: 8px 16px; border-radius: 8px; transition: var(--transition); }
.nav-link:hover { color: var(--primary); background: rgba(12,29,49,0.05); }
.nav-link.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--primary) !important; font-weight: 700; padding: 9px 22px !important; border-radius: 9px !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--primary-dark); border-radius: 2px; transition: var(--transition); }
/* Solid navbar (inner pages) — white text & logo on dark bg */
.navbar.solid .nav-logo img { filter: brightness(0) invert(1); }
.navbar.solid .nav-logo-text strong { color: white; }
.navbar.solid .nav-logo-text small { color: rgba(255,255,255,0.55); }
.navbar.solid .nav-link { color: rgba(255,255,255,0.75); }
.navbar.solid .nav-link:hover { color: white; background: rgba(255,255,255,0.10); }
.navbar.solid .nav-link.active { color: var(--gold-light); }
.navbar.solid .nav-cta { background: var(--gold) !important; color: var(--primary) !important; }
.navbar.solid .nav-cta:hover { background: var(--gold-light) !important; }
.navbar.solid .nav-toggle span { background: white; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 980px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0,191,165,0.12) 0, rgba(0,191,165,0.04) 18%, transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(12,29,49,0.08) 0, transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f2f8fc 38%, #e6f2f8 100%);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}
.hero::before {
  width: 460px;
  height: 460px;
  left: -120px;
  top: -120px;
  background:
    radial-gradient(circle, rgba(0,191,165,0.22) 0%, rgba(0,191,165,0.08) 38%, transparent 72%),
    radial-gradient(circle, rgba(12,29,49,0.08) 0%, transparent 60%);
  animation: hero-float 14s ease-in-out infinite;
}
.hero::after {
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -180px;
  background:
    radial-gradient(circle, rgba(12,29,49,0.10) 0%, rgba(12,29,49,0.03) 42%, transparent 74%),
    repeating-linear-gradient(135deg, rgba(12,29,49,0.03) 0 2px, transparent 2px 16px);
  animation: hero-float 18s ease-in-out infinite reverse;
}
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.7s ease, visibility 0.7s; z-index: 2; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 3; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease-out;
  filter: saturate(0.9) brightness(1.0);
  opacity: 0.38;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,250,252,0.92) 48%, rgba(238,243,248,0.82) 100%),
    linear-gradient(to right, rgba(12,29,49,0.05) 0%, rgba(12,29,49,0.02) 56%, rgba(12,29,49,0.01) 100%);
}
.hero-slide-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,191,165,0.12) 0, transparent 18%),
    radial-gradient(circle at 80% 22%, rgba(12,29,49,0.08) 0, transparent 16%),
    radial-gradient(circle at 72% 78%, rgba(0,191,165,0.08) 0, transparent 14%),
    repeating-linear-gradient(90deg, rgba(12,29,49,0.025) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(12,29,49,0.018) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

/* Hero — two column layout */
.hero-slide-inner {
  position: relative; z-index: 3; width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 120px 40px 100px;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); gap: 72px; align-items: center;
}

.hero-content { text-align: left; max-width: 680px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 30px; padding: 10px 16px;
  border-radius: 999px; background: rgba(255,255,255,0.86); border: 1px solid rgba(12,29,49,0.08);
  box-shadow: 0 12px 28px rgba(12,29,49,0.06);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s 0.1s ease, transform 0.5s 0.1s ease;
}
.hero-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-dark); flex-shrink: 0; }
.hero-slide.active .hero-tag { opacity: 1; transform: translateY(0); }

.hero-title {
  font-size: clamp(24px, 2.8vw, 42px); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.3px; color: var(--primary-dark); margin-bottom: 20px;
  text-wrap: balance;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s 0.2s ease, transform 0.55s 0.2s ease;
}
.hero-title em { color: var(--gold-dark); font-style: normal; }
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-desc {
  font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.66);
  max-width: 560px; margin: 0 0 36px;
  color: var(--text-muted);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s 0.3s ease, transform 0.55s 0.3s ease;
}
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; align-items: center;
  opacity: 0; transition: opacity 0.5s 0.4s ease;
}
.hero-slide.active .hero-actions { opacity: 1; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-dark); color: white; font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 12px; transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-hero-primary:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(12,29,49,0.18); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.72); color: var(--primary); font-weight: 600; font-size: 15px;
  padding: 14px 30px; border-radius: 12px; border: 1.5px solid rgba(12,29,49,0.10);
  transition: var(--transition); font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.94); border-color: rgba(12,29,49,0.18); }

.hero-stats {
  display: flex; align-items: stretch; gap: 12px; margin-top: 40px; padding-top: 0;
  opacity: 0; transition: opacity 0.5s 0.5s ease;
  flex-wrap: wrap;
}
.hero-slide.active .hero-stats { opacity: 1; }
.hero-stat-item {
  padding: 16px 18px; text-align: left; min-width: 160px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(12,29,49,0.08);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(12,29,49,0.06);
}
.hero-stat-item:first-child { padding-left: 18px; }
.hero-stat-item:last-child { padding-right: 18px; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.hero-stat-divider { display: none; }

/* Hero visual — right side highlight card */
.hero-visual {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.65s 0.35s ease, transform 0.65s 0.35s ease;
}
.hero-slide.active .hero-visual { opacity: 1; transform: translateX(0); }

.hero-highlight-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,252,0.92) 100%);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(12,29,49,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 24px 70px rgba(12,29,49,0.10);
  position: relative;
  overflow: hidden;
}
.hero-highlight-card::before {
  content: '';
  position: absolute;
  inset: -40px -40px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,165,0.18) 0%, transparent 72%);
  animation: hero-float 10s ease-in-out infinite;
}
.hero-highlight-card::after {
  content: '';
  position: absolute;
  inset: auto auto -70px -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12,29,49,0.08) 0%, transparent 70%);
  animation: hero-float 12s ease-in-out infinite reverse;
}
.hero-highlight-card > * { position: relative; z-index: 1; }
.hero-highlight-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 24px;
}
.hero-highlights { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.hero-highlight-item {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-muted); font-size: 14px; line-height: 1.5;
}
.hero-highlight-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-dark); flex-shrink: 0; margin-top: 6px;
}
.hero-highlight-footer { border-top: 1px solid rgba(12,29,49,0.08); padding-top: 22px; }
.hero-highlight-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 13px;
}
.hero-highlight-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  flex-shrink: 0; animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Hero image — clean frameless PNG display */
.hero-img-frame {
  display: contents; /* no visual container, just passes through */
}
.hero-img-main {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(12,29,49,0.12));
}

/* Controls */
.hero-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  padding: 0 40px 28px;
  display: flex; align-items: center; gap: 20px;
  /* Subtle gradient so controls don't clash with content */
  background: linear-gradient(to top, rgba(246,248,252,0.70) 0%, transparent 100%);
  pointer-events: none;
}
.hero-controls > * { pointer-events: auto; }
.hero-counter { font-size: 12px; font-weight: 600; color: rgba(12,29,49,0.42); flex-shrink: 0; min-width: 46px; }
.hero-counter span { color: var(--primary); font-size: 18px; }
.hero-progress-track { flex: 1; height: 1px; background: rgba(12,29,49,0.12); max-width: 260px; }
.hero-progress-fill { height: 100%; background: var(--gold); width: 0%; transition: width 0.1s linear; }
.hero-dots { display: flex; gap: 6px; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(12,29,49,0.22); border: none; cursor: pointer; transition: var(--transition); padding: 0; }
.hero-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }
.hero-arrows { display: flex; gap: 8px; margin-left: auto; }
.hero-arrow { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.92); border: 1px solid rgba(12,29,49,0.10); color: var(--primary); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 15px; box-shadow: 0 4px 16px rgba(12,29,49,0.08); }
.hero-arrow:hover { background: white; border-color: rgba(12,29,49,0.18); color: var(--primary-dark); box-shadow: 0 8px 24px rgba(12,29,49,0.12); }

@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, 14px, 0) scale(1.06); }
}

/* Hero responsive — tablet */
@media (max-width: 1024px) {
  .hero-slide-inner { grid-template-columns: 1fr; gap: 0; padding: 108px 32px 96px; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-tag { display: inline-flex; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}
/* Hero responsive — mobile (768px) handled in general responsive below */


/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: white; font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 12px; transition: var(--transition);
  border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white; font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--transition); cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--light); }
.section-dark { background: var(--primary); color: white; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-dark); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-tag::before, .section-tag::after { content: ''; width: 20px; height: 1px; background: var(--gold); opacity: 0.5; }
.section-title { font-size: clamp(26px, 3.5vw, 40px); color: var(--primary); margin-bottom: 12px; letter-spacing: -0.3px; }
.section-dark .section-title { color: white; }
.section-desc { color: var(--text-muted); font-size: 16px; max-width: 540px; margin: 0 auto; line-height: 1.75; }
.section-divider { width: 36px; height: 3px; background: var(--gold); border-radius: 2px; margin: 12px auto 0; }

/* ===== FEATURES — premium cards ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::after { transform: scaleX(1); }

.feature-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,191,165,0.1); color: var(--gold-dark);
  font-size: 13px; font-weight: 800; margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.feature-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.feature-desc { color: var(--text-muted); font-size: 14px; line-height: 1.75; }

/* ===== PRODUCTS ===== */
.products-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-btn { padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--border); background: white; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

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

.product-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.product-img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--light); position: relative; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.35s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--primary); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }

.product-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 10px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-size: 14px; font-weight: 700; color: var(--primary); line-height: 1.4; margin-bottom: 8px; flex: 1; }
.product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.product-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.product-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 600; transition: var(--transition); }
.product-cta svg { width: 15px; height: 15px; transition: transform 0.2s; }
.product-card:hover .product-cta svg { transform: translateX(3px); }
.product-wa { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: #25D366; color: white; transition: var(--transition); }
.product-wa:hover { background: #1ea855; transform: scale(1.08); }

.view-all-wrap { text-align: center; margin-top: 48px; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 48px; font-weight: 800; color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 8px; }

/* ===== PARTNERS ===== */
.partners-track { overflow: hidden; position: relative; }
.partners-track::before, .partners-track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.partners-track::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.partners-track::after { right: 0; background: linear-gradient(to left, var(--light), transparent); }
.partners-scroll { display: flex; gap: 16px; animation: scroll-partners 35s linear infinite; width: max-content; }
.partners-scroll:hover { animation-play-state: paused; }
@keyframes scroll-partners { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-logo-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 32px; display: flex; align-items: center; justify-content: center; min-width: 160px; height: 80px; transition: var(--transition); flex-shrink: 0; }
.partner-logo-item:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.partner-logo-item img { height: 36px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.5); transition: var(--transition); }
.partner-logo-item:hover img { filter: none; }
.partner-logo-item span { font-size: 14px; font-weight: 700; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--primary); padding: 100px 0; text-align: center; }
.cta-title { font-size: clamp(28px, 4vw, 46px); color: white; margin-bottom: 18px; letter-spacing: -0.3px; }
.cta-desc { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: var(--light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-text h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.contact-form-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--primary); }
.form-input, .form-textarea, .form-select { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text); background: var(--light); transition: var(--transition); outline: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(12,29,49,0.07); }
.form-textarea { height: 140px; resize: vertical; }
.btn-submit { width: 100%; padding: 13px; background: var(--primary); color: white; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ===== FOOTER ===== */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 48px; width: auto; }
.footer-brand-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer-brand-text strong { color: white; font-size: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-brand-text span { color: rgba(255,255,255,0.45); font-size: 9.5px; text-transform: none; letter-spacing: 0.3px; font-weight: 400; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 700; margin-bottom: 18px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.footer-contact-item span:first-child { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--primary); padding: 140px 0 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,15,28,0.6) 0%, transparent 100%); pointer-events: none; }
.page-hero-title { font-size: clamp(28px, 5vw, 50px); color: white; margin-bottom: 14px; position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.45); flex-wrap: wrap; position: relative; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--primary); border-radius: 14px; padding: 20px 24px; text-align: center; box-shadow: 0 8px 28px rgba(0,191,165,0.4); }
.about-img-badge .num { font-size: 38px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.about-img-badge .label { font-size: 12px; font-weight: 600; opacity: 0.8; margin-top: 3px; }
.about-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.about-list-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.about-list-item::before { content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath fill-rule='evenodd' d='M19.916 4.626a.75.75 0 01.208 1.04l-9 13.5a.75.75 0 01-1.154.114l-6-6a.75.75 0 011.06-1.06l5.353 5.353 8.493-12.739a.75.75 0 011.04-.208z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-size: cover; }
.about-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.about-stat {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.about-stat-num { font-size: 32px; font-weight: 800; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.about-stat-label { margin-top: 8px; font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ===== BRAND LOGO GRID ===== */
.brand-logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.brand-logo-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.brand-logo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.brand-logo-card img { max-width: 100%; max-height: 54px; object-fit: contain; }
.brand-logo-card span { font-size: 13px; color: var(--text-muted); font-weight: 600; text-align: center; }

/* ===== PRODUCT LIST ===== */
.products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.products-count { color: var(--text-muted); font-size: 14px; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.sidebar-title { font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); letter-spacing: 1px; text-transform: uppercase; }
.sidebar-filter-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; cursor: pointer; border-bottom: 1px solid var(--border); transition: var(--transition); }
.sidebar-filter-item:last-child { border-bottom: none; }
.sidebar-filter-label { flex: 1; font-size: 14px; color: var(--text-muted); }
.sidebar-filter-label:hover { color: var(--primary); }
.sidebar-filter-count { font-size: 12px; background: var(--light); color: var(--text-muted); padding: 2px 8px; border-radius: 100px; }
.sidebar-filter-item.active .sidebar-filter-label { color: var(--primary); font-weight: 600; }
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 44px; align-items: start; }
.product-gallery { position: sticky; top: 104px; }
.product-main-img {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border); background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  box-shadow: var(--shadow-lg);
}
.product-main-img img { width: 100%; height: 100%; object-fit: contain; }
.product-thumbs { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.product-thumb {
  width: 78px; height: 78px; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; background: white; display: flex; align-items: center; justify-content: center;
  padding: 8px; cursor: pointer; transition: var(--transition);
}
.product-thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info .product-brand-tag { display: inline-block; background: rgba(12,29,49,0.06); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; border: 1px solid rgba(12,29,49,0.1); }
.product-info h1 { font-size: clamp(22px, 3vw, 34px); color: var(--primary); margin-bottom: 18px; line-height: 1.25; }
.product-info .short-desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 22px; }
.product-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.product-description-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.product-description-box .section-tag { margin-bottom: 10px; }
.product-description-box .section-tag::before, .product-description-box .section-tag::after { width: 14px; }
.product-description-box .section-title { text-align: left; font-size: 22px; margin-bottom: 6px; }
.product-description-box .section-divider { margin: 10px 0 14px; }
.product-description-box .product-description { color: var(--text-muted); line-height: 1.85; font-size: 15px; }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white; font-weight: 700; font-size: 15px; padding: 13px 28px; border-radius: 12px; transition: var(--transition); border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-wa:hover { background: #1ea855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,191,165,0.3); }
.product-meta { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border); }
.product-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.product-meta-item strong { color: var(--primary); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.specs-table th { background: var(--light); color: var(--primary); font-weight: 700; width: 200px; }
.specs-table td { color: var(--text-muted); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--border); background: white; color: var(--text); font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.page-btn.dots { background: none; border: none; color: var(--text-muted); cursor: default; }

/* ===== WA FLOAT ===== */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 12px; }
.wa-label { background: white; color: var(--primary); font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 100px; box-shadow: var(--shadow-lg); white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--transition); pointer-events: none; }
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,191,165,0.4); transition: var(--transition); position: relative; }
.wa-btn::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(0,191,165,0.3); animation: wa-pulse 2s ease-out infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 26px; height: 26px; fill: white; }

/* ===== ALERTS ===== */
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ===== SEARCH ===== */
.search-bar { display: flex; align-items: center; gap: 12px; background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 6px 6px 6px 16px; max-width: 480px; width: 100%; }
.search-bar input { flex: 1; border: none; outline: none; font-size: 14px; background: transparent; color: var(--text); }
.search-btn { background: var(--primary); color: white; border: none; border-radius: 8px; padding: 9px 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif; }
.search-btn:hover { background: var(--primary-light); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 20px; opacity: 0.25; }
.empty-state h3 { font-size: 18px; color: var(--text); margin-bottom: 8px; }

/* Tab buttons */
.tab-btn { border-bottom: 3px solid transparent !important; transition: color 0.2s, border-color 0.2s; }
.tab-btn.active-tab { border-bottom-color: var(--gold) !important; color: var(--primary) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar mobile menu — light bg with dark readable text */
  .nav-menu {
    display: none; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0;
    background: #ffffff;
    padding: 12px 16px 20px;
    gap: 2px;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(12,29,49,0.12);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 10px; width: 100%; color: var(--text) !important; font-size: 15px; }
  .nav-link:hover { color: var(--primary) !important; background: var(--light); }
  .nav-link.active { color: var(--gold-dark) !important; background: rgba(0,191,165,0.08); }
  .nav-cta { background: var(--primary) !important; color: white !important; text-align: center; justify-content: center; margin-top: 4px; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-slide-inner { padding: 88px 20px 80px; }
  .hero-stats { gap: 8px; }
  .hero-stat-item { min-width: 0; flex: 1; padding: 12px 10px; text-align: center; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 11px; }
  .hero-stat-divider { display: none; }

  /* Layout */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }

  /* Stats bar */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 36px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 24px 16px; }
  .stat-item:last-child { border-bottom: none; }
  .stats-bar { padding: 48px 0; }

  /* Page hero (inner pages) */
  .page-hero { padding: 110px 0 48px; }

  /* Footer */
  .footer-brand-top { justify-content: flex-start; }
  .footer { padding: 48px 0 0; }

  /* Products toolbar */
  .products-toolbar { flex-direction: column; align-items: flex-start; }
  .search-bar { max-width: 100%; }

  /* Section padding */
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .cta-section { padding: 64px 0; }

  /* WA float — move up slightly on mobile so it clears bottom content */
  .wa-float { bottom: 20px; right: 16px; }
  .wa-btn { width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-slide-inner { padding: 80px 16px 72px; }
  .hero-title { font-size: 22px; line-height: 1.2; }
  .hero-stats { flex-wrap: wrap; gap: 8px; }
  .hero-stat-item { width: calc(50% - 4px); flex: none; }
  .hero-controls { padding: 0 16px 14px; }
  .hero-arrows { display: none; }
  .hero::before, .hero::after, .hero-slide-overlay::before { display: none; }

  /* Products grid — single column on small mobile */
  .products-grid { grid-template-columns: 1fr; }

  /* Sections */
  .section { padding: 48px 0; }
  .nav-logo-text strong { font-size: 13px; }
  .brand-logo-grid { grid-template-columns: 1fr 1fr; }
  .product-description-box { padding: 16px; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr; }
  .about-stat-num { font-size: 26px; }

  /* Footer */
  .footer-grid { gap: 28px; }
  .footer-brand-top { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Stats bar */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 30px; }

  /* CTA */
  .cta-section { padding: 48px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline { width: 100%; max-width: 300px; justify-content: center; }

  /* Contact form */
  .contact-form-card { padding: 24px 16px; }

  /* Page hero */
  .page-hero { padding: 100px 0 40px; }
  .page-hero-title { font-size: 26px; }
}
