:root {
  --ivory: #f8f5f0;
  --ink: #292522;
  --terracotta: #E35336;
  --terracotta-dark: #9E3B27;
  --terracotta-soft: #F8EFEA;
  --clay-sand: #EADFD8;
  --sand: #e9e1d5;
  --line: rgba(41, 37, 34, .12);
  --whatsapp: #25D366;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', Inter, Arial, sans-serif;
}
a { text-decoration: none; color: inherit }
.wrap { width: min(1180px, calc(100% - 40px)); margin: auto }

/* ===================== Header (shared) ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 240, .94);
  backdrop-filter: blur(12px);
}
.nav { height: 70px; display: flex; align-items: center; justify-content: space-between }
.brand { font: 600 34px/1 'Cormorant Garamond', serif; letter-spacing: -.03em }
.brand b { color: var(--terracotta) }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: #fff; border: 0; cursor: pointer; transition: .2s;
}
.nav-cta { padding: 11px 18px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .04em }
.nav-cta:hover, .button:hover { background: var(--terracotta-dark) }
.back { font-size: 12px; color: var(--terracotta-dark) }

/* ===================== Hero (homepage) ===================== */
.hero {
  min-height: 460px; display: flex; align-items: end; position: relative; isolation: isolate;
  overflow: hidden; color: #fff;
  background: linear-gradient(90deg, rgba(20,15,11,.94) 0%, rgba(20,15,11,.8) 38%, rgba(20,15,11,.35) 68%, rgba(20,15,11,.1) 100%), url('../assets/thumbnail.png') center/cover;
}
.hero:after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 65%) }
.hero-video {
  display: none; position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero.has-video .hero-video { display: block }
.hero-inner { position: relative; z-index: 1; padding: 80px 0 67px }
.eyebrow { margin: 0 0 15px; color: var(--terracotta); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase }
.hero .eyebrow { color: #f0b7a5 }
.hero h1 { max-width: 740px; margin: 0; font: 600 clamp(55px, 8vw, 98px)/.86 'Cormorant Garamond', serif; letter-spacing: -.04em }
.hero em { color: #f0a688; font-weight: 500 }
.hero p:last-child { max-width: 490px; margin: 23px 0 0; color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.7 }

/* --- Hero trust-building stats bar --- */
.hero-stats {
  display: flex; align-items: stretch; gap: 0; margin-top: 34px; max-width: 620px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px; backdrop-filter: blur(6px);
}
.stat-item { flex: 1; padding: 16px 18px; text-align: left }
.stat-label {
  display: block; margin: 0 0 6px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}
.stat-value {
  display: block; color: #fff; font: 600 19px/1.1 'Cormorant Garamond', serif; letter-spacing: -.01em;
}
.stat-divider { width: 1px; background: rgba(255,255,255,.16); margin: 16px 0 }

/* ===================== Category filter row ===================== */
.catalog { padding: 76px 0 86px }
.catalog-top { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px }
.catalog h2 { margin: 0; font: 600 52px/.9 'Cormorant Garamond', serif; letter-spacing: -.03em }
.catalog-note { max-width: 330px; margin: 0; color: rgba(41,37,34,.56); font-size: 12px; line-height: 1.7; text-align: right }

.filter-row {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 24px;
  margin-bottom: 28px; border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}
.filter-row::-webkit-scrollbar { height: 4px }
.filter-row::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px }
.filter-pill {
  flex: 0 0 auto; padding: 10px 22px; border: 1px solid var(--line); border-radius: 999px;
  background: transparent; color: var(--ink); font: 500 12px/1 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  letter-spacing: .03em; white-space: nowrap; cursor: pointer; transition: .2s;
}
.filter-pill:hover { border-color: var(--terracotta) }
.filter-pill:active { transform: scale(.97) }
.filter-pill.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff }

.empty-state {
  grid-column: 1/-1; padding: 60px 20px; text-align: center;
  color: rgba(41,37,34,.5); font-size: 14px; line-height: 1.7;
}

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px }
.card { display: block }
.photo { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand) }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.65,.2,1) }
.card:hover .photo img { transform: scale(1.045) }
.badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 999px;
  background: var(--terracotta-soft); color: var(--terracotta-dark); font: 600 9px/1 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
}
.category { margin: 15px 0 5px; color: rgba(158,59,39,.65); font-size: 9px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase }
.card h3 { margin: 15px 0 0; font: 700 23px/1.08 'Cormorant Garamond', serif }
.price { margin: 8px 0 0; color: rgba(41,37,34,.58); font-size: 12px }

