



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

/* primary */
.btn--primary {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-hover));
  color: var(--white);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--blue-accent) 35%, transparent);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--blue-accent) 50%, transparent);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--blue-accent) 78%, var(--white)),
    var(--blue-accent));
}

/* ghost */
.btn--ghost {
  background: color-mix(in srgb, var(--white) 12%, transparent);
  color: var(--white);
  border: 1px solid color-mix(in srgb, var(--white) 40%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: color-mix(in srgb, var(--white) 22%, transparent);
  transform: translateY(-2px);
}

/* outline */
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--sm { padding: 8px 18px; font-size: 14px; border-radius: 99px; }


.btn__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 7px;        /* squircle kecil, ikut bentuk ikon aplikasi WA */
  background: var(--white);
}
.btn__wa svg { width: 16px; height: 16px; fill: var(--wa-green); }



.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}

.hero__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient HORIZONTAL */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--navy) 55%, transparent) 0%,
    color-mix(in srgb, var(--navy) 35%, transparent) 38%,
    color-mix(in srgb, var(--navy) 10%, transparent) 60%,
    transparent 100%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; }


.hero__content { max-width: 780px; }

.hero__title {
  margin-bottom: var(--space-md);
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: var(--fw-h1);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px color-mix(in srgb, #000 35%, transparent);
}
.hero__title-accent { color: var(--gold); }

.hero__sub {
  max-width: 520px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--white) 92%, transparent);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* panah & dot */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 40%, transparent);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, transform .25s ease;
}
.hero__arrow:hover { background: color-mix(in srgb, var(--white) 30%, transparent); }
.hero__arrow--prev { left: var(--space-md); }
.hero__arrow--next { right: var(--space-md); }
.hero__arrow--prev:hover,
.hero__arrow--next:hover { transform: translateY(-50%) scale(1.08); }

.hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 45%, transparent);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.hero__dot:hover { background: color-mix(in srgb, var(--white) 75%, transparent); }
.hero__dot.is-active { background: var(--white); transform: scale(1.25); }



.card-grid { display: grid; gap: 22px; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }



.sector-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 7 / 5;              /* rasio web lama */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.sector-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sector-card:hover .sector-card__img { transform: scale(1.08); }

.sector-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    color-mix(in srgb, var(--navy) 82%, transparent) 0%,
    color-mix(in srgb, var(--navy) 15%, transparent) 70%);
}

.sector-card__label {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-sm);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-align: center;
}



.product-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;              /* rasio web lama */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    color-mix(in srgb, var(--navy) 50%, transparent) 0%,
    transparent 55%);
}

.product-card__name {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--blue-accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--blue-accent) 40%, transparent);
  transition: background .25s ease;
}
.product-card:hover .product-card__name { background: var(--blue-hover); }



.section--story { background: var(--pale-blue); }

/* Kolom gambar DIBATASI 560px, bukan pecahan fr */
.story-row {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}
.story-row + .story-row { margin-top: 56px; }

.story-row__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.story-row__media:hover img { transform: scale(1.04); }

.story-row__title {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: var(--fw-h2);
}
.story-row__body p { color: var(--text-body); font-size: 15.6px; line-height: 1.8; }



.icon-card {
  padding: 32px 28px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.icon-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  object-fit: contain;
}
.icon-card__title { margin-bottom: 8px; color: var(--navy); font-size: 17px; font-weight: 700; }
.icon-card__desc  { color: var(--gray-700); font-size: 14px; line-height: 1.55; }



.section--stats { background: var(--off-white); }

