:root {
  --yellow: #FFEE8C;
  --ink: #1A1918;
  --bg-light: #FAF9F6;
  --surface: #FFFFFF;
  --line: rgba(26, 25, 24, .10);
  --whatsapp: #25D366;
  --surface-alt: rgba(26, 25, 24, .05);
  --ink-soft: rgba(26, 25, 24, .58);
  --ink-faint: rgba(26, 25, 24, .5);
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  background: var(--bg-light);
  color: var(--ink);
  font-family: 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(250, 249, 246, .94);
  backdrop-filter: blur(12px);
}
.nav { height: 70px; display: flex; align-items: center; justify-content: space-between }
.brand { font: 700 28px/1 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.03em }
.brand b { color: var(--ink); background: var(--yellow); padding: 0 4px; border-radius: 3px }
.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 16px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .04em }
.nav-cta:hover, .button:hover { background: #000 }
.back { font-size: 12px; color: var(--ink-soft); font-weight: 600 }

/* ===================== Hero (homepage) ===================== */
.hero {
  min-height: 480px; display: flex; align-items: flex-end; position: relative; isolation: isolate;
  overflow: hidden; color: #fff;
  background: linear-gradient(90deg, rgba(20,19,18,.96) 0%, rgba(20,19,18,.85) 38%, rgba(20,19,18,.3) 70%, transparent 100%),
    url('../assets/thumbnail.png') center right / cover no-repeat;
}
.hero:after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 65%) }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
.hero-video.is-ready { opacity: 1 }
.hero-inner { padding: 80px 0 67px }
.eyebrow { margin: 0 0 15px; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase }
.hero .eyebrow { color: var(--yellow) }
.hero h1 { max-width: 760px; margin: 0; font: 700 clamp(34px, 4.6vw, 58px)/1.08 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.03em }
.hero em { color: var(--yellow); font-style: normal; font-weight: 700 }
.hero p:last-child { max-width: 520px; margin: 23px 0 0; color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.7 }

/* ===================== 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: 700 42px/1.05 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.03em }
.catalog-note { max-width: 330px; margin: 0; color: var(--ink-faint); 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: 600 12px/1 Inter, Arial, sans-serif;
  letter-spacing: .04em; white-space: nowrap; cursor: pointer; transition: .2s;
}
.filter-pill:hover { border-color: var(--ink) }
.filter-pill:active { transform: scale(.97) }
.filter-pill.active { background: var(--yellow); border-color: var(--yellow); color: var(--ink) }

.sub-filter-row {
  margin-top: -14px; padding-top: 0; padding-bottom: 20px;
}
.sub-pill {
  padding: 7px 16px; font-size: 11px; border-color: var(--line); opacity: .85;
}
.sub-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; opacity: 1 }

.empty-state {
  grid-column: 1/-1; padding: 60px 20px; text-align: center;
  color: var(--ink-faint); 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(--surface-alt); border: 1px solid var(--line) }
.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(--yellow); color: var(--ink); font: 700 9px/1 Inter, Arial, sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
}
.category { margin: 15px 0 5px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase }
.card h3 { margin: 15px 0 0; font: 700 20px/1.15 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.02em }
.price { margin: 8px 0 0; color: var(--ink-faint); font-size: 12px }

/* ===================== CTA / About (homepage) ===================== */
.cta-section { padding: 92px 0; background: var(--surface); text-align: center }
.cta-section h2 { max-width: 820px; margin: 0 auto; font: 700 clamp(32px, 4.2vw, 54px)/1.1 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.03em }
.cta-sub { max-width: 590px; margin: 22px auto 27px; color: var(--ink-soft); font-size: 16px; line-height: 1.6 }
.button { min-width: 240px; padding: 19px 34px; border-radius: 999px; font-size: 16px; font-weight: 700 }
.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: var(--ink-soft); font: 500 18px/1.6 Inter, Arial, sans-serif }
.about strong { color: var(--ink) }
.about h3 { margin: 25px 0 0; text-align: center; font: 700 clamp(22px, 3.4vw, 34px)/1.1 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.03em }

/* ===================== Footer (shared) ===================== */
.footer { background: var(--ink); color: #fff }
.footer-inner { padding: 73px 0 0 }
.footer h2 { margin: 0; text-align: center; font: 700 40px/1 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.03em }
.footer-rule { width: 52px; height: 1px; margin: 24px auto 46px; background: var(--yellow) }
.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: var(--yellow) }
.icon svg { width: 24px; height: 24px }
.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(--surface-alt); overflow: hidden; border-radius: 4px; border: 1px solid var(--line);
}
.image-main img { width: 100%; height: 100%; object-fit: cover }
.image-main model-viewer { width: 100%; height: 100%; --poster-color: transparent }

@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: 600 12px/1 Inter, Arial, sans-serif; letter-spacing: .03em; cursor: pointer; transition: .2s;
}
.mode-btn:hover { border-color: var(--ink) }
.mode-btn.active { background: var(--ink); border-color: var(--ink); color: #fff }

/* --- Photo carousel --- */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
  border-radius: 50%; border: 0; background: rgba(250,249,246,.92); color: var(--ink);
  font-size: 16px; cursor: pointer; display: grid; place-items: center; transition: .2s;
}
.carousel-arrow:hover { background: #fff }
.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(--yellow); width: 18px; border-radius: 4px }

