/* ─────────────────────────────────────
   3. UTILITIES
───────────────────────────────────── */
.container {
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.section-title {
  text-align:center;
  font-size:clamp(1.4rem,2.5vw,2rem);
  color:var(--navy);
  margin-bottom:48px;
  font-weight:800;
  letter-spacing:-.02em;
  position:relative;
}
.section-title::after {
  content:'';
  display:block;
  width:48px; height:3px;
  background:var(--blue-accent);
  border-radius:99px;
  margin:12px auto 0;
}

.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:13px 28px;
  border-radius:var(--radius-md);
  font-family:var(--font); font-size:.95rem; font-weight:600;
  cursor:pointer; border:none;
  transition:var(--transition);
  white-space:nowrap;
}
.btn--whatsapp {
  background:var(--gold);
  color:var(--white);
  box-shadow:0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp img { width:20px; height:20px; filter:brightness(0) invert(1); }
.btn--whatsapp:hover {
  background:var(--gold-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(199, 17, 17, 0.45);
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position:relative; height:520px;
  display:flex; align-items:center; justify-content:center;
  margin-top:var(--nav-height); overflow:hidden;
}
.hero__bg { position:absolute; inset:0; }
.hero__img { width:100%; height:100%; object-fit:cover; object-position:center; }
.hero__overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(7, 18, 49, 0.3) 0%, rgba(4, 12, 35, 0.55) 100%);
}
.hero__content {
  position:relative; z-index:1;
  text-align:center; padding:0 24px;
  animation:fadeInUp .8s ease-out both;
}
.hero__brand-logo {
  max-width:700px; width:100%;
  margin:0 auto 20px;
  filter:brightness(1) invert(0);
}
.hero__title {
  font-size:clamp(1.8rem,4vw,2.75rem);
  color:var(--white); font-weight:800;
  letter-spacing:-.02em; margin-bottom:12px;
  text-shadow:0 2px 8px rgba(0,0,0,.25);
}
.hero__tagline {
  font-size:clamp(1rem,2.5vw,1.25rem);
  color:rgba(255,255,255,.9); font-weight:500;
  letter-spacing:.01em; text-shadow:0 1px 4px rgba(0,0,0,.3);
}


/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about { padding:var(--section-pad) 0; background:var(--white); }
.about__grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
}
.about__image {
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md); aspect-ratio:4/3;
}
.about__image img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.about__image:hover img { transform:scale(1.03); }
.about__title { font-size:clamp(1.5rem,3vw,2rem); color:var(--navy); margin-bottom:20px; }
.about__text { color:var(--text-body); margin-bottom:16px; font-size:.975rem; }
.about__text:last-of-type { margin-bottom:28px; }


/* ─────────────────────────────────────
   USP (KEUNGGULAN & FUNGSI)
───────────────────────────────────── */
.usp { padding:var(--section-pad) 0; background:var(--off-white); }
.usp__grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.usp__card {
  background:var(--white); border-radius:var(--radius-md);
  padding:32px 28px; border:1px solid var(--gray-100); box-shadow:var(--shadow-sm);
}
.usp__card h3 { font-size:1.1rem; font-weight:800; color:var(--navy); margin-bottom:18px; }
.usp__list { display:flex; flex-direction:column; gap:14px; }
.usp__list li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:.925rem; color:var(--text-body); line-height:1.55;
}
.usp__list li::before {
  content:'✓'; flex:0 0 22px; width:22px; height:22px; border-radius:50%;
  background:rgba(37,99,235,.12); border:1px solid rgba(37,99,235,.3);
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; color:var(--blue-accent); margin-top:1px;
}