.stat-card {
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-card__num {
  margin-bottom: 10px;
  color: var(--blue-accent);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: var(--fw-h1);
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;   /* angka nggak goyang saat count-up */
}
.stat-card__label { margin-bottom: 4px; color: var(--navy); font-size: 15px; font-weight: 700; }
.stat-card__note  { color: var(--text-lembut); font-size: 12.5px; line-height: 1.4; }



/* Section galeri */
.section--gallery { overflow: hidden; }

.carousel { position: relative; margin-top: 40px; }

.carousel__track {
  display: flex;
  gap: var(--space-sm);
  padding: 8px 40px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.carousel__track:active { cursor: grabbing; }
.carousel__track::-webkit-scrollbar { height: 4px; }
.carousel__track::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 99px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 99px; }


.project-card {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.project-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-card__img { transform: scale(1.06); }

.project-card__name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px var(--space-sm) 14px;
  background: linear-gradient(to top,
    color-mix(in srgb, var(--navy) 80%, transparent) 0%,
    transparent 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

/* kartu terakhir */
.project-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
}
.project-card__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--space-md);
  text-align: center;
}
.project-card__more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: color-mix(in srgb, var(--white) 12%, transparent);
  font-size: 1.5rem;
  line-height: 1;
  transition: background .25s ease, transform .25s ease;
}
.project-card--more:hover .project-card__more-arrow {
  background: color-mix(in srgb, var(--white) 18%, transparent);
  transform: translateX(4px);
}
.project-card__more-text { max-width: 200px; font-size: 14.7px; font-weight: 700; line-height: 1.4; }

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background .2s, transform .2s;
}
.carousel__arrow:hover { background: var(--blue-accent); transform: translateY(-60%) scale(1.08); }
.carousel__arrow--prev { left: 4px; }
.carousel__arrow--next { right: 4px; }



.section--trustbar {
  padding-block: 36px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}


/* dua strip bertumpuk */
.section--trustbar + .section--trustbar { border-top: 0; }


.logo-marquee--reverse .logo-marquee__track { animation-direction: reverse; }


.logo-marquee--reverse .logo-marquee__logo {
  width: 140px;
  height: 60px;
  object-fit: contain;
}

/* Hormati preferensi "kurangi animasi" */
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
}

.logo-marquee {
  overflow: hidden;

  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }

.logo-marquee__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  transition: opacity .25s;
}
.logo-marquee__logo:hover { opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}



.section--inspirasi {
  background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-hover) 100%);
}

.article-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 6 / 5;              /* rasio web lama */
  border-radius: var(--radius-md);
  overflow: hidden;
  background: color-mix(in srgb, var(--white) 10%, transparent);
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}
.article-card:hover { transform: translateY(-6px); }

.article-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.article-card:hover .article-card__img { transform: scale(1.06); }

.article-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    color-mix(in srgb, var(--navy) 88%, transparent) 0%,
    transparent 65%);
}

.article-card__body { position: relative; z-index: 1; padding: var(--space-md); }

.article-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--blue-accent) 55%, transparent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-card__title { color: var(--white); font-size: 17px; font-weight: 700; line-height: 1.3; }



.footer { padding: 60px 0 0; background: var(--navy); color: var(--gray-500); }

.footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
@media (max-width: 1488px) {
  .footer__inner { padding-inline: var(--pad-x-mobile); }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid color-mix(in srgb, var(--white) 8%, transparent);
}
/* 5 kolom */
.footer__grid--home { grid-template-columns: 1.7fr 1.3fr 1fr 1fr 1.05fr; }

/* judul grup KEDUA dalam satu kolom */
.footer__col-title--stacked { margin-top: var(--space-lg); }


.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__tagline,
.footer__desc { color: var(--text-footer); font-size: 13.6px; line-height: 1.6; }
.footer__tagline { margin-bottom: 8px; }
.footer__desc    { margin-bottom: var(--space-md); max-width: 34ch; }


.footer__address {
  margin-bottom: 14px;
  color: var(--text-footer);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}
.footer__hours {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 12.8px;
  line-height: 1.5;
}

.footer__col-title {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__list { display: flex; flex-direction: column; gap: 8px; }
.footer__list li,
.footer__list a { color: var(--text-footer); font-size: 14px; transition: color .2s; }
.footer__list a:hover { color: var(--white); }

/* Sosmed pindah ke kolom brand */
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__social a { color: var(--text-footer); font-size: 13.6px; transition: color .2s; }
.footer__social a:hover { color: var(--white); }

/* baris bawah */
.footer__bottom { padding: 20px 0; text-align: center; }
.footer__copy { color: var(--white); font-size: 12.8px; }



.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--wa-green) 50%, transparent);
  animation: wa-float 3s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wa-float img { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--wa-green) 60%, transparent);
  animation: none;
}
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}



.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }


.reveal-stagger > * { transition-delay: calc(.05s + var(--i, 0) * .07s); }



/* judul kiri + tombol kanan */
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: 36px;
}

.section__head .h2-section { margin-bottom: 0; }
.section__head .h2-section::after { display: none; }

/* tombol di bawah isi section */
.section__more { margin-top: var(--space-lg); text-align: center; }