/* --- 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: 700 clamp(34px, 4.2vw, 50px)/1.05 'Plus Jakarta Sans', Arial, sans-serif; letter-spacing: -.03em }
.desc { margin: 20px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75 }
.section { margin-top: 32px }
.section-title { margin: 0 0 10px; color: var(--ink-faint); font-size: 10px; font-weight: 700; 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: 600 12px/1 Inter, Arial, sans-serif; letter-spacing: .03em; cursor: pointer; transition: .2s;
}
.option-pill:hover, .addon-pill:hover { border-color: var(--ink) }
.option-pill.active { background: var(--ink); border-color: var(--ink); color: #fff }
.addon-pill.active { background: var(--yellow); border-color: var(--yellow); color: var(--ink) }
.addon-pill .addon-price { margin-left: 6px; opacity: .7; font-size: 11px }
.addon-hint { margin: 10px 0 0; color: var(--ink-faint); font-size: 11px; font-style: italic }

.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: var(--ink-soft) }
.spec span:last-child { text-align: right; font-weight: 600 }

.price-headline { margin: 18px 0 0; font: 700 26px/1.15 'Plus Jakarta Sans', Arial, sans-serif; color: var(--ink) }
.price-headline small { display: block; margin-top: 6px; font: 600 11px Inter, Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint) }

.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(--ink); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase }
.tier-prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px }
.tier-price {
  display: block; width: 100%; padding: 8px; border: 1px solid var(--line); border-radius: 8px;
  background: transparent; font-family: inherit; text-align: left; cursor: pointer; transition: .2s;
}
.tier-price:hover { background: var(--surface-alt); border-color: var(--ink) }
.tier-price:active { transform: scale(.97) }
.tier-price.active { background: var(--yellow); border-color: var(--yellow) }
.tier-price.active span { color: var(--ink); opacity: .7 }
.tier-price.active strong { color: var(--ink) }
.tier-prices span { font-size: 10px; color: var(--ink-faint) }
.tier-prices strong { display: block; margin-top: 4px; color: var(--ink); font-size: 13px; font-weight: 700 }
.notice { padding: 20px; background: var(--surface-alt); border: 1px dashed var(--line); color: var(--ink); font-size: 13px; line-height: 1.65; font-weight: 500 }

.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: 700;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 4px; transition: .2s;
}
.wa-button:hover { background: #1ea952 }

/* ===================== 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: 700 11px/1 Inter, Arial, sans-serif; letter-spacing: .19em; text-transform: uppercase; color: var(--ink) }

/* ===================== 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: 36px }
  .contacts { grid-template-columns: repeat(2, 1fr); gap: 34px 15px }
  .hero { min-height: 410px }
  .hero-inner { padding-bottom: 54px }
  .wrap { width: min(100% - 32px, 1180px) }
  .about p { font-size: 16px }
  .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: 18px }
  .nav-cta { padding: 10px 12px; font-size: 10px }
  .brand { font-size: 24px }
  .price { font-size: 11px }
}

.steps-section {
  padding: 60px 0;
  background: #f7f2eb;
}
.steps-title {
  margin: 0.3rem 0 1.4rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  color: #3a2b21;
  text-align: center;
}
.steps-section .eyebrow {
  text-align: center;
}
.timeline { position: relative; max-width: 640px; margin: 0 auto; padding-left: 8px }
.timeline-step { position: relative; display: flex; gap: 22px; padding-bottom: 36px }
.timeline-step:last-child { padding-bottom: 0 }
.timeline-step::before {
  content: ''; position: absolute; left: 19px; top: 40px; bottom: -4px; width: 2px; background: var(--line);
}
.timeline-step:last-child::before { display: none }
.timeline-num {
  flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff; font: 700 14px/1 'Plus Jakarta Sans', Arial, sans-serif; z-index: 1;
}
.timeline-text { padding-top: 6px }
.timeline-text h3 { margin: 0 0 6px; font: 700 16px/1.3 'Plus Jakarta Sans', Arial, sans-serif; color: var(--ink) }
.timeline-text p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65 }
@media(max-width:800px) {
  .timeline-step { gap: 16px; padding-bottom: 28px }
  .timeline-num { width: 34px; height: 34px; font-size: 12px }
  .timeline-step::before { left: 16px; top: 34px }
  .timeline-text h3 { font-size: 15px }
  .timeline-text p { font-size: 13px }
}

/* ===================== FAQ accordion ===================== */
.faq-section { padding: 76px 0 92px }
.faq-title {
  margin: 0 0 32px; text-align: center; font: 700 clamp(28px, 4vw, 44px)/1.1 'Plus Jakarta Sans', Arial, sans-serif;
  letter-spacing: -.03em; color: var(--ink);
}
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; overflow: hidden }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; border: 0; background: transparent; cursor: pointer; text-align: left;
  color: var(--ink); font: 600 15px/1.5 Inter, Arial, sans-serif;
}
.faq-question:hover { background: var(--surface-alt) }
.faq-chevron { flex: 0 0 auto; color: var(--ink-soft); transition: transform .25s ease }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--ink) }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease }
.faq-answer p { margin: 0; padding: 0 24px 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.75 }
@media(max-width:800px) {
  .faq-question { padding: 16px 18px; font-size: 14px }
  .faq-answer p { padding: 0 18px 16px }
}

