/* =========================================================
   Suzuki Kebon Jeruk - Sales Counter Resmi
   Palet: Maruti Suzuki (Biru #01458E, Merah #DA241C, Gelap #1F1A17)
   Background dominan putih. Tombol WhatsApp hijau.
   Semua warna via token semantik supaya bisa di-flip untuk dark mode.
   ========================================================= */

:root {
  /* --- Palet Maruti Suzuki + WhatsApp --- */
  --blue: #01458e;
  --blue-deep: #013a77;
  --red: #da241c;
  --red-deep: #b81d15;
  --dark: #1f1a17;
  --wa: #25d366;
  --wa-deep: #1da851;
  --wa-ink: #05321c;

  /* --- Semantik (mode terang) --- */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --ink: #1f1a17;
  --muted: #666b73;
  --line: #e5e8ef;
  --header-bg: rgba(255, 255, 255, .9);

  --accent: #01458e;
  --accent-ink: #ffffff;
  --accent-soft: #e7eef7;
  --accent-soft-ink: #01458e;
  --ok: #1da851;

  --shadow-sm: 0 2px 10px rgba(20, 30, 60, .06);
  --shadow: 0 14px 40px rgba(20, 30, 60, .12);
  --shadow-lg: 0 24px 60px rgba(20, 30, 60, .16);

  --radius: 18px;
  --maxw: 1140px;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-head: "Oswald", "Roboto Condensed", var(--font-body);

  color-scheme: light;
}

/* --- Mode gelap: override token (dipilih manual via data-theme) --- */
:root[data-theme="dark"] {
  --red: #e5453b;
  --bg: #14110f;
  --surface: #1f1b18;
  --surface-2: #1a1613;
  --ink: #f2efea;
  --muted: #a7a29b;
  --line: #35302b;
  --header-bg: rgba(20, 17, 15, .9);

  --accent: #4a90d9;
  --accent-ink: #08243f;
  --accent-soft: rgba(74, 144, 217, .16);
  --accent-soft-ink: #8fbdea;
  --ok: #3ddc84;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .35);
  --shadow: 0 14px 40px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);

  color-scheme: dark;
}

/* Fallback tanpa JS: ikut preferensi OS bila belum ada pilihan manual */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --red: #e5453b;
    --bg: #14110f;
    --surface: #1f1b18;
    --surface-2: #1a1613;
    --ink: #f2efea;
    --muted: #a7a29b;
    --line: #35302b;
    --header-bg: rgba(20, 17, 15, .9);
    --accent: #4a90d9;
    --accent-ink: #08243f;
    --accent-soft: rgba(74, 144, 217, .16);
    --accent-soft-ink: #8fbdea;
    --ok: #3ddc84;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .35);
    --shadow: 0 14px 40px rgba(0, 0, 0, .45);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);
    color-scheme: dark;
  }
}

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

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
}