.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Foto kategori rata-rata TERANG */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--navy) 90%, transparent) 0%,
    color-mix(in srgb, var(--navy) 82%, transparent) 45%,
    color-mix(in srgb, var(--navy) 62%, transparent) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 56px;
}

.page-hero__title {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: var(--fw-h1);
  line-height: 1.15;
  letter-spacing: -0.02em;
}


.page-hero__sub {
  max-width: 560px;
  color: color-mix(in srgb, var(--white) 90%, transparent);
  font-size: 15.5px;
  line-height: 1.7;
}



.page-hero--polos {
  min-height: 0;             /* tingginya ikut isi */
  background: var(--hero-polos-bg);
}
.page-hero--polos .page-hero__inner { padding-block: 40px 56px; text-align: center; }
.page-hero--polos .page-hero__sub   { margin-inline: auto; }


.breadcrumb.breadcrumb--hero {
  margin-bottom: var(--space-md);
  background: none;
  border-bottom: 0;
}
.breadcrumb.breadcrumb--hero ol { justify-content: center; padding-block: 0; color: color-mix(in srgb, var(--white) 72%, transparent); }
.breadcrumb.breadcrumb--hero a  { color: color-mix(in srgb, var(--white) 88%, transparent); }
.breadcrumb.breadcrumb--hero a:hover { color: var(--white); }
.breadcrumb.breadcrumb--hero li + li::before { color: color-mix(in srgb, var(--white) 45%, transparent); }
.breadcrumb.breadcrumb--hero [aria-current="page"] { color: var(--white); font-weight: 600; }


.segera {
  max-width: 640px;
  margin-inline: auto;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  text-align: center;
}
.segera__judul { margin-bottom: 12px; color: var(--text-navy); font-size: 24px; font-weight: var(--fw-h3); line-height: 1.3; }
.segera__desc  { color: var(--gray-700); font-size: 15px; line-height: 1.7; }

.segera--polos { background: none; }


.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 13px;
  font-size: 13.5px;
  color: var(--gray-700);
}
/* Pemisah "/" ditulis CSS, bukan HTML */
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--gray-300);
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-accent); }
.breadcrumb [aria-current="page"] { color: var(--text-dark); font-weight: 600; }




.brand-count {
  margin-bottom: 20px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
}

.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  padding: var(--space-sm) var(--space-md);
}
.brand-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.brand-card__body { padding: 0 var(--space-md) var(--space-md); }
.brand-card__name {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}
.brand-card__desc {
  display: block;
  margin-top: 4px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}



.cta-form {
  padding: var(--space-md);
  border: 1px solid color-mix(in srgb, var(--white) 16%, transparent);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--white) 9%, transparent);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


.tally-embed {
  display: block;
  width: 100%;

  height: 950px;
  border: 0;
  border-radius: var(--radius-md);
}

.cta-form__nojs {
  color: color-mix(in srgb, var(--white) 88%, transparent);
  font-size: 14px;
  line-height: 1.7;
}
.cta-form__nojs a { color: var(--gold); text-decoration: underline; }





.btn--green {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--wa-green) 40%, transparent);
}
.btn--green:hover {
  transform: translateY(-2px);
  background: var(--wa-hover);
  box-shadow: 0 8px 26px color-mix(in srgb, var(--wa-green) 55%, transparent);
}

/* Gold pakai --gold */
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--gold) 40%, transparent);
}
.btn--gold:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--gold) 85%, var(--white));
  box-shadow: 0 8px 26px color-mix(in srgb, var(--gold) 55%, transparent);
}



.page-hero--brand { min-height: 520px; text-align: center; }
.page-hero--brand .page-hero__inner { padding-block: 64px; }
.page-hero--brand .page-hero__sub { max-width: 620px; margin-inline: auto; }

/* Scrim brand hero lebih rata */
.page-hero--brand .page-hero__overlay {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--navy) 30%, transparent) 0%,
    color-mix(in srgb, var(--navy) 55%, transparent) 100%);
}


.brand-hero__logo {
  width: 80%;
  max-width: 500px;
  margin: 0 auto 20px;
  height: auto;
}