/* ===================== Instagram embed ===================== */
.instagram-section { padding: 70px 0 90px; text-align: center; background: var(--bg-light) }
.instagram-card {
  display: block; max-width: 420px; margin: 0 auto; text-align: left; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(26,25,24,.08); transition: transform .25s ease, box-shadow .25s ease;
}
.instagram-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(26,25,24,.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);
}
.instagram-id { flex: 1; min-width: 0 }
.instagram-handle { margin: 0; font: 700 15px 'Plus Jakarta Sans', Arial, sans-serif; color: var(--ink) }
.instagram-sub { margin: 2px 0 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.35 }
.instagram-follow {
  flex: none; padding: 8px 14px; border-radius: 999px; background: var(--ink); 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 }

/* Instagram + TikTok side by side on desktop, stacked on mobile */
.social-cards-row { display: flex; align-items: flex-start; justify-content: center; gap: 24px; flex-wrap: wrap }
.social-cards-row .instagram-card { flex: 1 1 380px; max-width: 420px; margin: 0 }
.tiktok-avatar { background: #000 }
.tiktok-follow { background: #000 }
.tiktok-card:hover .tiktok-follow { background: #000 }

@media (max-width: 760px) {
  .social-cards-row { flex-direction: column; align-items: center }
}

/* ===================== Our Valued Customers ===================== */
.customers-section { padding: 70px 0 90px; text-align: center; background: var(--surface) }
.customers-section .eyebrow, .customers-title { text-align: center }
.customers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.customer-logo {
  aspect-ratio: 16 / 10; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center; padding: 18px; transition: box-shadow .2s ease;
}
.customer-logo:hover { box-shadow: 0 10px 24px rgba(26,25,24,.08) }
.customer-logo img { max-width: 100%; max-height: 100%; object-fit: contain }

@media (max-width: 760px) {
  .customers-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 480px) {
  .instagram-section { padding: 50px 0 60px }
  .customers-section { padding: 50px 0 60px }
  .customers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px }
}
/* ===================== Term and Condition (DeonKraft) ===================== */
.tnc-section { 
  padding: 60px 0; /* Menyesuaikan jarak standar antar section DeonKraft */
}
.tnc-title {
  margin: 0 0 28px;
  /* Menggunakan Plus Jakarta Sans dan ukuran responsif bawaan DeonKraft */
  font: 700 clamp(28px, 4vw, 44px)/1.1 'Plus Jakarta Sans', Arial, sans-serif;
  letter-spacing: -.03em;
  color: var(--ink); 
}
.tnc-content p { 
  margin: 0 0 20px; 
  color: var(--ink-soft); /* Warna abu-abu elegan dari sistem DeonKraft */
  font-size: 15px; 
  line-height: 1.75; 
}
.tnc-content .button { 
  margin-top: 16px; 
}

@media(max-width:800px) {
  .tnc-section { padding: 50px 0; }
  .tnc-content p { font-size: 14px; }
}

/* ===================== 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;
}

/* Static poster-style testimonial cards (About Us section) — the source
   image already contains the quote/photo/branding, so it just fills the
   existing card frame instead of using the testi-bg/quote-mark/testi-box
   layers above. */
.testi-card--static { background: #fff }
.testi-static-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center }

.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 */
}

/* TEMA: DEONKRAFT */
.testi-bg { 
  background: var(--ink); /* Hitam pekat bawaan DeonKraft */
}
.quote-mark { 
  color: var(--yellow); 
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}
.testi-box {
  border-radius: 8px; /* Lebih kotak, tidak terlalu melengkung */
  border: 1px solid var(--line);
}
.testi-headline { 
  color: var(--ink); 
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}
.testi-text { 
  color: var(--ink-soft); 
}
.testi-author { 
  color: var(--ink); 
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-weight: 700;
}
.testi-photo {
  border-radius: 4px;
  transform: rotate(0deg); /* Lurus, kesan korporat yang rapi */
  border: 2px solid var(--yellow);
}
.testi-card:hover .testi-photo {
  transform: translateY(-5px);
}
/* --- Add-on reference preview (shown on TAMBAHAN click) --- */
.addon-preview {
  position: relative; margin-top: 16px; padding: 16px; border-radius: 14px;
  background: var(--surface-alt); 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(255,255,255,.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(--ink); box-shadow: 0 0 0 1px var(--line) }

/* 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(--surface); border: 1px solid var(--line); 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: var(--ink-faint); font-size: 12px; font-weight: 600; text-align: center;
}