/* =========================================================
   Sejuk Teknik — Landing Page Jasa Service AC
   Vanilla CSS, mobile-first. Tidak ada dependency eksternal.
   Urutan: variabel, reset, tipografi, komponen, layout section,
   modal, responsive, motion.
   ========================================================= */

/* ---------- 1. Brand tokens ---------- */
:root {
  /* Warna brand — ubah di sini untuk mengganti tema */
  --navy: #0f2e4f;
  --navy-700: #123a63;
  --navy-900: #0a2138;
  --blue: #175fa8;
  --blue-600: #14538f;
  --sky: #e8f1fa;
  --sky-line: #cfe0f0;

  --ink: #1c2733;
  --ink-soft: #4f5d6b;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --border: #e2e8f0;
  --white: #ffffff;

  --danger: #c0392b;
  --success: #147d4b;

  /* Bentuk & bayangan */
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 46, 79, .06), 0 2px 6px rgba(15, 46, 79, .07);
  --shadow-md: 0 14px 40px -16px rgba(15, 46, 79, .28);

  /* Layout */
  --maxw: 1120px;
  --gutter: 20px;
  --header-h: 62px;

  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* Pastikan atribut [hidden] selalu menang atas display:flex/grid milik komponen */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: block; }

/* Cegah anak grid/flex melebihi lebar layar (min-width:auto default) */
.hero__grid > *,
.hero__media,
.service-card,
.reason,
.reason > div,
.step,
.quote-card,
.field,
.faq__q,
.faq__q > * {
  min-width: 0;
}

h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid rgba(23, 95, 168, .55);
  outline-offset: 2px;
  border-radius: 4px;
}

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 3. Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--solid { fill: currentColor; stroke: none; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}

/* ---------- 4. Typography scale ---------- */
h1 {
  font-size: clamp(1.85rem, 6.2vw, 2.9rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h2 {
  font-size: clamp(1.5rem, 4.4vw, 2.05rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h3 {
  font-size: 1.075rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--navy);
}
.lead {
  font-size: 1.06rem;
  color: var(--ink-soft);
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.35rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-weight: 650;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 20px; height: 20px; }

.btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: var(--shadow-sm);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline:hover { background: var(--sky); }

.btn--on-dark {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}
.btn--on-dark:hover { background: var(--sky); border-color: var(--sky); }

.btn--sm { min-height: 42px; padding: .55rem 1rem; font-size: .92rem; }
.btn--lg { min-height: 52px; padding: .95rem 1.6rem; font-size: 1.03rem; }
.btn--block { width: 100%; }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px -8px rgba(15, 46, 79, .22); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.brand:hover { text-decoration: none; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 9px;
}
.brand__mark .icon { width: 20px; height: 20px; stroke-width: 1.9; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em; }
.brand__sub { font-size: .72rem; color: var(--ink-soft); font-weight: 600; }

.site-nav { display: none; gap: 28px; }
.site-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.site-nav a:hover { color: var(--blue); text-decoration: none; }

/* ---------- 7. Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 420px at 100% -10%, var(--sky), transparent 70%),
    var(--bg);
  padding-block: 44px 52px;
  scroll-margin-top: 80px;
}
.hero__grid { display: grid; gap: 34px; }
.hero__content { max-width: 620px; }
.hero h1 { margin-bottom: 16px; }
.hero .lead { margin-bottom: 26px; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero__trust .icon {
  width: 18px;
  height: 18px;
  color: var(--success);
  stroke-width: 2.4;
}

.hero__media { position: relative; }
.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 11 / 9;
  object-fit: cover;
  background: var(--sky);
  border: 1px solid var(--sky-line);
  border-radius: var(--radius-lg);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: -22px;
  margin-left: 14px;
  position: relative;
}
.hero__badge .icon { width: 20px; height: 20px; color: var(--blue); }

/* ---------- 8. Section shell ---------- */
.section {
  padding-block: 54px;
  scroll-margin-top: 80px;
}
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 640px;
  margin-bottom: 32px;
}
.section__head h2 { margin-bottom: 12px; }
.section__head p { color: var(--ink-soft); font-size: 1.02rem; }
.section__note { font-size: .9rem !important; font-style: italic; }

.section__cta { margin-top: 32px; }

/* ---------- 9. Feature grid (Masalah) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 36px;
}
.feature {
  padding: 20px 0;
  border-top: 2px solid var(--navy);
}
.feature__icon {
  width: 26px;
  height: 26px;
  color: var(--blue);
  margin-bottom: 10px;
}
.feature h3 { margin-bottom: 4px; }
.feature p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- 10. Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.service-card:hover {
  border-color: var(--sky-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--sky);
  color: var(--navy);
  border-radius: 12px;
  stroke-width: 1.6;
}
.service-card p { font-size: .95rem; color: var(--ink-soft); }
.service-card__benefit {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem !important;
  font-weight: 650;
  color: var(--navy) !important;
  margin-top: 2px;
  margin-bottom: 6px;
}
.service-card__benefit .icon { width: 17px; height: 17px; color: var(--success); stroke-width: 2.5; }
.service-card .btn { margin-top: auto; }

/* ---------- 11. Reasons (Kenapa kami) ---------- */
.reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.reason { display: flex; gap: 14px; }
.reason__icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  flex: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--blue);
}
.reason h3 { margin-bottom: 3px; }
.reason p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- 12. Steps (Cara booking) ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 56px;
}
.step__num {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
}
.step__icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
  margin-bottom: 6px;
}
.step h3 { margin-bottom: 3px; }
.step p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- 13. Area chips ---------- */
.area .section__head { margin-bottom: 22px; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: var(--white);
  border: 1px solid var(--sky-line);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: .9rem;
  font-weight: 650;
}