/* Heading & display pakai font kondensasi ala Suzuki (Oswald) */
h1, h2, h3 { font-family: var(--font-head); letter-spacing: .01em; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Icons (SVG sprite) ---------- */
.icon {
  width: 1.15em; height: 1.15em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.22em;
}
.veh {
  height: 1.5em; width: auto; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.42em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 17px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* WhatsApp = hijau */
.btn-wa { background: var(--wa); color: var(--wa-ink); }
.btn-wa:hover { background: var(--wa-deep); color: #fff; }
/* Sekunder = garis biru */
.btn-outline { background: transparent; color: var(--accent-soft-ink); border-color: var(--line); }
.btn-outline:hover { background: var(--accent-soft); }
/* Primer = biru Suzuki (mis. Petunjuk Arah) */
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--blue-deep); color: #fff; }

.wa-ico { width: 22px; height: 22px; fill: currentColor; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 42px; width: auto; display: block; }
:root[data-theme="dark"] .brand-logo { background: #fff; border-radius: 8px; padding: 3px 7px; }
.brand-locale {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.15rem; letter-spacing: .02em; color: var(--ink);
  padding-left: 12px; border-left: 2px solid var(--line); line-height: 1.1; text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.main-nav > a {
  padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: .95rem; color: var(--ink);
  transition: background .15s, color .15s;
}
.main-nav > a:hover { background: var(--accent-soft); color: var(--accent-soft-ink); }
.nav-cta { background: var(--wa); color: var(--wa-ink) !important; font-weight: 700; }
.nav-cta:hover { background: var(--wa-deep); color: #fff !important; }

.header-tools { display: flex; align-items: center; gap: 8px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; cursor: pointer;
  background: var(--accent-soft); color: var(--accent-soft-ink); border: 1px solid var(--line);
  transition: background .15s, color .15s, transform .15s;
}
.theme-toggle:hover { transform: translateY(-2px); }
.theme-toggle .icon { width: 20px; height: 20px; }
.icon-sun { display: none; }
.icon-moon { display: block; }
:root[data-theme="dark"] .icon-sun { display: block; }
:root[data-theme="dark"] .icon-moon { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (terang, dominan putih) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: 60px 0 72px;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); line-height: 1.08; font-weight: 700; letter-spacing: .01em; margin: 16px 0 16px; color: var(--ink); }
.hero-copy h1 span { color: var(--red); display: inline-block; }
.lead { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--muted); max-width: 42ch; }
.lead strong { color: var(--ink); }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); color: var(--accent-soft-ink); border: 1px solid transparent;
  padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; letter-spacing: .01em;
}
.pill .icon { width: 1.05em; height: 1.05em; }
.pill .veh { height: 1.2em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 16px; }
.hero-note { font-size: .92rem; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.hero-note strong { color: var(--ink); }
.hero-note .icon { color: var(--accent); }

/* Hero card */
.hero-card {
  background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-lg);
}
.hero-card-top { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; color: #fff; overflow: hidden;
  background: var(--blue);
}
.avatar-lg { width: 82px; height: 82px; font-size: 1.5rem; }
.avatar-photo { object-fit: cover; object-position: 50% 12%; background: var(--accent-soft); }
.hero-card-top strong { display: block; font-size: 1rem; }
.hero-card-top span { font-size: .82rem; color: var(--muted); }
.badge-online { margin-left: auto; font-size: .76rem; font-weight: 700; color: var(--ok); }
.hero-card-list { list-style: none; margin: 16px 0 18px; display: grid; gap: 12px; }
.hero-card-list li { font-size: .92rem; color: var(--ink); display: flex; gap: 11px; align-items: flex-start; }
.hero-card-list li .icon { color: var(--accent); width: 20px; height: 20px; margin-top: 1px; stroke-width: 1.8; }
.hero-card-list strong { color: var(--ink); }

/* ---------- Trust strip (band biru brand) ---------- */
.trust-strip { background: var(--blue); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 22px 20px; }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 6px 12px; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.18); }
.trust-num {
  font-family: var(--font-head);
  font-size: 1.9rem; font-weight: 700; letter-spacing: .01em; color: #fff; flex: none; min-width: 46px;
  display: flex; align-items: center;
}
.trust-ico .icon { width: 32px; height: 32px; color: #fff; stroke-width: 1.9; }
.trust-item strong { display: block; font-size: .98rem; }
.trust-item small { font-size: .78rem; color: rgba(255,255,255,.82); }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-alt { background: var(--surface-2); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.55rem); font-weight: 700; letter-spacing: .01em; margin: 14px 0 12px; color: var(--ink); }
.section-head p { color: var(--muted); font-size: 1.03rem; }

/* ---------- Product carousel (geser horizontal) ---------- */
.product-carousel { position: relative; }
.product-track {
  display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 18px 2px 24px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.product-track::-webkit-scrollbar { height: 8px; }
.product-track::-webkit-scrollbar-track { background: transparent; }
.product-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.product-track:hover::-webkit-scrollbar-thumb { background: var(--accent); }
.product-track:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 14px; }
.product-track > .product-card { flex: 0 0 262px; scroll-snap-align: start; }