/* ─────────────────────────────────────
   SPESIFIKASI TEKNIS
───────────────────────────────────── */
.specs { padding:var(--section-pad) 0; background:var(--white); }
.spec-tabs__nav {
  display:flex; justify-content:center; gap:8px;
  margin-bottom:40px; flex-wrap:wrap;
}
.spec-tabs__nav-item {
  background:var(--off-white); border:1px solid var(--gray-100);
  cursor:pointer; padding:12px 26px; border-radius:99px;
  font-family:var(--font); font-size:.9rem; font-weight:600; color:var(--gray-700);
  transition:var(--transition);
}
.spec-tabs__nav-item.is-active { background:var(--navy); border-color:var(--navy); color:var(--white); }
.spec-tabs__nav-item:hover:not(.is-active) { border-color:var(--blue-accent); color:var(--blue-accent); }

.specs__block {
  display:grid; grid-template-columns:1fr 1fr;
  gap:56px; align-items:center;
}
.specs__image { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.specs__image img { width:100%; height:auto; object-fit:cover; display:block; }
.specs__content h3 { font-size:1.35rem; color:var(--navy); font-weight:800; margin-bottom:16px; }
.specs__content p  { font-size:.975rem; color:var(--text-body); line-height:1.75; margin-bottom:20px; }

.specs__table { width:100%; border-collapse:collapse;border-radius:var(--radius-md); font-size:.9rem; }
.specs__table th, .specs__table td {
  padding:12px 16px; text-align:left; border:1px solid var(--gray-100);
}
.specs__table th {
  background:var(--navy); 
  color:var(--white); 
  font-weight:700;
  text-transform:uppercase; 
  letter-spacing:.03em; 
  font-size:.78rem;
}
.specs__table td { color:var(--text-body); }
.specs__table tr:nth-child(even) td { background:var(--off-white); }

@media (max-width:768px) {
  .specs__block { grid-template-columns:1fr; gap:28px; }
}


/* ─────────────────────────────────────
   GARANSI
───────────────────────────────────── */
.garan { padding:var(--section-pad) 0; background:var(--off-white); }
.garan__grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
}
.garan__image {
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md); aspect-ratio:1/1; background:#000;
}
.garan__image img {
  width:100%; height:100%; object-fit:cover;
}

@media (max-width:768px) {
  .garan__grid { grid-template-columns:1fr; gap:32px; }
}


/* ─────────────────────────────────────
   SERTIFIKASI
───────────────────────────────────── */
.cert { padding:var(--section-pad) 0; background:var(--white); }
.cert__grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(90px, 1fr)); gap:16px;
  align-items:center; justify-items:center;
}
.cert__item {
  background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-md);
  padding:16px; width:100%; min-height:90px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm); transition:transform .25s ease, box-shadow .25s ease;
}
.cert__item:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.cert__item img { max-width:100%; max-height:100%; object-fit:contain; }
.cert__placeholder {
  text-align:center; padding:32px 20px;
  border:1px dashed var(--gray-100); border-radius:var(--radius-md);
  color:var(--gray-700); font-size:.9rem; background:var(--off-white);
}


/* ─────────────────────────────────────
   VARIASI KOLEKSI (STATIS, TANPA FILTER)
───────────────────────────────────── */
.pro-wrap { padding:var(--section-pad) 0; background:var(--off-white); }
.pro-grid--static {
  display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
}
.pro-card {
  display:flex; flex-direction:column;
  background:var(--white);
  border:1px solid var(--gray-100); border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease;
}
.pro-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.pro-card__img { position:relative; aspect-ratio:16/10; background:var(--gray-100); overflow:hidden; }
.pro-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.pro-card:hover .pro-card__img img { transform:scale(1.06); }
.pro-card__seg {
  position:absolute; top:12px; left:12px;
  background:var(--blue-accent); color:var(--white);
  font-size:.72rem; font-weight:600;
  padding:4px 10px; border-radius:99px;
}
.pro-card__body { padding:20px 22px; }
.pro-card__title { font-size:1.05rem; color:var(--navy); margin-bottom:10px; font-weight:800; }
.pro-card__desc { font-size:.875rem; color:var(--text-body); line-height:1.6; margin-bottom:14px; }
.pro-card__sizes {
  display:flex; flex-wrap:wrap; gap:8px; border-top:1px solid var(--gray-100); padding-top:14px;
}
.pro-card__size-tag {
  font-size:.75rem; font-weight:600; color:var(--navy);
  background:var(--off-white); border:1px solid var(--gray-100);
  padding:5px 10px; border-radius:99px;
}