/* ===================== CTA / About (homepage) ===================== */
.cta-section { padding: 92px 0; background: #fff; text-align: center }
.cta-section h2 { max-width: 800px; margin: 0 auto; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.15; letter-spacing: -.03em }
.cta-sub { max-width: 590px; margin: 22px auto 27px; color: #665b54; font-size: 16px; line-height: 1.6 }
.button { min-width: 220px; padding: 18px 36px; border-radius: 999px; font-size: 16px; font-weight: 600; gap: 10px }
.about { max-width: 950px; margin: 77px auto 0; padding-top: 32px; border-top: 1px solid var(--line); text-align: left }
.about p { margin: 0; color: #5c514b; font: 500 22px/1.48 'Cormorant Garamond', serif }
.about strong { color: var(--ink) }
.about h3 { margin: 25px 0 0; text-align: center; font-size: clamp(27px, 4vw, 45px); letter-spacing: -.03em; font-weight: 600 }

/* ===================== Footer (shared) ===================== */
.footer { background: #38271c; color: #fff }
.footer-inner { padding: 73px 0 0 }
.footer h2 { margin: 0; text-align: center; font: 600 52px/1 'Cormorant Garamond', serif }
.footer-rule { width: 52px; height: 1px; margin: 24px auto 46px; background: var(--terracotta) }
.contacts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 48px; text-align: center }
.icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 15px; border-radius: 50%; background: rgba(255,255,255,.1); color: #f0a688; font-size: 25px }
.contacts h3 { margin: 0 0 9px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase }
.contacts p, .contacts a { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.65 }
.map { overflow: hidden; border: 1px solid rgba(255,255,255,.2) }
.map iframe { display: block; width: 100%; height: 320px; border: 0 }
.copyright { margin-top: 43px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-align: center }

/* ===================== Detail page layout ===================== */
.layout { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; padding: 64px 0 84px }

/* --- Media panel --- */
.media-panel { position: relative }
.image-main {
  position: relative; aspect-ratio: 1/1.16; background: var(--sand); overflow: hidden; border-radius: 4px;
}
.image-main img { width: 100%; height: 100%; object-fit: cover }
.image-main model-viewer { width: 100%; height: 100%; --poster-color: transparent }

.ar-poster {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: var(--sand); color: var(--terracotta-dark); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; text-align: center; padding: 0 24px;
}
.ar-cta {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border: 1.5px solid var(--terracotta); border-radius: 999px;
  background: rgba(248,245,240,.9); color: var(--terracotta-dark); font: 600 11px/1 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: .2s;
}
.ar-cta:hover { background: var(--terracotta); color: #fff }

/* onboarding micro-interaction over the 3D viewer */
.onboard-hint {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  padding: 9px 18px; border-radius: 999px; background: rgba(41,37,34,.78); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em; white-space: nowrap;
  pointer-events: none; opacity: 0; animation: onboardFade 4s ease forwards;
}
@keyframes onboardFade {
  0% { opacity: 0; transform: translateX(-50%) translateY(6px) }
  10% { opacity: 1; transform: translateX(-50%) translateY(0) }
  80% { opacity: 1 }
  100% { opacity: 0 }
}
@media (prefers-reduced-motion: reduce) {
  .onboard-hint { animation: none; opacity: 0 }
}

/* --- Media mode toggles (AR / Foto / Video) --- */
.mode-toggle { display: flex; gap: 10px; margin-top: 20px }
.mode-btn {
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 999px; background: transparent;
  color: var(--ink); font: 500 12px/1 'Plus Jakarta Sans', Inter, Arial, sans-serif; letter-spacing: .03em; cursor: pointer; transition: .2s;
}
.mode-btn:hover { border-color: var(--terracotta) }
.mode-btn.active { background: var(--ink); border-color: var(--ink); color: #fff }
.mode-btn.mode-ar {
  border: 1.5px solid var(--terracotta); color: var(--terracotta-dark); background: transparent; font-weight: 600;
}
.mode-btn.mode-ar.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff }

/* --- Photo carousel --- */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
  border-radius: 50%; border: 0; background: rgba(248,245,240,.9); color: var(--ink);
  font-size: 16px; cursor: pointer; display: grid; place-items: center; transition: .2s;
}
.carousel-arrow:hover { background: #fff; color: var(--terracotta) }
.carousel-arrow.prev { left: 12px }
.carousel-arrow.next { right: 12px }
.carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px }
.carousel-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--line); transition: .2s }
.carousel-dots span.active { background: var(--terracotta); width: 18px; border-radius: 4px }

.hint {
  margin: 20px 0 0; padding: 12px 16px; border-radius: 14px; background: var(--clay-sand);
  color: var(--ink); font-size: 13px; font-weight: 600; text-align: center;
}

/* --- Add-on reference preview (shown on TAMBAHAN click) --- */
.addon-preview {
  position: relative; margin-top: 16px; padding: 16px; border-radius: 14px;
  background: var(--sand); overflow: hidden;
  opacity: 0; transform: translateY(8px); max-height: 0; padding-top: 0; padding-bottom: 0;
  transition: opacity .28s ease, transform .28s ease, max-height .28s ease, padding .28s ease;
}
.addon-preview.visible { opacity: 1; transform: translateY(0); max-height: 900px; padding: 16px }
.addon-preview-close {
  position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%; border: 0;
  background: rgba(248,245,240,.9); color: var(--ink); font-size: 15px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: .2s; z-index: 1;
}
.addon-preview-close:hover { background: #fff; color: var(--terracotta) }

/* One card per selected add-on, wrapping into rows as more get selected */
.addon-preview-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px }
.addon-card {
  flex: 1 1 calc(50% - 6px); min-width: 120px; border-radius: 10px; overflow: hidden;
  background: var(--clay-sand); display: flex; flex-direction: column;
}
.addon-card img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover }
.addon-preview-label {
  margin: 0; padding: 8px 10px; color: rgba(41,37,34,.75); font-size: 12px; font-weight: 600; text-align: center;
}

