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

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-bg: #eff6ff;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 48px; transition: height 0.3s; }
.header.scrolled .header-logo img { height: 40px; }

.header-right { display: flex; align-items: center; gap: 24px; }
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.header-nav a:hover, .header-nav a.active { color: var(--primary); }
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }

.header-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.header-wa:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.header-wa i { font-size: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(0px);
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(37,99,235,0.6) 50%, rgba(15,23,42,0.4) 100%);
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-slide-content {
  max-width: 680px;
}
.hero-slide-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-slide-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-slide-content h1 .highlight {
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-slide-content p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-slide-content .buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-slide-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.hero-slide-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-slide-content .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide-content .btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Slider controls */
.slider-nav {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.slider-dot.active {
  background: white;
  border-color: white;
  width: 32px;
  border-radius: 5px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}
.slider-arrow:hover { background: rgba(255,255,255,0.18); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-100); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-heading {
  margin-bottom: 56px;
}
.section-heading h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-heading h2 .highlight { color: var(--primary); }
.section-heading p {
  color: var(--gray-500);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 8px 20px rgba(0,0,0,0.04);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s;
}
.card-link:hover { gap: 10px; }

/* Service card */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-bg), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--primary);
}
.service-card-body { padding: 28px; }
.service-card-body .badge {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card-body p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }

/* Stat */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; padding: 40px 24px; background: white; border-radius: 20px; border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s; }
.stat-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.stat-item .number { font-size: 44px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-item .label { font-size: 14px; color: var(--gray-500); font-weight: 500; }

/* Why choose us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item {
  background: white;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.why-item .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* Brand strip */
.brand-strip { padding: 32px 0; background: var(--gray-100); overflow: hidden; }
.brand-track-wrap { width: 100%; overflow: hidden; }
.brand-track { display: flex; align-items: center; gap: 64px; animation: brandScroll 30s linear infinite; width: max-content; }
.brand-track img { height: 36px; opacity: 0.35; filter: grayscale(1); transition: all 0.4s; flex-shrink: 0; }
.brand-track img:hover { opacity: 0.8; filter: grayscale(0); }

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

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

.brand-flex { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px 56px; }
.brand-flex img { height: 48px; opacity: 0.45; filter: grayscale(1); transition: all 0.4s; }
.brand-flex img:hover { opacity: 0.8; filter: grayscale(0); }

.cert-track-wrap { width: 100%; overflow: hidden; padding: 8px 0; }
.cert-track { display: flex; align-items: center; gap: 56px; animation: certScroll 40s linear infinite; width: max-content; }
.cert-track a { flex-shrink: 0; cursor: zoom-in; }
.cert-track img { height: 130px; opacity: 0.7; transition: all 0.3s; }
.cert-track img:hover { opacity: 1; transform: scale(1.05); }

/* Gallery + Filter */
.filter-bar { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--gray-300);
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 14px; }