.carousel-btn {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--surface); color: var(--accent); border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: background .15s, color .15s, transform .15s, opacity .15s;
}
.carousel-btn:hover { background: var(--accent); color: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-btn .icon { width: 22px; height: 22px; stroke-width: 2.2; }
.carousel-prev { left: -12px; }
.carousel-prev .icon { transform: scaleX(-1); }
.carousel-next { right: -12px; }
.carousel-btn[hidden] { display: none; }
.carousel-btn:disabled { opacity: .3; cursor: default; box-shadow: var(--shadow-sm); }
.carousel-btn:disabled:hover { background: var(--surface); color: var(--accent); transform: translateY(-50%) scale(1); }
.carousel-hint { text-align: center; color: var(--muted); font-size: .84rem; margin-top: 4px; }

/* ---------- Product cards ---------- */
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }
.product-thumb {
  aspect-ratio: 16 / 11; position: relative;
  background: #ffffff;
  display: grid; place-items: center; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.product-thumb .veh {
  height: 58px; width: auto; color: var(--accent); z-index: 1; stroke-width: 1.5;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--accent-soft); color: var(--accent-soft-ink);
  font-family: var(--font-head);
  font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 5px; color: var(--ink); }
.product-body p { font-size: .86rem; color: var(--muted); flex: 1; margin-bottom: 14px; }
.product-body .btn { font-size: .84rem; padding: 11px 16px; }

.noscript-note { grid-column: 1 / -1; text-align: center; color: var(--muted); }

/* ---------- Section CTA ---------- */
.section-cta {
  margin-top: 40px; text-align: center;
  background: var(--accent-soft); border-radius: var(--radius); padding: 30px 24px;
}
.section-cta p { font-weight: 600; color: var(--accent-soft-ink); margin-bottom: 16px; }

/* ---------- Two column (servis / suku cadang) ---------- */
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.two-col.reverse .two-col-copy { order: 2; }
.two-col-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: .01em; margin: 14px 0 12px; color: var(--ink); }
.two-col-copy > p { color: var(--muted); margin-bottom: 20px; }