/* ---------- 14. Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.quote-card blockquote {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.quote-card blockquote::before { content: "\201C"; }
.quote-card blockquote::after { content: "\201D"; }
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .88rem;
  font-weight: 650;
  color: var(--ink-soft);
}
.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 800;
}

/* ---------- 15. FAQ ---------- */
.faq { max-width: 760px; }
.faq__list {
  border-top: 1px solid var(--border);
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}
.faq__caret {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--blue);
  transition: transform .2s ease;
}
.faq__q[aria-expanded="true"] .faq__caret { transform: rotate(45deg); }
.faq__a { padding: 0 2px 20px; }
.faq__a p { color: var(--ink-soft); font-size: .97rem; }
.faq__a:not([hidden]) { animation: faqIn .2s ease; }

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 16. Final CTA ---------- */
.final-cta {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding-block: 56px;
  background: var(--navy-900);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(10, 33, 56, .84), rgba(10, 33, 56, .93)),
    url("../assets/images/cta-bg-ac.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.final-cta__inner { max-width: 640px; }
.final-cta h2 { color: var(--white); margin-bottom: 12px; }
.final-cta p { color: var(--sky-line); font-size: 1.05rem; margin-bottom: 26px; }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #b9c6d4;
  padding-block: 44px 28px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.brand--footer { color: var(--white); }
.brand--footer .brand__mark { background: var(--blue); }
.brand--footer strong { font-size: 1.05rem; font-weight: 800; }
.site-footer__brand p { margin-top: 12px; font-size: .92rem; max-width: 40ch; }

.site-footer__col h2 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 12px;
}
.site-footer__col ul { display: grid; gap: 8px; margin-bottom: 16px; }
.site-footer__col li { font-size: .92rem; }
.site-footer__col a { color: #b9c6d4; }
.site-footer__col a:hover { color: var(--white); }

.site-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  gap: 6px;
  font-size: .84rem;
}
.site-footer__privacy { color: #8a9bab; }

/* ---------- 18. Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 22px -10px rgba(15, 46, 79, .25);
  transform: translateY(130%);
  transition: transform .25s ease;
}
.sticky-cta.is-shown { transform: none; }
body.modal-open .sticky-cta { transform: translateY(130%); }

/* ---------- 19. Modal / bottom sheet ---------- */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 33, 56, .55);
  opacity: 0;
  transition: opacity .25s ease;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 8px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform .28s ease;
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal.is-open .modal__panel { transform: none; }

.modal__grabber {
  width: 40px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--border);
  margin: 6px auto 4px;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--ink);
}
.modal__close:hover { background: var(--sky); }

.modal__head { padding: 6px 44px 18px 2px; }
.modal__head h2 { font-size: 1.35rem; margin-bottom: 6px; }
.modal__head p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- 20. Form ---------- */
.booking-form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field label {
  font-size: .88rem;
  font-weight: 650;
  color: var(--navy);
}
.req { color: var(--danger); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  font: inherit;
  font-size: 1rem; /* >=16px agar iOS tidak auto-zoom */
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 0;
}
.field textarea { min-height: 62px; resize: vertical; line-height: 1.5; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234f5d6b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 95, 168, .18);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}
.field input[aria-invalid="true"]:focus,
.field select[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .16);
}

.field__error {
  font-size: .82rem;
  font-weight: 600;
  color: var(--danger);
}

.booking-form .btn { margin-top: 4px; }
.booking-form__note {
  font-size: .8rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- 21. Success panel ---------- */
.booking-success {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: 16px 4px 4px;
}
.booking-success__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #e5f3ec;
  color: var(--success);
  border-radius: var(--radius-pill);
}
.booking-success__icon .icon { width: 28px; height: 28px; stroke-width: 2.6; }
.booking-success h3 { font-size: 1.2rem; }
.booking-success h3:focus-visible { outline: none; }
.booking-success p { color: var(--ink-soft); font-size: .95rem; }
.booking-success .btn { margin-top: 4px; }

/* ---------- 22. Reveal on scroll ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}

/* =========================================================
   23. Responsive — tablet & desktop
   ========================================================= */
@media (min-width: 560px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
  .hero__cta .btn { flex: 1 1 auto; }
}

@media (min-width: 700px) {
  :root { --gutter: 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: 1fr 1fr; }
  .site-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
  }
  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .site-footer__bottom p:last-child { text-align: right; }
}

@media (min-width: 768px) {
  :root { --header-h: 68px; }
  .site-nav { display: flex; }
  .sticky-cta { display: none; }
  body { padding-bottom: 0 !important; }

  .section { padding-block: 80px; }
  .hero { padding-block: 64px 72px; }
  .final-cta { padding-block: 84px; }
  .site-footer { padding-block: 56px 28px; }

  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
  }
  .hero__trust { max-width: 460px; }

  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { padding-left: 0; padding-top: 54px; }
  .step__num { left: 0; }

  .modal { align-items: center; padding: 24px; }
  .modal__panel {
    border-radius: var(--radius-lg);
    max-height: 88vh;
    padding: 12px 26px 26px;
    transform: translateY(16px);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
  }
  .modal.is-open .modal__panel { transform: none; opacity: 1; }
  .modal__grabber { display: none; }
  .modal__head { padding-top: 10px; }
}

@media (min-width: 980px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .reasons { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 6px 44px; }
}

@media (max-width: 767px) {
  body { padding-bottom: 84px; }
}

@media (max-width: 360px) {
  .field-row { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: 1fr; }
}

/* =========================================================
   24. Motion preferences
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* Print — ringkas */
@media print {
  .site-header, .sticky-cta, .modal, .final-cta .btn { display: none !important; }
  body { padding: 0; }
}