/* Product card */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.prod-card {
  background: white; border-radius: 16px; padding: 28px 20px; text-align: center;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.prod-card img { height: 88px; object-fit: contain; margin-bottom: 16px; }
.prod-card h4 { font-size: 13px; font-weight: 600; color: var(--dark); }
.prod-card .brand-tag {
  display: inline-block; background: var(--primary-bg); color: var(--primary);
  padding: 2px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; margin-bottom: 8px;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta .container { position: relative; z-index: 1; text-align: center; }
.cta h2 { color: white; font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }
.cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn-white {
  background: white; color: var(--primary); padding: 14px 28px;
  border-radius: 12px; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.cta .btn-border {
  border: 1.5px solid rgba(255,255,255,0.25); color: white; padding: 14px 28px;
  border-radius: 12px; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.cta .btn-border:hover { border-color: white; background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* Client logos */
.client-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 32px; }
.client-grid img { height: 28px; opacity: 0.3; filter: grayscale(1); transition: all 0.4s; }
.client-grid img:hover { opacity: 0.7; filter: grayscale(0); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.footer a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
}
.footer a:hover { color: white; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; margin-top: 16px; }
.footer-logo img { height: 44px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer-contact-item i { margin-top: 3px; color: var(--primary); min-width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float .tooltip {
  background: white;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.04);
}
.wa-float:hover .tooltip { opacity: 1; transform: translateX(0); }
.wa-float a {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wa-float a:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* ===== PAGE HEADER ===== */
.page-top {
  padding: 120px 0 56px;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  text-align: center;
}
.page-top h1 { color: white; font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 12px; }
.page-top p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { background: var(--dark); border-radius: 24px; padding: 48px; color: white; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-info > p { opacity: 0.6; margin-bottom: 32px; font-size: 14px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item .ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
}
.contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-item p { font-size: 13px; opacity: 0.6; }

.contact-form-wrap { background: white; border-radius: 24px; padding: 48px; border: 1px solid rgba(0,0,0,0.04); }
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--gray-900); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-300);
  border-radius: 12px; font-family: inherit; font-size: 14px;
  transition: all 0.2s; outline: none; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--primary); color: white; padding: 14px 32px;
  border: none; border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.3s; width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.about-text h2 { font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin-bottom: 16px; color: var(--dark); }
.about-text h2 .highlight { color: var(--primary); }
.about-text p { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.about-list li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: 16px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px; }
.team-hidden { display: none; }
.team-card { text-align: center; }
.team-card img { width: 100%; border-radius: 16px; margin-bottom: 10px; aspect-ratio: 1; object-fit: cover; }
.team-card h4 { font-size: 13px; font-weight: 600; }
.team-card p { font-size: 12px; color: var(--gray-500); }
.team-toggle { display:inline-block; padding:12px 32px; border:2px solid var(--primary); border-radius:50px; color:var(--primary); font-weight:600; font-size:14px; background:transparent; cursor:pointer; transition:all 0.2s; }
.team-toggle:hover { background:var(--primary); color:#fff; }

/* Product filter bar */
.prod-filter { margin-bottom: 32px; }
.filter-group { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; align-items: center; }
.filter-group select, .filter-group input[type="text"] {
  padding: 10px 16px; border: 1.5px solid #e2e8f0; border-radius: 12px;
  font-family: inherit; font-size: 14px; outline: none; background: white;
  min-width: 160px; transition: border-color 0.2s;
}
.filter-group select:focus, .filter-group input[type="text"]:focus { border-color: var(--primary); }
.btn-filter {
  padding: 10px 20px; background: var(--primary); color: white; border: none;
  border-radius: 12px; font-weight: 600; font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; transition: background 0.2s;
}
.btn-filter:hover { background: var(--primary-dark); }
.btn-filter-reset {
  padding: 10px 16px; background: #f1f5f9; color: #64748b; border: none;
  border-radius: 12px; font-size: 13px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: background 0.2s;
}
.btn-filter-reset:hover { background: #e2e8f0; }
.prod-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  color: #94a3b8; font-size: 15px;
}
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; font-size: 14px; font-weight: 600;
  border: 1.5px solid #e2e8f0; color: #64748b; text-decoration: none; transition: all 0.2s;
}
.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); color: white; border-color: var(--primary); }

/* Product category in produk page */
.prod-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.pcat-card {
  background: white; border-radius: 20px; padding: 28px 20px; text-align: center;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s;
}
.pcat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.pcat-card img { height: 100px; object-fit: contain; margin: 0 auto 16px; display: block; }
.pcat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pcat-card .shop-btns { display: flex; justify-content: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.pcat-card .shop-btns a {
  padding: 6px 14px; border-radius: 8px; font-size: 11px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px;
}
.btn-tokped { background: #44ab38; color: white; } .btn-tokped:hover { background: #388e2d; }
.btn-shopee2 { background: #ee4d2d; color: white; } .btn-shopee2:hover { background: #d63d1e; }
.btn-blibli2 { background: #e53935; color: white; } .btn-blibli2:hover { background: #c62828; }
.btn-wa-sales { background: #25D366; color: white; } .btn-wa-sales:hover { background: #1da851; }

/* Marketplace strip */
.mkt-strip { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.mkt-strip a {
  display: flex; align-items: center; gap: 10px;
  background: white; padding: 14px 28px; border-radius: 14px;
  font-weight: 600; font-size: 14px; color: var(--gray-900);
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s;
}
.mkt-strip a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: transparent; }
.mkt-strip img { height: 28px; }

/* Skills bar */
.skill-bar { margin-bottom: 20px; }
.skill-bar .head { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; font-weight: 600; }
.skill-bar .track { background: var(--gray-100); border-radius: 100px; height: 8px; overflow: hidden; }
.skill-bar .fill { height: 100%; border-radius: 100px; transition: width 1s cubic-bezier(0.4, 0, 0.2, 1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .slider-arrow { display: none; }
}
@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .header-nav.open { right: 0; }
  .header-nav a { font-size: 16px; }
  .header-nav a::after { display: none; }
  .hamburger { display: flex; }
  .header-wa { display: none; }
  .hero-slider { min-height: 500px; max-height: 600px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-top { padding: 100px 0 40px; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4, .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info, .contact-form-wrap { padding: 28px; }
  .card { padding: 24px; }
}