.check-list { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.check-list li { position: relative; padding-left: 32px; font-size: .96rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: .8rem;
  display: grid; place-items: center;
}

.two-col-visual { display: grid; gap: 18px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.section-alt .feature-card { box-shadow: var(--shadow); }
.feature-ico {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 12px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.feature-ico .icon { width: 26px; height: 26px; stroke-width: 1.8; }
.feature-card h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.feature-card p { font-size: .9rem; color: var(--muted); }

/* ---------- Contact (terang) ---------- */
.section-contact { background: var(--surface-2); border-top: 1px solid var(--line); }
.contact-card {
  max-width: 860px; margin: 0 auto;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr .9fr;
  box-shadow: var(--shadow-lg);
}
.contact-profile { padding: 34px; display: flex; gap: 18px; align-items: flex-start; }
.contact-id h3 { font-size: 1.25rem; font-weight: 800; line-height: 1.25; margin-bottom: 6px; color: var(--ink); }
.contact-id .role { display: inline-block; background: var(--red); color: #fff; font-weight: 700; font-size: .78rem; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; }
.contact-id .company { font-size: .92rem; font-weight: 600; color: var(--accent-soft-ink); }
.contact-id .area { font-size: .88rem; color: var(--muted); margin-top: 8px; display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.contact-id .area .icon { color: var(--accent); width: 1.05em; height: 1.05em; margin-top: 3px; }
.maps-link { display: inline-block; margin-top: 8px; font-size: .85rem; font-weight: 700; color: var(--accent-soft-ink); }
.maps-link:hover { text-decoration: underline; }
.contact-actions { background: var(--bg); padding: 34px; display: flex; flex-direction: column; gap: 12px; justify-content: center; border-left: 1px solid var(--line); }
.contact-hours { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.contact-hours .icon { width: 1.05em; height: 1.05em; }

/* ---------- Footer (gelap) ---------- */
.site-footer { background: var(--dark); color: #b9b4ad; padding: 46px 0 30px; }
.footer-inner { text-align: center; display: grid; gap: 18px; justify-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; text-align: left; }
.footer-logo-chip { background: #fff; border-radius: 12px; padding: 7px 11px; display: inline-grid; place-items: center; }
.footer-logo-chip img { height: 40px; width: auto; }
.footer-brand strong { display: block; color: #fff; font-size: 1.05rem; letter-spacing: .02em; }
.footer-brand small { font-size: .78rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: center; }
.footer-nav a { font-weight: 600; font-size: .92rem; }
.footer-nav a:hover { color: #fff; }
.footer-note { font-size: .88rem; line-height: 1.7; }
.footer-note strong { color: #fff; }
.footer-copy { font-size: .78rem; color: #8a857e; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; width: 100%; max-width: 640px; }

/* ---------- Floating WA (hijau) ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--wa); color: var(--wa-ink); font-weight: 700; font-size: .95rem;
  padding: 13px 18px 13px 15px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .15s, background .15s, color .15s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); background: var(--wa-deep); color: #fff; }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- Headquarter (peta) ---------- */
.hq-card {
  display: grid; grid-template-columns: 1fr 1.15fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; box-shadow: var(--shadow);
}
.hq-info { padding: 34px; display: flex; flex-direction: column; gap: 12px; }
.hq-info h3 { font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.hq-tag {
  align-self: flex-start; background: var(--accent-soft); color: var(--accent-soft-ink);
  font-weight: 700; font-size: .78rem; padding: 4px 12px; border-radius: 999px; margin-top: -4px;
}
.hq-addr { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.hq-addr .icon { color: var(--accent); margin-top: 3px; flex: none; }
.hq-meta { list-style: none; display: grid; gap: 9px; margin-top: 2px; }
.hq-meta li { display: flex; align-items: center; gap: 9px; font-size: .92rem; }
.hq-meta .icon { color: var(--accent); flex: none; }
.hq-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.hq-map { min-height: 340px; background: var(--surface-2); }
.hq-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Dialog booking servis ---------- */
.booking-dialog {
  border: 0; padding: 0; border-radius: 20px;
  width: min(440px, calc(100% - 32px));
  background: var(--surface); color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.booking-dialog::backdrop { background: rgba(15,15,20,.55); backdrop-filter: blur(2px); }
.booking-dialog[open] { animation: dlg-in .2s ease; }
@keyframes dlg-in { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.booking-form { padding: 24px; display: grid; gap: 15px; }
.booking-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.booking-head h3 { font-size: 1.28rem; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.booking-head h3 .icon { color: var(--accent); width: 1.2em; height: 1.2em; }
.booking-close { background: none; border: 0; font-size: 1.7rem; line-height: 1; cursor: pointer; color: var(--muted); width: 34px; height: 34px; border-radius: 9px; }
.booking-close:hover { background: var(--accent-soft); color: var(--ink); }
.booking-sub { font-size: .9rem; color: var(--muted); margin-top: -6px; }
.booking-field { display: grid; gap: 6px; }
.booking-field > span { font-size: .85rem; font-weight: 600; }
.booking-field em { font-weight: 400; font-style: normal; color: var(--muted); }
.booking-field input, .booking-field select, .booking-field textarea {
  font: inherit; width: 100%; padding: 11px 12px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); color: var(--ink);
}
.booking-field textarea { resize: vertical; }
.booking-field input:focus, .booking-field select:focus, .booking-field textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent;
}
.booking-actions { display: flex; gap: 10px; margin-top: 4px; }
.booking-actions .btn { flex: 1; padding: 13px 16px; }

/* ---------- Scroll reveal + nav aktif ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.trust-item.reveal:nth-child(2) { transition-delay: .07s; }
.trust-item.reveal:nth-child(3) { transition-delay: .14s; }
.trust-item.reveal:nth-child(4) { transition-delay: .21s; }
.two-col-visual .feature-card.reveal:nth-child(2) { transition-delay: .1s; }
.main-nav > a.active { background: var(--accent-soft); color: var(--accent-soft-ink); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-card { max-width: 460px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col.reverse .two-col-copy { order: 0; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-actions { border-left: 0; border-top: 1px solid var(--line); }
  .hq-card { grid-template-columns: 1fr; }
  .hq-map { min-height: 300px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-item:nth-child(3) { border-left: 0; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); padding: 14px 20px 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .28s ease; z-index: 40;
    margin-left: 0;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav > a { padding: 13px 14px; border-radius: 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .header-inner { justify-content: space-between; }
  .header-tools { margin-left: auto; }
  .nav-toggle { display: flex; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
  .carousel-btn { display: none; }
}

@media (max-width: 460px) {
  .product-track > .product-card { flex-basis: 80vw; max-width: 300px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 16px; }
  .contact-profile { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition: none !important; }
  .btn:hover, .product-card:hover, .wa-float:hover, .theme-toggle:hover { transform: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