/* --- Video facade --- */
.video-facade {
  position: relative; width: 100%; height: 100%; cursor: pointer; background: #000;
  display: flex; align-items: center; justify-content: center;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .75 }
.video-play {
  position: absolute; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; transition: .2s;
}
.video-facade:hover .video-play { background: #fff; transform: scale(1.06) }
.video-facade iframe { width: 100%; height: 100%; border: 0 }

/* --- Text column --- */
h1 { margin: 0; font: 600 clamp(41px, 5vw, 62px)/.92 'Cormorant Garamond', serif; letter-spacing: -.03em }
.desc { margin: 20px 0 0; color: rgba(41,37,34,.62); font-size: 14px; line-height: 1.75 }
.section { margin-top: 32px }
.section-title { margin: 0 0 10px; color: rgba(41,37,34,.55); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase }

.option-list, .addon-list { display: flex; flex-wrap: wrap; gap: 10px }
.option-pill, .addon-pill {
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 999px; background: transparent;
  color: var(--ink); font: 500 12px/1 'Plus Jakarta Sans', Inter, Arial, sans-serif; letter-spacing: .03em; cursor: pointer; transition: .2s;
}
.option-pill:hover, .addon-pill:hover { border-color: var(--terracotta) }
.option-pill.active { background: var(--ink); border-color: var(--ink); color: #fff }
.addon-pill.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff }
.addon-pill .addon-price { margin-left: 6px; opacity: .7; font-size: 11px }

.spec { border-top: 1px solid var(--line) }
.spec div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px }
.spec span:first-child { color: rgba(41,37,34,.55) }
.spec span:last-child { text-align: right }