.brand-hero__nama {
  display: block;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: var(--fw-h1);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-hero__kategori {
  display: block;
  margin-top: 6px;
  color: color-mix(in srgb, var(--white) 86%, transparent);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}


.tentang-produk {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}
.tentang-produk__media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tentang-produk__media img { width: 100%; height: 100%; object-fit: cover; }

.tentang-produk__judul {
  margin-bottom: var(--space-md);
  color: var(--navy);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: var(--fw-h2);
}
/* Panjang baris dibatasi ~68 karakter */
.tentang-produk__teks p {
  max-width: 68ch; color: var(--text-body); font-size: 15.4px; line-height: 1.85; }
.tentang-produk__teks p + p { margin-top: var(--space-sm); }
.tentang-produk .btn { margin-top: var(--space-lg); }



.kelebihan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}


.kelebihan-grid > .kelebihan-kartu {
  flex: 0 0 calc((100% - 4 * var(--space-sm)) / 5);
  min-width: 0;
  overflow-wrap: break-word;   /* judul panjang mecah, bukan nembus kartu */
}


.kelebihan-grid:has(> .kelebihan-kartu:nth-child(5n+1):nth-last-child(4)) {
  justify-content: flex-start;
}
.kelebihan-kartu {
  padding: var(--space-md) var(--space-sm);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.kelebihan-kartu:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.kelebihan-kartu__icon { width: 46px; height: 46px; margin: 0 auto 12px; object-fit: contain; }
.kelebihan-kartu__judul { color: var(--navy); font-size: 14px; font-weight: 700; line-height: 1.35; }
.kelebihan-kartu__desc  { margin-top: 6px; color: var(--gray-700); font-size: 12.5px; line-height: 1.5; }


.kelebihan-armstrong {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
  max-width: 1100px;
  margin-inline: auto;
}

.kelebihan-poin-list {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}
.kelebihan-poin {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
/* Angkanya FILE GAMBAR */
.kelebihan-poin__angka { width: 48px; height: 48px; object-fit: contain; }
.kelebihan-poin__judul { color: var(--navy); font-size: 15px; font-weight: 700; line-height: 1.3; }
.kelebihan-poin__desc  { margin-top: 4px; color: var(--gray-700); font-size: 12.5px; line-height: 1.5; }

.kelebihan-diamond {
  display: grid;
  align-content: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
/* diamond10tech.webp juga persegi 1254² */
.kelebihan-diamond__logo {
  width: 100%;
  max-width: 230px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.kelebihan-diamond__logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-xs);
  align-items: center;
}
.kelebihan-diamond__logo-grid img { width: 100%; height: 72px; object-fit: contain; }


.garansi-grid { display: grid; gap: var(--space-md); max-width: 1000px; margin-inline: auto; }

.garansi-grid--berdampingan { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
.garansi-grid--berdampingan .garansi-kartu {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  align-content: start;    /* baris nggak di-stretch */
  gap: var(--space-md);
}
/* Visual dikunci PERSEGI di mode berdampingan */
.garansi-grid--berdampingan .garansi-kartu__visual {
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  padding: var(--space-lg);
}
.garansi-grid--berdampingan .garansi-kartu__img { max-height: 100%; object-fit: contain; }
.garansi-grid--berdampingan .garansi-kartu__angka { font-size: 160px; }
.garansi-grid--berdampingan .garansi-kartu__label { font-size: 22px; }

.garansi-kartu {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-xl);
}
.garansi-kartu__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.garansi-kartu__img { max-width: 100%; height: auto; }

/* Dipakai kalau brand BELUM punya grafis garansi */
.garansi-kartu__angka {
  color: var(--text-dark);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
}
.garansi-kartu__label {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 3px solid var(--text-dark);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}
.garansi-kartu__desc { color: var(--text-body); font-size: 15.4px; line-height: 1.85; }


.sertifikat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}
.sertifikat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 96px;
  padding: 14px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sertifikat-item img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }


.sertifikat-dukung__label {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-lembut);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.sertifikat-grid--dukung .sertifikat-item { width: 112px; height: 84px; }


.sertifikat-grid--seimbang { max-width: calc(5 * 128px + 4 * var(--space-sm)); margin-inline: auto; }



.vp-kh { --vp-bar-tinggi: 44px; }


.vp-bar .btn--sm {
  font-size: 16px;
  border-radius: var(--radius-md);   /* 12px */
}

.vp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  min-height: var(--vp-bar-tinggi);
  margin-bottom: var(--space-md);
}


.vp-filter__grup:first-of-type .vp-filter__judul {
  display: flex;
  align-items: center;
  min-height: var(--vp-bar-tinggi);
  margin-bottom: var(--space-md);
}


.vp-kh {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-lg);
}