@media (max-width:768px) {
  .pro-grid--static { grid-template-columns:1fr; }
}


/* ─────────────────────────────────────
   PROJECT GALLERY
───────────────────────────────────── */
.gallery { padding:var(--section-pad) 0; background:var(--off-white); overflow:hidden; }
.gallery__header { padding:0 24px; }
.gallery__track-wrap { position:relative; margin-top:40px; }
.gallery__track {
  display:flex; gap:16px; justify-content:center;
  padding:8px 40px 16px;
}
.gallery__card {
  position:relative; flex-shrink:0;
  width:320px; height:220px;
  border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease;
}
.gallery__card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.gallery__more {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:10px;
  background:linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color:var(--white); text-align:center; padding:20px;
}
.gallery__more-arrow { font-size:1.6rem; }
.gallery__more-text { font-size:.9rem; font-weight:600; max-width:220px; }

@media (max-width:768px) {
  .gallery__card { width:260px; height:180px; }
}


/* ─────────────────────────────────────
   CTA / KONSULTASI
───────────────────────────────────── */
.cta {
  padding:var(--section-pad) 0;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
  position:relative; overflow:hidden;
}
.cta::before {
  content:''; position:absolute;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%);
  top:-200px; left:-100px; pointer-events:none;
}
.cta::after {
  content:''; position:absolute;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  bottom:-80px; right:15%; pointer-events:none;
}
.cta__grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center; position:relative; z-index:1;
}
.cta__tag {
  display:inline-block; font-size:.75rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:#60a5fa; background:rgba(37,99,235,.15);
  padding:5px 14px; border-radius:99px;
  border:1px solid rgba(37,99,235,.3); margin-bottom:20px;
}
.cta__heading {
  font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:800;
  color:var(--white); line-height:1.15; letter-spacing:-.025em; margin-bottom:16px;
}
.cta__heading span { color:#60a5fa; }
.cta__sub { font-size:.975rem; color:#94a3b8; line-height:1.65; margin-bottom:28px; }
.cta__perks { display:flex; flex-direction:column; gap:12px; }
.cta__perks li {
  display:flex; align-items:center; gap:10px;
  font-size:.9rem; color:#cbd5e1;
}
.cta__perks li::before {
  content:'✓'; width:22px; height:22px; border-radius:50%;
  background:rgba(37,99,235,.2); border:1px solid rgba(37,99,235,.4);
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; color:#60a5fa; flex-shrink:0;
}
.cta__form-card h3 {
  font-size:1.1rem; font-weight:700; color:var(--white);
  margin-bottom:24px; letter-spacing:-.01em;
}

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}

.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity:1; transform:translateY(0); }

.reveal-stagger > *:nth-child(1) { transition-delay:.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay:.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay:.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay:.26s; }


/* ─────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────── */
@media (max-width:1024px) {
  :root { --section-pad:64px; }
}

@media (max-width:768px) {
  :root { --section-pad:52px; --nav-height:64px; }

  .navbar__nav { display:none; }
  .navbar__hamburger { display:flex; }
  .navbar__hamburger.is-open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .navbar__hamburger.is-open span:nth-child(2) { opacity:0; }
  .navbar__hamburger.is-open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  .hero { height:380px; }
  .hero__brand-logo { max-width:200px; }

  .about__grid { grid-template-columns:1fr; gap:32px; }
  .usp__grid { grid-template-columns:1fr; gap:16px; }

  .cta__grid { grid-template-columns:1fr; gap:40px; }
  .cta__form-card { padding:28px 20px; }
}

@media (max-width:480px) {
  .wa-float { bottom:20px; right:20px; width:50px; height:50px; }
}