.price-headline { margin: 18px 0 0; font: 600 30px/1 'Cormorant Garamond', serif; color: var(--terracotta-dark) }
.price-headline small { display: block; margin-top: 6px; font: 500 11px 'Plus Jakarta Sans', Inter, Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; color: rgba(41,37,34,.5) }

.tiers { border-top: 1px solid var(--line) }
.tier { padding: 15px 0; border-bottom: 1px solid var(--line) }
.tier-name { margin: 0 0 11px; color: var(--terracotta-dark); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase }
.tier-prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px }
.tier-option {
  display: block; width: 100%; padding: 10px 8px; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; text-align: left; cursor: pointer; transition: .2s;
  font-family: 'Plus Jakarta Sans', Inter, Arial, sans-serif;
}
.tier-option:hover { border-color: var(--terracotta) }
.tier-option.active { border-color: var(--terracotta); background: var(--terracotta-soft) }
.tier-option span { display: block; font-size: 10px; color: rgba(41,37,34,.52) }
.tier-option strong { display: block; margin-top: 4px; color: var(--ink); font-size: 13px; font-weight: 500 }
.tier-option.active strong { color: var(--terracotta-dark) }
.notice { padding: 20px; background: var(--clay-sand); color: #655a52; font-size: 13px; line-height: 1.65 }

.wa-button {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 30px; padding: 15px;
  background: var(--whatsapp); color: #fff; text-decoration: none; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 4px; transition: .2s;
}
.wa-button:hover { background: #1ea952 }
.wa-button svg { flex: 0 0 auto }

/* ===================== Divider (category header inside grid) ===================== */
.divider { grid-column: 1/-1; display: flex; align-items: center; gap: 18px; padding-top: 6px }
.divider:first-child { padding-top: 0 }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line) }
.divider span { white-space: nowrap; font: 600 11px/1 'Plus Jakarta Sans', Inter, Arial, sans-serif; letter-spacing: .19em; text-transform: uppercase; color: var(--terracotta-dark) }

/* ===================== Responsive ===================== */
@media(max-width:800px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 26px 14px }
  .catalog-top { display: block }
  .catalog-note { margin-top: 16px; text-align: left }
  .catalog h2 { font-size: 45px }
  .contacts { grid-template-columns: repeat(2, 1fr); gap: 34px 15px }
  .hero { min-height: 410px }
  .hero-inner { padding-bottom: 54px }
  .hero-stats { max-width: 100%; flex-wrap: wrap }
  .stat-item { flex: 1 1 45%; padding: 14px }
  .stat-divider { display: none }
  .wrap { width: min(100% - 32px, 1180px) }
  .about p { font-size: 19px }
  .layout { grid-template-columns: 1fr; gap: 33px; padding-top: 35px }
  .tier-prices { grid-template-columns: repeat(2, 1fr); gap: 12px }
}
@media(max-width:430px) {
  .card h3 { font-size: 20px }
  .nav-cta { padding: 10px 12px; font-size: 10px }
  .brand { font-size: 31px }
  .price { font-size: 11px }
}