.vp-filter { position: sticky; top: calc(var(--nav-height) + 16px); }



.vp-filter__grup {
  border: none;
  margin-top: var(--space-lg);
  padding: 0 0 var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
}
.vp-filter__grup:first-of-type { margin-top: 0; }
.vp-filter__grup:last-of-type { border-bottom: 0; padding-bottom: 0; }

/* Wadah checkbox */
.vp-filter__isi { display: flex; flex-direction: column; gap: 9px; }



.vp-filter__judul {
  display: block;
  margin-bottom: 14px;
  padding: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}
.vp-filter__cek {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-body);
  font-size: 14px;
  cursor: pointer;
}
.vp-filter__cek:hover { color: var(--navy); }
.vp-filter__cek input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue-accent);
  cursor: pointer;
  flex: none;
}

/* Tombol reset */
.vp-filter__reset {
  display: block;
  width: 100%;
  margin-top: var(--space-lg);
  padding: 11px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-body);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.vp-filter__reset:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--off-white);
}



.vp-jumlah { color: var(--navy); font-size: 16px; font-weight: 800; }
.vp-kosong { padding: var(--space-xl) 0; color: var(--text-lembut); font-size: 14.5px; text-align: center; }

.vp-kartu {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.vp-kartu:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }


.vp-kartu__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.vp-kartu__media img { width: 100%; height: 100%; object-fit: cover; }
.vp-kartu__badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--brand-accent);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--navy) 25%, transparent);
}

.vp-kartu__isi { display: flex; flex-direction: column; flex: 1; padding: 14px 16px 16px; }
.vp-kartu__nama { margin-bottom: 10px; color: var(--navy); font-size: 15.5px; font-weight: 700; line-height: 1.35; }


.vp-kartu__spec-list { display: flex; flex-direction: column; gap: 6px; }
.vp-kartu__spec-list > div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}
.vp-kartu__spec-list dt { color: var(--text-lembut); font-size: 11.5px; line-height: 1.5; }
.vp-kartu__spec-list dd { color: var(--text-body); font-size: 12.5px; line-height: 1.5; }