.steps-section {
  padding: 90px 0;
  background: var(--ivory);
  text-align: center;
}
.steps-section .eyebrow { text-align: center }
.steps-title {
  margin: 0.3rem 0 0.9rem;
  font: 600 clamp(2rem, 3vw, 3.2rem)/1.05 'Cormorant Garamond', serif;
  letter-spacing: -.03em;
  color: var(--ink);
}
.steps-subtitle {
  max-width: 520px;
  margin: 0 auto 56px;
  color: rgba(41,37,34,.6);
  font-size: 14px;
  line-height: 1.7;
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 21px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0 }
.timeline-num {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font: 700 15px/1 'Plus Jakarta Sans', Inter, Arial, sans-serif;
}
.timeline-content { padding-top: 6px }
.timeline-content h3 {
  margin: 0 0 6px;
  font: 600 17px/1.3 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  color: var(--ink);
}
.timeline-content p {
  margin: 0;
  color: rgba(41,37,34,.68);
  font-size: 14px;
  line-height: 1.6;
}
@media(max-width:800px) {
  .steps-section { padding: 60px 0 }
  .timeline::before { left: 17px }
  .timeline-num { width: 36px; height: 36px; font-size: 13px }
  .timeline-item { gap: 16px; padding-bottom: 28px }
}

/* ===================== Social section: Instagram + TikTok (above footer) ===================== */
.social-section { padding: 70px 0 90px; background: var(--ivory); text-align: center }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start }
.instagram-card {
  display: block; margin: 0 auto; text-align: left; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(41,37,34,.08); transition: transform .25s ease, box-shadow .25s ease;
}
.instagram-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(41,37,34,.14) }
.instagram-card-top { display: flex; align-items: center; gap: 12px; padding: 18px 20px }
.instagram-avatar {
  flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
}
.tiktok-avatar { background: linear-gradient(135deg, #25f4ee, #010101 55%, #fe2c55) }
.instagram-id { flex: 1; min-width: 0 }
.instagram-handle { margin: 0; font-weight: 700; font-size: 15px; color: var(--ink) }
.instagram-sub { margin: 2px 0 0; font-size: 12.5px; color: rgba(41,37,34,.6); line-height: 1.35 }
.instagram-follow {
  flex: none; padding: 8px 14px; border-radius: 999px; background: var(--terracotta); color: #fff;
  font-size: 12.5px; font-weight: 700;
}
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line) }
.instagram-grid img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover }

@media (max-width: 720px) {
  .social-grid { grid-template-columns: 1fr }
}
@media (max-width: 480px) {
  .social-section { padding: 50px 0 60px }
}

/* ===================== Our Valued Customer (logo grid, scalable) ===================== */
.customers-section { padding: 70px 0 90px; background: #fff }
.customers-grid {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 40px;
}
.customer-logo {
  flex: 0 0 calc(25% - 14px); max-width: calc(25% - 14px); aspect-ratio: 3 / 2;
  display: grid; place-items: center; padding: 18px; box-sizing: border-box;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.customer-logo:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(41,37,34,.1) }
.customer-logo img { max-width: 100%; max-height: 100%; object-fit: contain }

@media (max-width: 720px) {
  .customer-logo { flex: 0 0 calc(33.333% - 12px); max-width: calc(33.333% - 12px) }
}
@media (max-width: 480px) {
  .customers-section { padding: 50px 0 60px }
  .customer-logo { flex: 0 0 calc(50% - 9px); max-width: calc(50% - 9px) }
}

/* ===================== FAQ accordion ===================== */
.faq-section { padding: 90px 0; background: var(--clay-sand) }
.faq-title { margin: 0 0 40px; text-align: center; font: 600 clamp(34px, 4.5vw, 52px)/1 'Cormorant Garamond', serif; letter-spacing: -.03em }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--terracotta) }
.faq-item[open] { border-color: var(--terracotta); box-shadow: 0 6px 20px rgba(227,83,54,.08) }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font: 600 15px/1.4 'Plus Jakarta Sans', Inter, Arial, sans-serif; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item[open] summary { color: var(--terracotta-dark) }
.faq-item .chevron { flex: 0 0 auto; color: var(--terracotta); transition: transform .25s ease }
.faq-item[open] .chevron { transform: rotate(180deg) }
.faq-item p {
  margin: 0; padding: 0 24px 22px; color: rgba(41,37,34,.62); font-size: 14px; line-height: 1.7;
}
@media(max-width:800px) {
  .faq-section { padding: 60px 0 }
  .faq-item summary { padding: 16px 18px; font-size: 14px }
  .faq-item p { padding: 0 18px 18px; font-size: 13px }
}
/* ===================== Term and Condition (Grizelle) ===================== */
.tnc-section { 
  padding: 90px 0; 
  background: #ffffff; /* Latar putih agar kontras dengan section Steps (ivory) & FAQ (clay-sand) */
  text-align: center; 
}
.tnc-title {
  margin: 0.3rem 0 1.2rem;
  font: 600 clamp(2rem, 3vw, 3.2rem)/1.05 'Cormorant Garamond', serif;
  letter-spacing: -.03em;
  color: var(--ink);
}
.tnc-content { 
  max-width: 680px; 
  margin: 0 auto; 
  color: rgba(41, 37, 34, 0.72); 
  font-size: 15px; 
  line-height: 1.7; 
}
.tnc-content p { 
  margin-bottom: 20px; 
}
.tnc-content .button { 
  margin-top: 12px; 
}