.vp-kartu__spec {
  margin-top: auto;
  padding: 10px 0 0;
  border: 0;
  background: none;
  color: var(--blue-accent);
  font-size: 12.5px;
  font-weight: 700;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.vp-kartu__spec:hover { color: var(--navy); }


.grid-proyek-terkemuka {
  display: grid;
  grid-template-columns: repeat(var(--grid-terkemuka-kolom, 4), minmax(0, 1fr));
  grid-template-rows: repeat(2, var(--grid-terkemuka-baris, 300px));
  gap: var(--space-sm);
}

/* Fallback */
.grid-proyek-terkemuka--polos {
  grid-template-rows: var(--grid-terkemuka-baris, 300px);
}
.grid-proyek-terkemuka--polos .proyek-terkemuka-kartu--tinggi,
.grid-proyek-terkemuka--polos .proyek-terkemuka-kartu--lebar { grid-row: auto; grid-column: auto; }

.proyek-terkemuka-kartu--tinggi { grid-row: span 2; }
.proyek-terkemuka-kartu--lebar  { grid-column: span 2; }

.proyek-terkemuka-kartu {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.proyek-terkemuka-kartu:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.proyek-terkemuka-kartu__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.proyek-terkemuka-kartu:hover .proyek-terkemuka-kartu__img { transform: scale(1.05); }


.proyek-terkemuka-kartu__label {
  position: relative;      /* di atas .proyek-terkemuka-kartu__img yang absolute */
  z-index: 1;
  padding: 11px var(--space-sm);
  background: var(--blue-accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}


.vp-nav { display: flex; justify-content: center; gap: 6px; margin-top: var(--space-lg); }
.vp-nav__btn {
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.vp-nav__btn:hover:not(:disabled) { border-color: var(--navy); }
.vp-nav__btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.vp-nav__btn:disabled { opacity: .4; cursor: default; }




.vp-h,
.vp-v { --vp-bar-tinggi: 44px; }

.vp-h .btn--sm,
.vp-v .btn--sm { border-radius: var(--radius-md); }


.vp-h__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.vp-h__grid:has(> .vp-h__kartu:nth-child(5n+1):nth-last-child(4)) {
  justify-content: flex-start;
}

.vp-h__kartu {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc((100% - 4 * var(--space-md)) / 5);
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vp-h__kartu:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }


.vp-h__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}
.vp-h__media img { width: 100%; height: 100%; object-fit: contain; }

/* --foto */
.vp-h--foto .vp-h__media { aspect-ratio: 4 / 3; padding: 0; display: block; overflow: hidden; }
.vp-h--foto .vp-h__media img { display: block; object-fit: cover; }

/* Pita label */
.vp-h__label {
  padding: 12px 10px;
  background: var(--blue-accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
/* Pita ber-TOMBOL */
.vp-h__label--tombol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 12px 14px;
  text-align: left;
}

.vp-h:not(.vp-h--tunggal) .vp-h__label--tombol {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.vp-h:not(.vp-h--tunggal) .vp-h__label--tombol .btn { width: 100%; }

.vp-h__nama {
  min-width: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);

}


.vp-h--tunggal .vp-h__kartu { flex: 0 1 760px; }
.vp-h--tunggal .vp-h__media {
  display: block;          /* bukan grid */
  aspect-ratio: 2 / 1;
  min-height: 0;           /* WAJIB */
  overflow: hidden;
  padding: 0;
}
.vp-h--tunggal .vp-h__media img { display: block; width: 100%; height: 100%; object-fit: cover; }


/* --contain */
.vp-h--contain .vp-h__media { aspect-ratio: 4 / 3; padding: 0; }
.vp-h--contain .vp-h__media img { object-fit: contain; }

/* V */

.vp-v__tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.vp-v__tabs {
  display: flex;
  gap: var(--space-lg);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.vp-v__tabs::-webkit-scrollbar { display: none; }

.vp-v__tab {
  flex: 0 0 auto;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--text-lembut);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.vp-v__tab:hover { color: var(--navy); }
.vp-v__tab[aria-selected="true"] {
  border-bottom-color: var(--navy);
  color: var(--navy);
  font-weight: 800;
}

.vp-v__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.vp-v__kartu {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vp-v__kartu:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.vp-v__media { aspect-ratio: 4 / 3; }
.vp-v__media img { width: 100%; height: 100%; object-fit: cover; }
/* Foto belum ada */
.vp-v__media--kosong {
  display: grid;
  place-items: center;
  background: var(--gray-100);
  color: var(--text-lembut);
  font-size: 13px;
  text-align: center;
}

/* Pita bawah */
.vp-v__pita {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 12px 14px;
  background: var(--blue-accent);
}
.vp-v__nama {
  min-width: 0;                       /* biar nama panjang mau menyempit */
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}

/* Responsif H & V */
@media (max-width: 1024px) {
  .vp-h__kartu { flex-basis: calc((100% - 2 * var(--space-md)) / 3); }
  .garansi-grid--berdampingan { grid-template-columns: minmax(0, 1fr); }
  .vp-v__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .vp-h__kartu { flex-basis: calc((100% - var(--space-md)) / 2); }
  .vp-h--tunggal .vp-h__kartu { flex-basis: 100%; }
  .vp-h__label--tombol { flex-direction: column; align-items: stretch; }
  .vp-h__label--tombol .btn { width: 100%; }
  .vp-v__grid { grid-template-columns: minmax(0, 1fr); }
  .vp-v__tabs { gap: var(--space-md); }
  .vp-v__tab { font-size: 14.5px; }
  /* Pita KH ditumpuk */
  .vp-v__pita { flex-direction: column; align-items: stretch; }
  .vp-v__pita .btn { width: 100%; }
}


.spec-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;

  padding: calc(var(--nav-height) + var(--space-md)) var(--space-md) var(--space-md);
}


.spec-modal__overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--text-dark) 62%, transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.spec-modal__box {
  position: relative;
  width: min(900px, 100%);

  max-height: min(calc(100vh - var(--nav-height) - 2 * var(--space-md)), 900px);
  overflow-y: auto;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.spec-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.spec-modal__close:hover { background: var(--navy); color: var(--white); }


.spec-modal__isi {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.spec-modal__isi--tumpuk { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
/* Foto di tata letak numpuk dikecilin */
.spec-modal__isi--tumpuk .spec-modal__media { max-width: 200px; }

.spec-modal__media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
}
.spec-modal__media img { display: block; width: 100%; height: auto; }


.spec-modal__media--galeri { background: transparent; overflow: visible; }
.spec-modal__utama {
  aspect-ratio: 4 / 3;
  min-height: 0;              /* tanpa ini aspect-ratio kalah sama tinggi isi */
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--gray-100);
}
.spec-modal__utama img { width: 100%; height: 100%; object-fit: contain; }

.spec-modal__strip {
  display: flex;

  align-items: stretch;
  gap: 6px;
  margin-top: var(--space-sm);
}
.spec-modal__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.spec-modal__thumbs::-webkit-scrollbar { display: none; }

.spec-modal__thumb {
  display: flex;
  flex-direction: column;   /* biar pita label ngisi sisa tinggi kartu */
  /* elastis */
  flex: 1 1 60px;
  min-width: 60px;
  max-width: 96px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color .2s;
}
/* flex */
.spec-modal__thumb img { display: block; flex: 0 0 auto; width: 100%; height: 48px; object-fit: cover; }
.spec-modal__thumb span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  background: var(--blue-accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.spec-modal__thumb:hover { border-color: var(--blue-accent); }
.spec-modal__thumb.is-aktif { border-color: var(--navy); }

/* Panah geser */
.spec-modal__geser {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}
.spec-modal__geser:hover { background: var(--blue-accent); }
.spec-modal__kolom { min-width: 0; }
.spec-modal__judul {
  margin-bottom: var(--space-md);
  color: var(--navy);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
/* Blok terakhir di kolom kanan */
.spec-modal__kolom > :last-child { margin-bottom: 0; }


.spec-modal__kaki {
  position: sticky;
  bottom: calc(-1 * var(--space-xl));   /* nutup padding bawah kotak */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-md) 0 var(--space-xl);
  border-top: 1px solid var(--gray-100);   /* token yang ADA */
  background: var(--white);
}
.spec-modal__ajakan { color: var(--navy); font-size: 19px; font-weight: 700; }

/* body scroll dikunci saat modal kebuka */
body.no-scroll { overflow: hidden; }


.blok-gambar {
  margin-bottom: var(--space-lg);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.blok-gambar img { width: 100%; height: auto; }
.blok-gambar figcaption {
  padding: 10px 14px;
  background: var(--off-white);
  color: var(--gray-700);
  font-size: 13px;
}

.blok-label-value,
/* Scroll mendatar pindah ke pembungkus dalam */
.blok-tabel { margin-bottom: var(--space-lg); }
.blok-tabel__gulir { overflow-x: auto; }



.blok-tabel__lagi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: var(--space-md);       /* napas dari baris terakhir tabel */
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-accent);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.blok-tabel__lagi:hover { border-color: var(--blue-accent); background: var(--gray-100); }
.blok-tabel__chevron { transition: transform .2s ease; }
.blok-tabel--terbuka .blok-tabel__chevron { transform: rotate(180deg); }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table thead th {
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-align: left;
}
.spec-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.spec-table thead th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.spec-table tbody th,
.spec-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}
.spec-table tbody th { width: 180px; color: var(--navy); font-weight: 600; }
.spec-table tbody td { color: var(--text-body); }
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td { border-bottom: 0; }


.blok-teks { margin-bottom: var(--space-lg); }
.blok-teks__judul {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}
.blok-teks p { color: var(--text-body); font-size: 15px; line-height: 1.8; }




/* Kerangka 2 kolom versi BRAND PAGE */

.cta-section { background: var(--kontak-bg-konsultasi); }

.cta-blok {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: center;
  gap: 80px;
}



.kontak-panel { --wa-ikon: 80px; }

.kontak-wa-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--wa-ikon);
  height: var(--wa-ikon);
  border-radius: 22%;                /* squircle, ikut bentuk ikon aplikasi WA */
  background: var(--wa-green);
  box-shadow: 0 6px 20px color-mix(in srgb, #000 28%, transparent);
}
.kontak-wa-ikon img { width: 46px; height: 46px; }


.kontak-panel__head {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.kontak-panel__judul {
  color: var(--white);

  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  font-weight: var(--fw-h1);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
/* Sebagian kata di judul dikasih aksen */
.kontak-panel__judul strong { font-weight: var(--fw-h1); }
.kontak-panel__judul .aksen-gold  { color: var(--gold); }
.kontak-panel__judul .aksen-tipis { font-weight: 400; }


.kontak-panel { --indent: calc(var(--wa-ikon) + var(--space-md)); }

.kontak-panel__teks,
.kontak-cek { margin-left: var(--indent); }

.kontak-panel__teks {
  max-width: 520px;
  margin-bottom: var(--space-lg);
  color: color-mix(in srgb, var(--white) 88%, transparent);
  font-size: 15.5px;
  line-height: 1.75;
}

/* checklist */
.kontak-cek { display: grid; gap: 18px; }
.kontak-cek li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 14px;
  color: color-mix(in srgb, var(--white) 92%, transparent);
  font-size: 15px;
}
.kontak-cek__ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}



@media (max-width: 1024px) {
  /* Span-campurannya dilepas */
  .grid-proyek-terkemuka {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 220px;
  }
  .proyek-terkemuka-kartu--tinggi { grid-row: auto; }
  .proyek-terkemuka-kartu--lebar  { grid-column: auto; }

  .cta-blok { grid-template-columns: 1fr; gap: var(--space-xl); }
  .kontak-panel__teks { max-width: none; }

  /* Brand page */
  .tentang-produk { grid-template-columns: 1fr; gap: var(--space-lg); }


  .tentang-produk { grid-template-columns: minmax(0, 1fr); }
  .tentang-produk .btn { white-space: normal; }
  .vp-kh { grid-template-columns: 1fr; gap: var(--space-lg); }
  .vp-filter { position: static; }
  .garansi-kartu { grid-template-columns: 1fr; gap: var(--space-md); justify-items: center; text-align: center; }

  .card-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .story-row { grid-template-columns: 1fr; gap: 28px; }
  .story-row + .story-row { margin-top: var(--space-xl); }

  .carousel__arrow { display: none; }        /* mobile */

  .footer__grid,
  .footer__grid--home { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .kelebihan-armstrong { grid-template-columns: minmax(0, 1fr); }
  .kelebihan-diamond__logo { max-width: 190px; }
}

@media (max-width: 560px) {
  .kelebihan-poin { grid-template-columns: 40px minmax(0, 1fr); gap: var(--space-sm); }
  .kelebihan-poin__angka { width: 40px; height: 40px; }
  .kelebihan-diamond__logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .segera { padding: var(--space-lg) var(--space-md); }
  .segera__judul { font-size: 20px; }
}

@media (max-width: 768px) {

  .kontak-panel { --wa-ikon: 56px; --indent: 0px; }
  .kontak-wa-ikon img { width: 32px; height: 32px; }
  .kontak-panel__head { gap: var(--space-sm); }

  .page-hero--brand { min-height: 420px; }
  .spec-modal { padding: var(--space-xs); }
  .spec-modal__isi { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
  .spec-modal__media--galeri { max-width: none; }
  .spec-modal__media { max-width: 320px; }
  .spec-modal__judul { font-size: 22px; }
  .spec-modal__box { padding: var(--space-lg) var(--space-md); max-height: 92vh; }
  .spec-modal__kaki { flex-direction: column; align-items: flex-start; bottom: calc(-1 * var(--space-lg)); padding-bottom: var(--space-lg); }
  .spec-table { font-size: 13.5px; }
  .spec-table tbody th { width: 130px; }
  /* 3 per baris */
  .kelebihan-grid { justify-content: center; }
  .kelebihan-grid > .kelebihan-kartu { flex-basis: calc((100% - 2 * var(--space-sm)) / 3); }

  .cta-form { padding: var(--space-sm); }
  .tally-embed { height: 1040px; }

  .page-hero { min-height: 240px; }
  .page-hero__inner { padding-block: 40px; }
  .brand-card__logo { height: 160px; }

  .hero { height: 520px; }
  .hero__sub { font-size: 14px; margin-bottom: 18px; }
  .hero__actions .btn { padding: 10px 16px; font-size: 14px; }
  .hero__arrow { width: 40px; height: 40px; font-size: 1.1rem; }

  .card-grid--5,
  .card-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .project-card { width: 260px; height: 180px; }

  .logo-marquee__track { gap: var(--space-xl); }
  .logo-marquee__logo { height: 34px; }

  .footer__grid,
  .footer__grid--home { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .page-hero { min-height: 200px; }
  .brand-card__logo { height: 150px; }


  .kelebihan-grid > .kelebihan-kartu { flex-basis: calc((100% - var(--space-sm)) / 2); }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .card-grid--3 { grid-template-columns: 1fr; }
  .product-card { aspect-ratio: 4 / 3; }

  .project-card { width: 240px; height: 160px; }

  .wa-float { right: 20px; bottom: 20px; width: 50px; height: 50px; }
}