@media(max-width:800px) {
  .tnc-section { padding: 60px 0; }
}
/* ===================== BASE TESTIMONIAL & MARQUEE ===================== */
.testimonial-section {
  padding: 60px 0 80px;
  overflow: hidden; /* Mencegah scroll horizontal di seluruh halaman */
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* Animasi bergerak 35 detik ke kiri, putaran tak terbatas */
  animation: scroll-left 35s linear infinite; 
}

/* Opsional: Berhenti bergulir jika kursor diletakkan di atas kartu */
.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  /* Bergeser sejauh -50% (setengah dari total lebar track + jarak gap) */
  100% { transform: translateX(calc(-50% - 12px)); } 
}

/* --- Kerangka Kartu --- */
.testi-card {
  position: relative;
  width: 280px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.testi-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.testi-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}

.quote-mark {
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -20px;
  z-index: 3;
}

.testi-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  z-index: 4;
}

.testi-headline {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.testi-text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.testi-author {
  font-size: 18px;
  margin-top: 10px;
}

/* --- Foto Gaya Polaroid --- */
.testi-photo {
  position: absolute;
  bottom: -20px;
  right: -15px;
  width: 75px;
  height: 90px;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 2px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.15);
  transform: rotate(6deg); /* Memiringkan foto */
  transition: transform 0.3s ease;
}

.testi-card:hover .testi-photo {
  transform: rotate(0deg) scale(1.05); /* Interaksi saat di-hover */
}

/* --- Kartu gambar statis (About Us) --- */
.testi-img-card {
  background: #f4ede8;
}
.testi-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* TEMA: GRIZELLE */
.testi-bg { 
  background: #D98C75; /* Terracotta Grizelle */
}
.quote-mark { 
  color: rgba(250, 240, 235, 0.7); 
}
.testi-headline { 
  color: #5A3D31; 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 18px;
}
.testi-text { 
  color: #555; 
}
.testi-author { 
  color: #D98C75; 
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
}
/* ===================== Pemisah Kategori AddOn ===================== */
.addon-group-container {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: stretch;
}

.addon-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.addon-group-title {
  margin: 0 0 10px 0;
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.addon-group-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-divider {
  width: 1px;
  background: var(--line);
  flex-shrink: 0;
}

/* Merespons layout di HP/Layar kecil (garis vertikal berubah ke horizontal) */
@media(max-width:600px) {
  .addon-group-container {
    flex-direction: column;
    gap: 16px;
  }
  .addon-divider {
    width: 100%;
    height: 1px;
    margin: 4px 0;
  }
}