/*  Homepage V2 — Jessindo Jaya / Shinzo Stabilizer
 *  Sumber: paket export desain homepage (index.html + styles.css).
 *  Perubahan: font stack Helvetica/Arimo, header sticky slide-down,
 *  nav item Kalkulator, scroll-margin untuk anchor #kalkulator.
 */
:root {
  --navy: #382d7e;
  --navy-dark: #211a54;
  --red: #ea3323;
  --red-dark: #c92619;
  --jes: #333689;
  --ink: #17162a;
  --muted: #686879;
  --line: #e7e5ef;
  --soft: #f6f5fa;
  --white: #ffffff;
  --font-stack: "Helvetica Neue", Helvetica, Arimo, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; } /* animasi scroll ditangani hv2.js */

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-stack);
  text-rendering: optimizeLegibility;
}

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

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topline { background: var(--navy-dark); color: #fff; font-size: 12px; letter-spacing: .02em; }
.topline-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }

.header-anchor { position: relative; }
.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(56,45,126,.1);
  backdrop-filter: blur(14px);
}

/* Sticky slide-down (meniru perilaku header resmi shinzostabilizer.com) */
@keyframes szHeaderDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
body.sz-stuck .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 12px 34px rgba(33,26,84,.12);
  animation: szHeaderDown .38s cubic-bezier(.2,.9,.3,1) both;
}
body.sz-stuck .nav-wrap { height: 66px; }
body.sz-stuck .brand img { width: 42px; height: 42px; }
body.sz-stuck .brand strong { font-size: 19px; }
body.sz-stuck .brand small { margin-top: 4px; }
body.sz-stuck .desktop-nav a { padding: 23px 0; }
body.sz-stuck .desktop-nav a.active::after { bottom: 12px; }
body.sz-stuck .nav-cta { padding: 11px 18px; }
.site-header, .nav-wrap, .brand img, .brand strong, .nav-cta { transition: height .25s ease, width .25s ease, font-size .25s ease, padding .25s ease, box-shadow .25s ease; }
@media (prefers-reduced-motion: reduce) {
  body.sz-stuck .site-header { animation: none; }
  .site-header, .nav-wrap, .brand img, .brand strong, .nav-cta { transition: none; }
}

/* Anchor offset supaya judul section tidak tertutup header sticky */
section[id], div[id] { scroll-margin-top: 86px; }

.nav-wrap { height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { color: var(--navy); font-size: 21px; letter-spacing: -.015em; font-weight: 900; }
.brand small { margin-top: 6px; color: #757187; font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.desktop-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; color: #4b485b; }
.desktop-nav a { position: relative; padding: 31px 0; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--navy); }
.desktop-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--red); }
.nav-cta { background: var(--red); color: #fff; font-size: 13px; font-weight: 800; padding: 14px 20px; border-radius: 7px; box-shadow: 0 9px 22px rgba(234,51,35,.18); }
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 24%, rgba(234,51,35,.1), transparent 23%),
    radial-gradient(circle at 72% 65%, rgba(56,45,126,.11), transparent 31%),
    linear-gradient(135deg, #fff 0%, #fbfaff 48%, #f3f0fb 100%);
}

.hero::before { content: ""; position: absolute; width: 280px; height: 280px; left: -170px; top: 130px; border: 52px solid rgba(56,45,126,.04); border-radius: 50%; }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 48px; padding-top: 54px; padding-bottom: 56px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-size: 12px; line-height: 1.4; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(234,51,35,.1); }
.hero h1 { max-width: 650px; margin: 18px 0 21px; color: var(--navy-dark); font-size: clamp(42px, 4.5vw, 65px); line-height: 1.04; letter-spacing: -.045em; font-weight: 900; }
.hero h1 em { display: block; margin-top: 8px; color: var(--red); font-style: normal; }
.hero-lead { max-width: 610px; margin: 0; color: #555366; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 7px; padding: 0 22px; font-size: 14px; font-weight: 900; transition: .18s ease; }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-red { color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(234,51,35,.22); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--navy); background: #fff; border: 1px solid #d9d6e9; }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 22px; color: #6a677a; font-size: 12px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 15px; height: 15px; fill: none; stroke: var(--red); stroke-width: 2.6; }

.hero-visual { position: relative; height: 550px; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(56,45,126,.12); }
.ring-one { width: 480px; height: 480px; top: 28px; right: 0; }
.ring-two { width: 360px; height: 360px; top: 88px; right: 60px; border-width: 40px; border-color: rgba(255,255,255,.52); }
.product-three { position: absolute; z-index: 2; width: 350px; height: 510px; object-fit: contain; right: 18px; bottom: -2px; filter: drop-shadow(0 25px 26px rgba(35,27,83,.22)); }
.product-single { position: absolute; z-index: 3; width: 165px; height: 260px; object-fit: contain; left: 30px; bottom: 26px; filter: drop-shadow(0 19px 20px rgba(35,27,83,.2)); }
.phase-label { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(56,45,126,.12); background: rgba(255,255,255,.92); box-shadow: 0 13px 28px rgba(41,32,92,.1); border-radius: 999px; padding: 8px 13px 8px 8px; color: var(--navy); font-size: 11px; font-weight: 800; }
.phase-label span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--navy); font-size: 11px; }
.single-label { left: 8px; bottom: 200px; }
.three-label { right: -6px; top: 86px; }
.three-label span { background: var(--red); }
.floating-card { position: absolute; z-index: 5; left: 68px; top: 83px; display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: #fff; border-radius: 10px; box-shadow: 0 17px 36px rgba(36,27,83,.13); border: 1px solid rgba(56,45,126,.08); }
.floating-card .pulse { width: 12px; height: 12px; border-radius: 50%; background: #27b968; box-shadow: 0 0 0 5px rgba(39,185,104,.13); }
.floating-card div { display: grid; gap: 4px; }
.floating-card strong { color: var(--navy-dark); font-size: 12px; }
.floating-card small { color: #7b7889; font-size: 10px; }

.trust-proof-section { padding: 48px 0 58px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fbfafe 0%, #fff 100%); }
.trust-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-stat-card { min-height: 148px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 20px; border-radius: 14px; background: var(--navy); color: #fff; text-align: center; box-shadow: 0 15px 34px rgba(42,32,98,.16); transition: transform .2s ease, box-shadow .2s ease; }
.trust-stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(42,32,98,.22); }
.trust-stat-card strong { font-size: clamp(25px, 2.35vw, 34px); line-height: 1.08; letter-spacing: -.035em; }
.trust-stat-card span { max-width: 230px; margin-top: 12px; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.55; }
.trust-stat-text strong { font-size: clamp(23px, 2.1vw, 31px); }
.trust-proof-section .client-proof { margin: 57px 0 0; }

.section { padding: 102px 0; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { display: block; margin-bottom: 12px; color: var(--red); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.section-heading h2, .problem h2 { margin: 0; color: var(--navy-dark); font-size: clamp(32px, 4vw, 47px); line-height: 1.13; letter-spacing: -.035em; font-weight: 900; }
.section-heading p { margin: 17px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.needs { background: #fff; }
.need-selector-heading { max-width: 880px; margin-bottom: 38px; }
.scope-choice-grid { max-width: 980px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 auto; }
.scope-choice-card { min-width: 0; min-height: 335px; display: flex; flex-direction: column; padding: 31px; border: 2px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); font: inherit; text-align: left; cursor: pointer; appearance: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease; }
.scope-choice-card:hover { transform: translateY(-4px); border-color: rgba(56,45,126,.42); box-shadow: 0 18px 42px rgba(40,31,92,.1); }
.scope-choice-card:focus-visible { outline: 3px solid rgba(234,51,35,.32); outline-offset: 3px; }
.scope-choice-card.active { border-color: var(--navy); background: linear-gradient(145deg, #fff 0%, #f5f3fb 100%); box-shadow: 0 20px 48px rgba(40,31,92,.12); }
.scope-choice-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.scope-choice-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px; background: rgba(56,45,126,.09); color: var(--navy); }
.scope-choice-card.active .scope-choice-icon { background: var(--navy); color: #fff; }
.scope-choice-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.scope-choice-status { min-height: 28px; display: inline-flex; align-items: center; gap: 5px; padding: 0 10px; border-radius: 999px; background: var(--soft); color: #888497; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.scope-choice-card.active .scope-choice-status { background: var(--navy); color: #fff; }
.scope-choice-status svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.scope-choice-eyebrow { margin-top: 25px; color: var(--red); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.scope-choice-card > strong { margin-top: 8px; color: var(--navy-dark); font-size: clamp(24px, 2.5vw, 31px); line-height: 1.14; letter-spacing: -.03em; }
.scope-choice-description { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.scope-choice-examples { margin-top: 16px; color: #777386; font-size: 11px; font-weight: 800; }
.scope-choice-action { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 22px; color: var(--navy); font-size: 12px; font-weight: 900; }
.scope-choice-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.scope-choice-card:hover .scope-choice-action { color: var(--red); }
.scope-choice-card:hover .scope-choice-action svg { transform: translateX(3px); }
.scope-choice-prompt { margin: 19px auto 0; color: #898597; font-size: 11px; line-height: 1.6; text-align: center; }
.selector-result { margin-top: 54px; padding-top: 45px; border-top: 1px solid var(--line); scroll-margin-top: 112px; }
.selector-result-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: end; margin-bottom: 27px; }
.selector-step { display: block; margin-bottom: 10px; color: var(--red); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.selector-result-heading h3 { max-width: 640px; margin: 0; color: var(--navy-dark); font-size: clamp(28px, 3vw, 39px); line-height: 1.14; letter-spacing: -.035em; }
.selector-result-heading > p { max-width: 450px; margin: 0 0 2px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.equipment-card { position: relative; min-height: 205px; display: flex; flex-direction: column; overflow: hidden; padding: 23px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.equipment-card:hover { transform: translateY(-4px); border-color: rgba(56,45,126,.4); box-shadow: 0 16px 32px rgba(40,31,92,.09); }
.equipment-number { position: absolute; top: 16px; right: 18px; color: #dedbe9; font-size: 29px; font-weight: 900; }
.equipment-context { max-width: calc(100% - 58px); color: var(--red); font-size: 9px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; font-weight: 900; }
.equipment-card strong { max-width: 82%; margin-top: 23px; color: var(--navy-dark); font-size: 18px; line-height: 1.28; letter-spacing: -.018em; }
.equipment-card small { margin-top: 8px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.equipment-link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 16px; color: var(--navy); font-size: 11px; font-weight: 900; }
.equipment-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.equipment-card:hover .equipment-link { color: var(--red); }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.location-card { position: relative; min-height: 275px; display: flex; flex-direction: column; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--soft); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.location-card:hover { transform: translateY(-4px); border-color: rgba(56,45,126,.42); box-shadow: 0 16px 34px rgba(40,31,92,.09); }
.location-number { position: absolute; top: 18px; right: 21px; color: #dfdce9; font-size: 38px; font-weight: 900; }
.location-context { max-width: calc(100% - 60px); color: var(--red); font-size: 9px; line-height: 1.4; letter-spacing: .09em; text-transform: uppercase; font-weight: 900; }
.location-card > strong { max-width: 80%; margin-top: 34px; color: var(--navy-dark); font-size: 27px; line-height: 1.2; letter-spacing: -.025em; }
.location-card > small { margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.location-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 22px; color: var(--navy); font-size: 11px; font-weight: 900; }
.location-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.location-card:hover .location-link { color: var(--red); }
.selector-safety-note { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding: 16px 19px; border-radius: 9px; background: var(--navy-dark); color: #fff; }
.selector-safety-note svg { flex: 0 0 28px; width: 28px; height: 28px; fill: none; stroke: #ff8d84; stroke-width: 1.8; }
.selector-safety-note p { margin: 0; color: rgba(255,255,255,.74); font-size: 11px; line-height: 1.65; }
.selector-safety-note strong { color: #fff; }

.problem { background: var(--navy-dark); color: #fff; }
.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.section-kicker.light { color: #ff8d84; }
.problem h2 { color: #fff; }
.problem-copy p { margin: 22px 0 0; color: rgba(255,255,255,.69); font-size: 16px; line-height: 1.75; }
.problem-list { border-top: 1px solid rgba(255,255,255,.16); }
.problem-list > div { display: grid; grid-template-columns: 52px 1fr; align-items: center; min-height: 76px; border-bottom: 1px solid rgba(255,255,255,.16); }
.problem-list span { color: #ff8d84; font-size: 11px; font-weight: 900; }
.problem-list p { margin: 0; color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.5; }

.process { background: var(--soft); }
.process-grid { display: grid; grid-template-columns: 1fr 80px 1fr 80px 1fr; align-items: center; }
.process-grid article { min-height: 220px; padding: 30px; border-radius: 12px; border: 1px solid #e3e0ec; background: #fff; text-align: center; box-shadow: 0 10px 30px rgba(38,30,86,.05); }
.process-grid article > span { display: grid; place-items: center; width: 43px; height: 43px; margin: 0 auto 20px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 900; box-shadow: 0 0 0 8px rgba(234,51,35,.09); }
.process-grid h3 { margin: 0 0 9px; color: var(--navy-dark); font-size: 20px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.process-line { height: 1px; background: repeating-linear-gradient(90deg, rgba(56,45,126,.4) 0 6px, transparent 6px 11px); }

.comparison { background: #fff; }
.comparison-heading { max-width: 850px; }
.comparison-heading h2 em { color: var(--red); font-style: normal; }
.comparison-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comparison-banners img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border: 1px solid #dedbe8; border-radius: 13px; background: #fff; box-shadow: 0 15px 38px rgba(35,27,83,.08); }
.comparison-table-wrap { overflow-x: auto; margin-top: 27px; border: 1px solid #dedbe8; border-radius: 12px; background: #fff; box-shadow: 0 12px 32px rgba(35,27,83,.05); }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; color: #444153; font-size: 12px; }
.comparison-table th, .comparison-table td { padding: 15px 18px; border-right: 1px solid #e3e0eb; border-bottom: 1px solid #e3e0eb; line-height: 1.45; }
.comparison-table tr > *:last-child { border-right: 0; }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }
.comparison-table thead th { font-size: 12px; text-align: center; }
.comparison-table thead th:first-child { background: #fff; color: var(--navy-dark); text-align: left; }
.comparison-table thead th:nth-child(2) { background: var(--navy); color: #fff; }
.comparison-table thead th:nth-child(3) { background: #eef0fb; color: var(--jes); }
.comparison-table tbody th { width: 29%; background: #faf9fc; color: var(--navy-dark); text-align: left; font-weight: 800; }
.comparison-table tbody td { width: 35.5%; text-align: center; }
.comparison-table tbody tr:nth-child(even) td { background: #fcfbfe; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 15px 45px rgba(35,27,83,.07); }
.brand-image { position: relative; aspect-ratio: 2/1; overflow: hidden; background: #eeedf4; }
.brand-stage { background: radial-gradient(circle at 65% 42%, #fff 0 12%, transparent 42%), linear-gradient(140deg, #f6f4fb, #e8e4f4); }
.brand-stage::before { content: ""; position: absolute; width: 330px; height: 330px; right: -15px; top: -55px; border: 1px solid rgba(56,45,126,.11); border-radius: 50%; }
.stage-wordmark { position: absolute; left: 26px; top: 24px; color: rgba(56,45,126,.2); font-size: 27px; letter-spacing: .08em; font-weight: 900; }
.brand-stage img { position: absolute; z-index: 1; object-fit: contain; filter: drop-shadow(0 17px 16px rgba(35,27,83,.19)); }
.stage-single { width: 125px; height: 190px; right: 205px; bottom: -19px; }
.stage-three { width: 190px; height: 275px; right: 39px; bottom: -32px; }
.jes-stage { background: radial-gradient(circle at 65% 42%, #fff 0 12%, transparent 42%), linear-gradient(140deg, #f2f2fa, #dedff0); }
.jes-stage .stage-wordmark { color: rgba(51,54,137,.25); }
.stage-jes { width: 190px; height: 280px; right: 75px; bottom: -31px; }
.brand-card-body { padding: 30px; }
.brand-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.brand-badge { color: var(--red); font-size: 9px; letter-spacing: .14em; font-weight: 900; }
.jes-card .brand-badge { color: var(--jes); }
.brand-card h3 { margin: 5px 0 0; color: var(--navy-dark); font-size: 32px; letter-spacing: -.03em; }
.warranty-chip { flex: 0 0 auto; padding: 8px 11px; border-radius: 999px; background: rgba(56,45,126,.08); color: var(--navy); font-size: 10px; font-weight: 900; }
.brand-card-body > p { min-height: 52px; margin: 16px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.compare-list { margin: 0 0 25px; border-top: 1px solid var(--line); }
.compare-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; line-height: 1.45; }
.compare-list dt { color: #8b8796; }
.compare-list dd { margin: 0; color: #3e3b4c; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 13px; font-weight: 900; }
.text-link:hover { color: var(--red); }
.text-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.capacity-note { display: flex; align-items: center; gap: 14px; max-width: 820px; margin: 26px auto 0; padding: 16px 20px; border-radius: 9px; background: #f4f2fa; color: #555164; }
.capacity-note svg { flex: 0 0 29px; width: 29px; height: 29px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linejoin: round; }
.capacity-note p { margin: 0; font-size: 12px; line-height: 1.6; }
.capacity-note strong { color: var(--navy-dark); }

.calculator { position: relative; overflow: hidden; scroll-margin-top: 112px; background: var(--navy-dark); color: #fff; }
.calculator::after { content: ""; position: absolute; right: -150px; top: -200px; width: 520px; height: 520px; border: 80px solid rgba(255,255,255,.035); border-radius: 50%; }
.calculator-shell { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; gap: 74px; align-items: center; }
.calculator-copy h2 { margin: 0; color: #fff; font-size: clamp(34px, 4vw, 49px); line-height: 1.1; letter-spacing: -.04em; }
.calculator-copy > p { margin: 21px 0 28px; color: rgba(255,255,255,.69); font-size: 15px; line-height: 1.75; }
.calc-points { display: grid; border-top: 1px solid rgba(255,255,255,.16); }
.calc-points > div { display: grid; grid-template-columns: 42px 1fr; align-items: center; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.16); }
.calc-points span { color: #ff8d84; font-size: 10px; font-weight: 900; }
.calc-points p { margin: 0; color: rgba(255,255,255,.87); font-size: 13px; }
.calculator-card { padding: 32px; border-radius: 15px; background: #fff; color: var(--ink); box-shadow: 0 25px 65px rgba(0,0,0,.18); }
.calculator-card-head { display: grid; gap: 6px; margin-bottom: 22px; }
.calculator-card-head span { color: var(--red); font-size: 9px; letter-spacing: .13em; font-weight: 900; }
.calculator-card-head strong { color: var(--navy-dark); font-size: 22px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label > span { min-height: 112px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 16px; border: 1px solid #dedbe9; border-radius: 9px; background: #fff; transition: .15s ease; }
.choice-grid label:hover > span, .choice-grid label:has(input:checked) > span { border-color: var(--navy); background: #f4f2fb; box-shadow: inset 0 0 0 1px var(--navy); }
.choice-grid svg { width: 23px; height: 23px; margin-bottom: 10px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.choice-grid b { color: var(--navy-dark); font-size: 12px; }
.choice-grid small { margin-top: 4px; color: #8c8997; font-size: 9px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 19px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1/-1; }
.form-grid label > span { color: #595668; font-size: 10px; font-weight: 800; }
.form-grid input { width: 100%; height: 43px; border: 1px solid #dedbe9; border-radius: 7px; padding: 0 13px; outline: 0; color: var(--ink); background: #fff; font: inherit; font-size: 12px; }
.form-grid input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(56,45,126,.1); }
.form-grid input::placeholder { color: #aaa7b4; }
.calculator-submit { width: 100%; margin-top: 18px; }
.form-note { margin: 12px 0 0; color: #8c8998; font-size: 9px; line-height: 1.5; text-align: center; }

.case-study { background: var(--soft); }
.client-proof { margin-bottom: 72px; }
.client-proof > span { display: block; margin-bottom: 23px; color: #858191; font-size: 10px; text-align: center; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.client-logos { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 12px; }
.client-logos img { width: 100%; height: 55px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: .18s ease; }
.client-logos img:hover { filter: none; opacity: 1; }
.case-card { display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; border: 1px solid #dfdcea; border-radius: 16px; background: #fff; box-shadow: 0 22px 60px rgba(38,30,86,.09); }
.case-visual { position: relative; min-height: 570px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 48%, #fff 0 12%, transparent 39%), linear-gradient(145deg, #453797, #251c64); }
.case-visual::before { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.case-device { position: relative; z-index: 1; width: 230px; height: 290px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.28); border-radius: 17px; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07)); box-shadow: 0 27px 44px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2); color: #fff; transform: perspective(700px) rotateY(-6deg); }
.case-device::before, .case-device::after { content: ""; position: absolute; top: 28px; width: 8px; height: 8px; border-radius: 50%; background: #ff6255; box-shadow: 0 0 0 5px rgba(255,98,85,.14); }
.case-device::before { left: 30px; }
.case-device::after { right: 30px; background: #46d486; box-shadow: 0 0 0 5px rgba(70,212,134,.14); }
.case-device span { color: rgba(255,255,255,.66); font-size: 15px; letter-spacing: .17em; font-weight: 900; }
.case-device strong { margin-top: 12px; font-size: 35px; letter-spacing: -.03em; }
.case-device small { margin-top: 7px; color: rgba(255,255,255,.68); font-size: 10px; }
.case-label { position: absolute; z-index: 2; left: 25px; top: 25px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .13em; font-weight: 900; }
.case-product-tag { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 24px; display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.12); backdrop-filter: blur(12px); color: #fff; }
.case-product-tag strong { font-size: 13px; }
.case-product-tag span { color: rgba(255,255,255,.7); font-size: 10px; }
.case-content { align-self: center; padding: 54px; }
.case-content h2 { margin: 0; color: var(--navy-dark); font-size: clamp(32px, 3.4vw, 45px); line-height: 1.12; letter-spacing: -.04em; }
.case-lead { margin: 20px 0 27px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.case-facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.case-facts > div { min-height: 76px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 13px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-facts span { color: #9793a0; font-size: 8px; letter-spacing: .1em; font-weight: 900; }
.case-facts strong { color: #3c3949; font-size: 11px; line-height: 1.35; }
.case-quote { margin-top: 22px; padding: 17px 18px; border-left: 3px solid var(--red); background: #f8f7fb; }
.case-quote span { color: var(--red); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.case-quote p { margin: 6px 0 0; color: #555263; font-size: 12px; line-height: 1.55; }

.technology { background: #fff; }
.tech-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.tech-visual { position: relative; }
.tech-visual::before { content: ""; position: absolute; width: 75%; height: 80%; left: -22px; bottom: -22px; border-radius: 13px; background: var(--navy); }
.tech-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 13px; }
.tech-overlay { position: absolute; z-index: 2; right: -24px; bottom: 32px; display: grid; gap: 5px; width: 220px; padding: 18px; border-radius: 9px; background: #fff; box-shadow: 0 18px 38px rgba(35,27,83,.17); }
.tech-overlay span { color: var(--red); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.tech-overlay strong { color: var(--navy-dark); font-size: 13px; line-height: 1.35; }
.tech-copy h2 { margin: 0; color: var(--navy-dark); font-size: clamp(34px, 4vw, 48px); line-height: 1.1; letter-spacing: -.04em; }
.tech-copy > p { margin: 20px 0 28px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.tech-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.tech-features article { min-height: 147px; padding: 19px; border: 1px solid var(--line); border-radius: 9px; }
.tech-features article > div { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 7px; background: rgba(56,45,126,.08); color: var(--navy); }
.tech-features svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tech-features h3 { margin: 13px 0 6px; color: var(--navy-dark); font-size: 14px; }
.tech-features p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }

.warranty { background: var(--soft); }
.warranty-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.warranty-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.warranty-plan { display: flex; flex-direction: column; padding: 28px 22px; border: 1px solid #dedbe9; border-radius: 12px; background: #fff; }
.warranty-plan.primary { border: 2px solid var(--navy); }
.warranty-plan > span { color: var(--red); font-size: 10px; letter-spacing: .14em; font-weight: 900; }
.warranty-plan > strong { margin-top: 14px; color: var(--navy-dark); font-size: 35px; letter-spacing: -.04em; }
.warranty-plan > small { margin-top: 2px; color: #8d8997; font-size: 10px; }
.warranty-plan ul { display: grid; gap: 12px; margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.warranty-plan li { display: flex; gap: 7px; color: #5d5969; font-size: 10px; line-height: 1.45; }
.warranty-plan li svg { flex: 0 0 14px; width: 14px; height: 14px; fill: none; stroke: var(--red); stroke-width: 2.3; }
.claim-flow { padding: 34px; border-radius: 12px; background: var(--navy-dark); color: #fff; }
.claim-heading h3 { margin: 0; color: #fff; font-size: 27px; letter-spacing: -.025em; }
.claim-flow ol { display: grid; gap: 0; margin: 27px 0; padding: 0; list-style: none; }
.claim-flow li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14); }
.claim-flow li > span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--red); color: #fff; font-size: 10px; font-weight: 900; }
.claim-flow li strong { font-size: 12px; }
.claim-flow li p { margin: 5px 0 0; color: rgba(255,255,255,.65); font-size: 10px; line-height: 1.55; }
.claim-flow .btn-ghost { color: var(--navy-dark); }
.claim-flow .btn svg, .btn-light svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.products { background: #fff; }
.products-heading { margin-left: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: .18s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(40,31,92,.1); }
.featured-product { border: 2px solid var(--navy); }
.product-kicker { color: var(--red); font-size: 8px; letter-spacing: .13em; font-weight: 900; }
.product-image { height: 285px; display: grid; place-items: center; margin: 10px -10px 14px; background: radial-gradient(circle, #fff 0 25%, #f5f3fa 70%); }
.product-image img { width: 200px; height: 270px; object-fit: contain; filter: drop-shadow(0 16px 15px rgba(35,27,83,.17)); }
.featured-product .product-image img { width: 220px; }
.product-card h3 { margin: 0 0 8px; color: var(--navy-dark); font-size: 23px; letter-spacing: -.02em; }
.product-card p { min-height: 46px; margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.product-card > a { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: 12px; font-weight: 900; }
.product-card > a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.product-card > a:hover { color: var(--red); }

.faq { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-intro h2 { margin: 0; color: var(--navy-dark); font-size: clamp(34px, 4vw, 47px); line-height: 1.1; letter-spacing: -.04em; }
.faq-intro p { margin: 17px 0 26px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-list { border-top: 1px solid #d9d6e4; }
.faq-list details { border-bottom: 1px solid #d9d6e4; }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 21px 48px 21px 0; color: var(--navy-dark); font-size: 14px; line-height: 1.4; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 17px; display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; border: 1px solid #d3cfdf; color: var(--navy); font-size: 19px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; color: #fff; border-color: var(--navy); background: var(--navy); }
.faq-list details p { max-width: 700px; margin: -3px 45px 21px 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.final-cta { padding: 76px 0; background: var(--navy); color: #fff; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.final-cta-inner > div:first-child > span { color: #ffaca5; font-size: 9px; letter-spacing: .14em; font-weight: 900; }
.final-cta h2 { margin: 12px 0 0; color: #fff; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; }
.final-actions { flex: 0 0 305px; display: grid; gap: 11px; }
.btn-light { color: var(--navy-dark); background: #fff; }
.btn-light:hover { transform: translateY(-2px); }

.site-footer { padding: 65px 0 22px; background: #17123d; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr .85fr; gap: 54px; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; font-size: 11px; line-height: 1.7; }
.brand.inverted strong { color: #fff; }
.brand.inverted small { color: rgba(255,255,255,.55); }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-title { margin-bottom: 8px; color: #fff; font-size: 12px; }
.footer-grid a, .footer-grid span { font-size: 10px; line-height: 1.5; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; }
.floating-wa { position: fixed; z-index: 45; right: 23px; bottom: 23px; display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 17px; border-radius: 999px; background: #1fae5b; color: #fff; box-shadow: 0 12px 30px rgba(16,111,59,.28); font-size: 11px; font-weight: 900; }
.floating-wa:hover { transform: translateY(-2px); background: #168d49; }
.floating-wa svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero h1 { font-size: 47px; }
  .hero-visual { height: 510px; }
  .product-three { width: 310px; }
  .product-single { left: 0; width: 140px; }
  .floating-card { left: 14px; }
  .trust-stat-grid { gap: 12px; }
  .scope-choice-grid { gap: 14px; }
  .scope-choice-card { padding: 27px; }
  .selector-result-heading { gap: 30px; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { gap: 48px; }
  .process-grid { grid-template-columns: 1fr 42px 1fr 42px 1fr; }
  .calculator-shell { gap: 38px; }
  .choice-grid label > span { padding: 13px; }
  .case-content { padding: 38px; }
  .tech-grid { gap: 42px; }
  .warranty-layout { grid-template-columns: .9fr 1.1fr; }
  .warranty-plans { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 780px) {
  .topline-contact, .nav-cta { display: none; }
  .topline-inner { justify-content: center; }
  .nav-wrap { height: 70px; }
  .brand img { width: 45px; height: 45px; }
  .brand strong { font-size: 18px; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { cursor: pointer; list-style: none; padding: 10px 13px; color: var(--navy); border: 1px solid var(--line); border-radius: 6px; font-size: 12px; font-weight: 900; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; right: 0; top: 48px; width: 210px; display: grid; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 35px rgba(35,27,83,.16); }
  .mobile-menu nav a { padding: 11px; color: #504d60; font-size: 13px; font-weight: 700; }
  .hero-grid { display: flex; flex-direction: column; padding-top: 56px; padding-bottom: 28px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1 { margin-left: auto; margin-right: auto; font-size: clamp(39px, 11vw, 54px); }
  .hero-lead { margin: 0 auto; font-size: 16px; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(560px, 100%); height: 500px; }
  .product-three { right: 6%; }
  .product-single { left: 8%; }
  .trust-proof-section { padding: 40px 0 48px; }
  .trust-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stat-card { min-height: 132px; }
  .trust-proof-section .client-proof { margin-top: 45px; }
  .section { padding: 78px 0; }
  .scope-choice-grid { grid-template-columns: 1fr; max-width: 600px; }
  .scope-choice-card { min-height: 315px; }
  .selector-result { margin-top: 44px; padding-top: 38px; }
  .selector-result-heading { grid-template-columns: 1fr; gap: 13px; text-align: center; }
  .selector-result-heading h3, .selector-result-heading > p { margin-left: auto; margin-right: auto; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 245px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-line { width: 1px; height: 24px; margin: -3px auto; background: repeating-linear-gradient(180deg, rgba(56,45,126,.4) 0 6px, transparent 6px 11px); }
  .comparison-grid, .calculator-shell, .case-card, .tech-grid, .warranty-layout, .faq-grid { grid-template-columns: 1fr; }
  .comparison-banners { grid-template-columns: 1fr; }
  .brand-card-body > p { min-height: 0; }
  .calculator-shell { gap: 42px; }
  .client-proof { margin-bottom: 48px; }
  .client-logos { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
  .case-visual { min-height: 500px; }
  .case-content { padding: 38px 30px; }
  .tech-grid { gap: 64px; }
  .tech-visual { width: calc(100% - 24px); }
  .warranty-layout { gap: 18px; }
  .warranty-plans { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; column-gap: 25px; }
  .product-kicker, .product-card h3, .product-card p, .product-card > a { grid-column: 2; }
  .product-image { grid-column: 1; grid-row: 1/6; width: 100%; margin: 0; }
  .product-card p { min-height: 0; }
  .faq-grid { gap: 44px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .final-actions { width: min(100%, 400px); flex-basis: auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 1180px); }
  .topline { font-size: 10px; }
  .brand small { display: none; }
  .hero-grid { padding-top: 42px; }
  .hero h1 { font-size: 38px; }
  .hero-lead { font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-trust { display: grid; gap: 9px; text-align: left; justify-content: center; }
  .hero-visual { height: 410px; margin-top: 8px; }
  .ring-one { width: 370px; height: 370px; right: -24px; }
  .ring-two { width: 280px; height: 280px; right: 21px; }
  .product-three { width: 255px; height: 390px; right: -2px; }
  .product-single { width: 112px; height: 190px; left: 3px; bottom: 22px; }
  .floating-card { top: 45px; left: 0; padding: 11px 12px; }
  .single-label { left: 0; bottom: 150px; }
  .three-label { right: -2px; top: 48px; }
  .trust-stat-grid { gap: 10px; }
  .trust-stat-card { min-height: 126px; padding: 20px 12px; }
  .trust-stat-card strong, .trust-stat-text strong { font-size: 22px; }
  .trust-stat-card span { margin-top: 9px; font-size: 10px; }
  .comparison-table th, .comparison-table td { padding: 13px 14px; }
  .section-heading h2, .problem h2 { font-size: 34px; }
  .need-selector-heading { margin-bottom: 30px; }
  .scope-choice-card { min-height: 0; padding: 24px; }
  .scope-choice-icon { width: 51px; height: 51px; }
  .scope-choice-card > strong { font-size: 25px; }
  .scope-choice-description { font-size: 13px; }
  .scope-choice-action { padding-top: 25px; }
  .scope-choice-prompt { padding: 0 14px; }
  .selector-result { margin-top: 37px; padding-top: 33px; }
  .selector-result-heading h3 { font-size: 30px; }
  .equipment-grid { grid-template-columns: 1fr; }
  .equipment-card { min-height: 190px; }
  .location-card { min-height: 235px; padding: 24px; }
  .selector-safety-note { align-items: flex-start; }
  .brand-card-body { padding: 23px; }
  .brand-title-row { align-items: flex-start; flex-direction: column; }
  .compare-list > div { grid-template-columns: 92px 1fr; }
  .capacity-note { align-items: flex-start; }
  .calculator-card { padding: 22px 18px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-grid label > span { min-height: 78px; display: grid; grid-template-columns: 38px 1fr; align-items: center; column-gap: 8px; }
  .choice-grid svg { grid-row: 1/3; margin: 0; }
  .choice-grid small { margin: 2px 0 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .case-visual { min-height: 430px; }
  .case-device { width: 205px; height: 265px; }
  .case-content { padding: 30px 22px; }
  .case-content h2, .tech-copy h2, .calculator-copy h2 { font-size: 34px; }
  .case-facts { grid-template-columns: 1fr; }
  .tech-visual { width: 100%; }
  .tech-visual::before { left: -10px; bottom: -12px; }
  .tech-overlay { right: -6px; bottom: 18px; width: 190px; }
  .tech-features { grid-template-columns: 1fr; }
  .tech-features article { min-height: 0; }
  .warranty-plans { grid-template-columns: 1fr; }
  .claim-flow { padding: 27px 22px; }
  .product-card { display: block; }
  .product-image { height: 250px; margin: 10px -10px 14px; }
  .faq-list summary { font-size: 13px; }
  .final-cta { padding: 64px 0; }
  .final-cta h2 { font-size: 35px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .floating-wa { width: 50px; min-height: 50px; justify-content: center; right: 14px; bottom: 14px; padding: 0; }
  .floating-wa span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Shared inner-page system */
.desktop-nav.full-nav { gap: 18px; font-size: 12px; }
.inner-hero { position: relative; overflow: hidden; padding: 82px 0; background: radial-gradient(circle at 84% 18%, rgba(234,51,35,.09), transparent 23%), linear-gradient(135deg,#fff 0%,#f8f6fc 100%); }
.inner-hero::before { content: ""; position: absolute; width: 380px; height: 380px; right: -160px; bottom: -210px; border: 62px solid rgba(56,45,126,.035); border-radius: 50%; }
.inner-hero-grid, .product-page-hero-grid, .faq-page-hero-grid, .articles-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.inner-hero-copy h1 { max-width: 680px; margin: 15px 0 20px; color: var(--navy-dark); font-size: clamp(42px, 5vw, 64px); line-height: 1.04; letter-spacing: -.048em; font-weight: 900; }
.inner-hero-copy > p { max-width: 650px; margin: 0; color: #5e5b6c; font-size: 17px; line-height: 1.72; }
.page-breadcrumb { display: block; margin-bottom: 28px; color: #918d9d; font-size: 10px; }
.page-breadcrumb a { color: var(--navy); font-weight: 800; }
.centered-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.centered-actions .btn svg { width: 18px; height: 18px; }

/* About */
.about-hero-visual { position: relative; min-height: 520px; }
.about-image-frame { position: absolute; inset: 35px 10px 20px 56px; overflow: hidden; border-radius: 16px; background: var(--navy); box-shadow: 0 28px 65px rgba(35,27,83,.18); }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-year, .about-qc { position: absolute; z-index: 2; padding: 18px 20px; border-radius: 11px; background: #fff; box-shadow: 0 17px 38px rgba(35,27,83,.15); }
.about-year { left: 0; bottom: 0; display: grid; }
.about-year strong { color: var(--red); font-size: 34px; line-height: 1; }
.about-year span { margin-top: 6px; color: #737080; font-size: 9px; }
.about-qc { right: -8px; top: 5px; display: flex; align-items: center; gap: 11px; }
.about-qc .pulse { width: 11px; height: 11px; border-radius: 50%; background: #27b968; box-shadow: 0 0 0 5px rgba(39,185,104,.12); }
.about-qc div { display: grid; gap: 4px; }
.about-qc strong { color: var(--navy-dark); font-size: 11px; }
.about-qc small { color: #8d8997; font-size: 9px; }
.story-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.story-grid h2, .locations-copy h2 { margin: 0; color: var(--navy-dark); font-size: clamp(34px,4vw,49px); line-height: 1.1; letter-spacing: -.04em; }
.story-copy { display: grid; gap: 20px; }
.story-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.timeline-section { background: var(--soft); }
.timeline-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.timeline-grid article { min-height: 280px; padding: 27px; border: 1px solid #dfdcea; border-radius: 11px; background: #fff; }
.timeline-grid article > span { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(56,45,126,.08); color: var(--navy); font-size: 9px; letter-spacing: .1em; font-weight: 900; }
.timeline-grid h3 { margin: 60px 0 11px; color: var(--navy-dark); font-size: 20px; line-height: 1.2; }
.timeline-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.team-section { background: #fff; }
.role-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.role-grid article { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.role-grid article > span { color: var(--red); font-size: 10px; font-weight: 900; }
.role-grid h3 { margin: 55px 0 10px; color: var(--navy-dark); font-size: 19px; }
.role-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.about-process { background: var(--navy-dark); color: #fff; }
.process-proof-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.process-proof-copy h2 { margin: 0; color: #fff; font-size: clamp(34px,4vw,48px); line-height: 1.08; letter-spacing: -.04em; }
.process-proof-copy p { margin: 20px 0 28px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.75; }
.process-proof-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.process-proof-list li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.process-proof-list li > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: #fff; font-size: 11px; font-weight: 900; }
.process-proof-list strong { font-size: 13px; }
.process-proof-list p { margin: 6px 0 0; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.55; }
.two-brand-section { background: var(--soft); }
.simple-brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.simple-brand { position: relative; overflow: hidden; padding: 36px; border-radius: 13px; background: #fff; border: 1px solid #dedbe9; }
.simple-brand::after { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; top: -100px; border: 35px solid rgba(56,45,126,.04); border-radius: 50%; }
.simple-brand > span { color: var(--red); font-size: 10px; letter-spacing: .13em; font-weight: 900; }
.jes-simple > span { color: var(--jes); }
.simple-brand h3 { margin: 10px 0 22px; color: var(--navy-dark); font-size: 27px; }
.simple-brand ul { display: grid; gap: 12px; margin: 0 0 27px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.simple-brand li { display: flex; align-items: center; gap: 8px; color: #555264; font-size: 12px; }
.simple-brand li svg { width: 15px; height: 15px; fill: none; stroke: var(--red); stroke-width: 2.4; }
.simple-brand > a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 12px; font-weight: 900; }
.simple-brand > a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.locations-section { background: #fff; }
.locations-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; align-items: stretch; }
.locations-grid > article { padding: 30px; border-radius: 11px; border: 1px solid var(--line); background: #fff; }
.locations-grid article > span { color: var(--red); font-size: 9px; letter-spacing: .12em; font-weight: 900; }
.locations-grid h3 { margin: 28px 0 10px; color: var(--navy-dark); font-size: 21px; }
.locations-grid article p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

/* Product catalogue */
.product-page-hero-grid { grid-template-columns: 1.08fr .92fr; }
.catalog-summary-card { padding: 31px; border-radius: 14px; background: var(--navy-dark); color: #fff; box-shadow: 0 22px 60px rgba(35,27,83,.2); }
.catalog-summary-card > span { color: #ff9188; font-size: 9px; letter-spacing: .13em; font-weight: 900; }
.catalog-summary-card ol { display: grid; gap: 0; margin: 22px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.catalog-summary-card li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.catalog-summary-card b { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--red); font-size: 10px; }
.catalog-summary-card li div { display: grid; gap: 5px; }
.catalog-summary-card strong { font-size: 12px; }
.catalog-summary-card small { color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.45; }
.catalog-notice { background: #f2f0f8; }
.catalog-notice .container { min-height: 78px; display: flex; align-items: center; gap: 15px; }
.catalog-notice svg { flex: 0 0 28px; width: 28px; height: 28px; fill: none; stroke: var(--navy); stroke-width: 1.7; }
.catalog-notice p { margin: 0; color: #575466; font-size: 11px; line-height: 1.6; }
.catalog-notice strong { color: var(--navy-dark); }
.catalog-toolbar { position: sticky; top: 82px; z-index: 20; display: flex; align-items: center; gap: 21px; min-height: 68px; margin-bottom: 28px; padding: 10px 15px; border: 1px solid #dfdcea; border-radius: 10px; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); box-shadow: 0 10px 28px rgba(35,27,83,.07); }
.catalog-toolbar > div { display: flex; align-items: center; gap: 6px; }
.catalog-toolbar div > span { margin-right: 4px; color: #858190; font-size: 9px; font-weight: 900; }
.catalog-toolbar button { cursor: pointer; min-height: 34px; padding: 0 11px; border: 1px solid #e0ddea; border-radius: 6px; background: #fff; color: #5c586a; font: inherit; font-size: 10px; font-weight: 800; }
.catalog-toolbar button.active { border-color: var(--navy); background: var(--navy); color: #fff; }
.catalog-toolbar > strong { margin-left: auto; color: var(--navy); font-size: 11px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.catalog-card { overflow: hidden; padding: 23px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.catalog-card-top { display: flex; align-items: center; justify-content: space-between; }
.catalog-card-top > span { color: var(--red); font-size: 9px; letter-spacing: .12em; font-weight: 900; }
.catalog-jes .catalog-card-top > span { color: var(--jes); }
.catalog-card-top small { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: rgba(56,45,126,.08); color: var(--navy); font-size: 9px; font-weight: 900; }
.catalog-product-visual { height: 230px; display: grid; place-items: center; margin: 9px -5px 16px; background: radial-gradient(circle,#fff 0 20%,#f3f1f8 70%); }
.catalog-product-visual img { width: 155px; height: 215px; object-fit: contain; filter: drop-shadow(0 14px 14px rgba(35,27,83,.17)); }
.jes-device-mock { width: 135px; height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid rgba(51,54,137,.18); background: linear-gradient(145deg,#fff,#e9eaf5); box-shadow: 8px 12px 20px rgba(35,27,83,.14); }
.jes-device-mock span { color: var(--jes); font-size: 18px; font-weight: 900; }
.jes-device-mock b { margin-top: 11px; color: var(--navy-dark); font-size: 16px; }
.jes-device-mock small { margin-top: 5px; color: #888594; font-size: 8px; }
.catalog-card h3 { margin: 0; color: var(--navy-dark); font-size: 22px; }
.catalog-card > p { margin: 5px 0 13px; color: #868290; font-size: 10px; }
.catalog-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.catalog-chips span { padding: 6px 8px; border-radius: 999px; background: #f1eff7; color: var(--navy); font-size: 8px; font-weight: 800; }
.catalog-card ul { display: grid; gap: 8px; margin: 17px 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.catalog-card li { display: flex; align-items: center; gap: 7px; color: #5d5969; font-size: 9px; }
.catalog-card li svg { width: 13px; height: 13px; fill: none; stroke: var(--red); stroke-width: 2.3; }
.catalog-commercial { display: grid; gap: 4px; padding: 13px; border-radius: 7px; background: #f8f7fa; }
.catalog-commercial span { color: #92909d; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.catalog-commercial strong { color: var(--navy-dark); font-size: 12px; }
.catalog-commercial small { color: #8f8b98; font-size: 8px; line-height: 1.4; }
.catalog-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: var(--navy); font-size: 10px; font-weight: 900; }
.catalog-cta svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.catalogue-guide { background: var(--soft); }
.guide-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.guide-grid article { min-height: 205px; padding: 25px; border: 1px solid #dedbe9; border-radius: 10px; background: #fff; }
.guide-grid article > span { color: var(--red); font-size: 10px; font-weight: 900; }
.guide-grid h3 { margin: 50px 0 9px; color: var(--navy-dark); font-size: 18px; }
.guide-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }

/* Documentation */
.docs-hero-collage { position: relative; min-height: 520px; }
.docs-image { position: absolute; overflow: hidden; border-radius: 13px; background: #e8e5f1; box-shadow: 0 19px 45px rgba(35,27,83,.14); }
.docs-image img { width: 100%; height: 100%; object-fit: cover; }
.docs-image-main { width: 78%; height: 370px; right: 0; top: 20px; }
.docs-image-small { width: 42%; height: 300px; left: 0; bottom: 0; border: 8px solid #fff; }
.docs-image-small img { object-fit: contain; background: #f5f3fa; }
.docs-proof-tag { position: absolute; right: 20px; bottom: 10px; display: grid; gap: 5px; padding: 17px 19px; border-radius: 9px; background: var(--navy); color: #fff; }
.docs-proof-tag span { color: #ffaaa3; font-size: 8px; letter-spacing: .12em; font-weight: 900; }
.docs-proof-tag strong { font-size: 12px; }
.docs-filter-bar, .article-topic-bar { background: var(--navy); color: #fff; }
.docs-filter-bar .container, .article-topic-bar .container { min-height: 70px; display: flex; align-items: center; gap: 8px; overflow-x: auto; }
.docs-filter-bar span, .article-topic-bar span { flex: 0 0 auto; margin-right: 10px; color: rgba(255,255,255,.65); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.docs-filter-bar button, .article-topic-bar button { flex: 0 0 auto; cursor: pointer; min-height: 34px; padding: 0 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: transparent; color: rgba(255,255,255,.8); font: inherit; font-size: 9px; font-weight: 800; }
.docs-filter-bar button.active, .article-topic-bar button.active { border-color: #fff; background: #fff; color: var(--navy); }
.proof-library { background: var(--soft); }
.featured-proof-card { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border: 1px solid #dedbe9; border-radius: 15px; background: #fff; box-shadow: 0 22px 55px rgba(35,27,83,.08); }
.proof-visual { position: relative; min-height: 560px; display: grid; place-items: center; background: radial-gradient(circle at 50% 45%,rgba(255,255,255,.17),transparent 42%),linear-gradient(145deg,#4a3b9f,#22195d); }
.proof-status { position: absolute; left: 23px; top: 23px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.13); color: #fff; font-size: 8px; letter-spacing: .1em; font-weight: 900; }
.proof-card-content { align-self: center; padding: 50px; }
.proof-card-content h2 { margin: 0; color: var(--navy-dark); font-size: clamp(32px,4vw,45px); line-height: 1.1; letter-spacing: -.04em; }
.proof-card-content > p { margin: 19px 0 24px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.proof-fields { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.proof-fields > div { display: grid; gap: 6px; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-fields dt { color: #9995a3; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.proof-fields dd { margin: 0; color: #454252; font-size: 10px; font-weight: 800; }
.proof-boundary { margin: 20px 0; padding: 15px 17px; border-left: 3px solid var(--red); background: #f7f6fa; }
.proof-boundary strong { color: var(--red); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.proof-boundary p { margin: 6px 0 0; color: #666273; font-size: 10px; line-height: 1.55; }
.docs-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
.docs-card { overflow: hidden; border: 1px solid #dedbe9; border-radius: 11px; background: #fff; }
.docs-card-image { position: relative; height: 245px; overflow: hidden; background: #efedf5; }
.docs-card-image img { width: 100%; height: 100%; object-fit: cover; }
.docs-card:nth-child(2) .docs-card-image img, .docs-card:nth-child(3) .docs-card-image img { object-fit: contain; }
.docs-card-image span { position: absolute; left: 16px; top: 16px; padding: 7px 10px; border-radius: 999px; background: #fff; color: var(--navy); font-size: 8px; font-weight: 900; }
.docs-card > div:last-child { padding: 24px; }
.docs-card small { color: var(--red); font-size: 8px; letter-spacing: .1em; font-weight: 900; }
.docs-card h3 { margin: 9px 0; color: var(--navy-dark); font-size: 19px; }
.docs-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.docs-card ul { display: grid; gap: 8px; margin: 16px 0 0; padding: 15px 0 0; border-top: 1px solid var(--line); list-style: none; }
.docs-card li { display: flex; gap: 7px; color: #5c5869; font-size: 9px; }
.docs-card li svg { width: 13px; height: 13px; fill: none; stroke: var(--red); stroke-width: 2.3; }
.evidence-standard { background: var(--navy-dark); color: #fff; }
.evidence-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.evidence-grid h2 { margin: 0; color: #fff; font-size: clamp(34px,4vw,48px); line-height: 1.08; letter-spacing: -.04em; }
.evidence-grid > div > p { color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.7; }
.evidence-grid ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.evidence-grid li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.evidence-grid li > span { color: #ff8d84; font-size: 10px; font-weight: 900; }
.evidence-grid li p { margin: 0; color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.6; }
.evidence-grid li strong { color: #fff; }
.documentation-next { background: #fff; }

/* Calculator */
.calculator-page-hero { text-align: center; }
.calculator-page-intro { position: relative; z-index: 1; max-width: 920px; }
.calculator-page-intro h1 { max-width: 850px; margin: 15px auto 20px; color: var(--navy-dark); font-size: clamp(42px,5vw,64px); line-height: 1.04; letter-spacing: -.048em; }
.calculator-page-intro > p { max-width: 760px; margin: 0 auto; color: #5e5b6c; font-size: 16px; line-height: 1.72; }
.calculator-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 28px; color: #625e70; font-size: 10px; font-weight: 800; }
.calculator-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.calculator-trust-row svg { width: 14px; height: 14px; fill: none; stroke: var(--red); stroke-width: 2.4; }
.calculator-workspace { background: var(--soft); }
.full-calculator-card { overflow: hidden; max-width: 960px; margin: 0 auto; border: 1px solid #dedbe9; border-radius: 15px; background: #fff; box-shadow: 0 22px 60px rgba(35,27,83,.1); }
.calculator-progress { display: grid; grid-template-columns: repeat(3,1fr); background: var(--navy-dark); }
.calculator-progress span { min-height: 54px; display: grid; place-items: center; color: rgba(255,255,255,.5); border-right: 1px solid rgba(255,255,255,.14); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.calculator-progress span.active { color: #fff; background: var(--navy); }
.calc-block { padding: 30px 34px; border-bottom: 1px solid var(--line); }
.calc-block-title { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; margin-bottom: 22px; }
.calc-block-title > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: #fff; font-size: 10px; font-weight: 900; }
.calc-block-title h2 { margin: 0; color: var(--navy-dark); font-size: 21px; }
.calc-block-title p { margin: 5px 0 0; color: #888491; font-size: 10px; }
.calc-mode-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.calc-mode-grid button { cursor: pointer; min-height: 130px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px; border: 1px solid #dcd9e6; border-radius: 9px; background: #fff; color: var(--navy); text-align: left; }
.calc-mode-grid button.active { border-color: var(--navy); background: #f3f1fa; box-shadow: inset 0 0 0 1px var(--navy); }
.calc-mode-grid svg { width: 24px; height: 24px; margin-bottom: 12px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.calc-mode-grid strong { color: var(--navy-dark); font-size: 12px; }
.calc-mode-grid small { margin-top: 5px; color: #8b8795; font-size: 9px; }
.split-calc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.calc-label { display: block; margin-bottom: 9px; color: #555163; font-size: 10px; font-weight: 900; }
.segmented-control { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid #dcd9e6; border-radius: 7px; }
.segmented-control.two { grid-template-columns: 1fr 1fr; }
.segmented-control button { cursor: pointer; min-height: 42px; border: 0; border-right: 1px solid #dcd9e6; background: #fff; color: #656171; font: inherit; font-size: 9px; font-weight: 800; }
.segmented-control button:last-child { border-right: 0; }
.segmented-control button.active { background: var(--navy); color: #fff; }
.calc-block textarea { width: 100%; min-height: 120px; resize: vertical; padding: 14px; border: 1px solid #dcd9e6; border-radius: 8px; outline: 0; color: var(--ink); font: inherit; font-size: 11px; line-height: 1.6; }
.calc-block textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(56,45,126,.1); }
.calc-generate { width: 100%; margin-top: 14px; border: 0; cursor: pointer; }
.calculator-result { margin: 28px 34px 34px; padding: 28px; border-radius: 11px; background: #f3f1fa; border: 1px solid #d8d4e8; }
.calculator-result > span { color: var(--red); font-size: 9px; letter-spacing: .12em; font-weight: 900; }
.calculator-result h2 { margin: 9px 0; color: var(--navy-dark); font-size: 25px; }
.calculator-result > p { margin: 0; color: #625e70; font-size: 11px; line-height: 1.65; }
.calculator-result dl { display: grid; grid-template-columns: repeat(3,1fr); margin: 20px 0; border-top: 1px solid #d8d4e8; border-left: 1px solid #d8d4e8; }
.calculator-result dl > div { display: grid; gap: 5px; padding: 12px; border-right: 1px solid #d8d4e8; border-bottom: 1px solid #d8d4e8; }
.calculator-result dt { color: #8d8997; font-size: 8px; text-transform: uppercase; }
.calculator-result dd { margin: 0; color: var(--navy-dark); font-size: 10px; font-weight: 900; }
.calculator-safety { padding: 86px 0; background: var(--navy-dark); color: #fff; }
.calculator-safety-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.calculator-safety-grid > div:first-child > svg { width: 42px; height: 42px; margin-bottom: 22px; fill: none; stroke: #ff8d84; stroke-width: 1.5; }
.calculator-safety h2 { margin: 0; color: #fff; font-size: clamp(34px,4vw,46px); line-height: 1.08; letter-spacing: -.04em; }
.safety-rules { border-top: 1px solid rgba(255,255,255,.15); }
.safety-rules article { display: grid; grid-template-columns: 40px 1fr; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.safety-rules span { color: #ff8d84; font-size: 10px; font-weight: 900; }
.safety-rules p { margin: 0; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.6; }
.calc-explainer { background: #fff; }

/* FAQ */
.faq-page-hero-grid { grid-template-columns: 1fr 1fr; }
.faq-route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-route-grid > a { min-height: 270px; display: flex; flex-direction: column; padding: 27px; border: 1px solid #dedbe9; border-radius: 11px; background: #fff; box-shadow: 0 15px 38px rgba(35,27,83,.07); }
.faq-route-grid > a > span { color: var(--red); font-size: 10px; font-weight: 900; }
.faq-route-grid h3 { margin: 60px 0 10px; color: var(--navy-dark); font-size: 20px; }
.faq-route-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.faq-route-grid strong { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--navy); font-size: 10px; }
.faq-route-grid svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.faq-page-section { background: #fff; }
.faq-page-section.alternate { background: var(--soft); }
.faq-page-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.faq-side { position: sticky; top: 120px; align-self: start; }
.faq-side h2 { margin: 0; color: var(--navy-dark); font-size: clamp(34px,4vw,46px); line-height: 1.08; letter-spacing: -.04em; }
.faq-side p { margin: 17px 0 25px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.expanded-faq-list details p { font-size: 13px; }
.faq-contact-strip { padding: 65px 0; background: var(--navy-dark); color: #fff; }
.faq-contact-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.faq-contact-strip span { color: #ff9f97; font-size: 9px; letter-spacing: .13em; font-weight: 900; }
.faq-contact-strip h2 { margin: 10px 0 0; color: #fff; font-size: 35px; }
.faq-contact-strip .container > div:last-child { display: flex; gap: 10px; }

/* Articles */
.articles-hero-grid { grid-template-columns: 1fr .72fr; }
.featured-article-card { position: relative; overflow: hidden; min-height: 470px; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; border-radius: 14px; background: linear-gradient(145deg,#453795,#211956); color: #fff; box-shadow: 0 24px 60px rgba(35,27,83,.2); }
.featured-article-card::before { content: ""; position: absolute; width: 330px; height: 330px; right: -90px; top: -100px; border: 50px solid rgba(255,255,255,.04); border-radius: 50%; }
.featured-label { position: absolute; left: 25px; top: 25px; color: #ffaaa3; font-size: 8px; letter-spacing: .12em; font-weight: 900; }
.featured-article-icon { position: absolute; right: 28px; top: 28px; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 10px; background: rgba(255,255,255,.1); }
.featured-article-icon svg { width: 25px; height: 25px; fill: none; stroke: #fff; stroke-width: 1.6; }
.featured-article-card small { color: #ffaaa3; font-size: 8px; letter-spacing: .1em; font-weight: 900; }
.featured-article-card h2 { margin: 12px 0; color: #fff; font-size: 29px; line-height: 1.14; }
.featured-article-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.6; }
.featured-article-card > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: #fff; font-size: 10px; font-weight: 900; }
.featured-article-card > a svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.articles-hub { background: var(--soft); }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.article-card { min-height: 380px; display: flex; flex-direction: column; padding: 25px; border: 1px solid #dedbe9; border-radius: 11px; background: #fff; transition: .18s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(35,27,83,.09); }
.article-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 43px; }
.article-card-top > div { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 8px; background: rgba(56,45,126,.08); color: var(--navy); }
.article-card-top svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.article-card-top > span { color: #e6e3ed; font-size: 36px; font-weight: 900; }
.article-card > small { color: var(--red); font-size: 8px; letter-spacing: .1em; font-weight: 900; }
.article-card h3 { margin: 10px 0; color: var(--navy-dark); font-size: 19px; line-height: 1.25; }
.article-card > p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.review-chip { align-self: flex-start; margin-top: 14px; padding: 6px 8px; border-radius: 999px; background: #fff0ee; color: var(--red); font-size: 7px; letter-spacing: .08em; font-weight: 900; }
.article-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.article-card-footer > span { color: #8d8997; font-size: 8px; }
.article-card-footer a { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-size: 9px; font-weight: 900; }
.article-card-footer svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.editorial-standard { background: var(--navy-dark); color: #fff; }
.editorial-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.editorial-grid h2 { margin: 0; color: #fff; font-size: clamp(34px,4vw,48px); line-height: 1.08; letter-spacing: -.04em; }
.editorial-grid > div:first-child > p { color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.7; }
.editorial-checklist { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.editorial-checklist article { min-height: 170px; padding: 23px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.editorial-checklist article > span { color: #ff9188; font-size: 9px; font-weight: 900; }
.editorial-checklist strong { display: block; margin-top: 35px; font-size: 12px; }
.editorial-checklist p { margin: 6px 0 0; color: rgba(255,255,255,.62); font-size: 9px; line-height: 1.55; }
.commercial-bridge { background: #fff; }
.commercial-bridge-grid { display: grid; grid-template-columns: 1.3fr repeat(3,1fr); gap: 13px; align-items: stretch; }
.commercial-bridge-grid h2 { margin: 0; color: var(--navy-dark); font-size: 32px; line-height: 1.12; letter-spacing: -.035em; }
.commercial-bridge-grid > a { min-height: 175px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid var(--line); border-radius: 9px; }
.commercial-bridge-grid > a:hover { border-color: var(--navy); }
.commercial-bridge-grid > a strong { color: var(--navy-dark); font-size: 13px; }
.commercial-bridge-grid > a span { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-size: 9px; font-weight: 900; }
.commercial-bridge-grid svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

@media (max-width: 1100px) {
  .desktop-nav, .desktop-nav.full-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { cursor: pointer; list-style: none; padding: 10px 13px; color: var(--navy); border: 1px solid var(--line); border-radius: 6px; font-size: 12px; font-weight: 900; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; z-index: 20; right: 0; top: 48px; width: 220px; display: grid; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 35px rgba(35,27,83,.16); }
  .mobile-menu nav a { padding: 11px; color: #504d60; font-size: 13px; font-weight: 700; }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .article-grid { grid-template-columns: repeat(2,1fr); }
  .timeline-grid, .role-grid { grid-template-columns: repeat(2,1fr); }
  .commercial-bridge-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .inner-hero { padding: 62px 0; }
  .inner-hero-grid, .product-page-hero-grid, .faq-page-hero-grid, .articles-hero-grid, .story-grid, .process-proof-grid, .locations-grid, .featured-proof-card, .evidence-grid, .calculator-safety-grid, .faq-page-grid, .editorial-grid { grid-template-columns: 1fr; gap: 44px; }
  .inner-hero-copy { text-align: center; }
  .inner-hero-copy h1 { font-size: 45px; }
  .inner-hero-copy > p { margin-left: auto; margin-right: auto; }
  .inner-hero-copy .hero-actions { justify-content: center; }
  .page-breadcrumb { margin-bottom: 20px; }
  .about-hero-visual, .docs-hero-collage { min-height: 450px; }
  .story-grid { gap: 28px; }
  .timeline-grid, .role-grid, .simple-brand-grid, .warranty-plans, .docs-card-grid, .guide-grid { grid-template-columns: 1fr 1fr; }
  .process-proof-grid, .evidence-grid, .calculator-safety-grid, .editorial-grid { gap: 50px; }
  .catalog-toolbar { position: static; align-items: flex-start; flex-direction: column; }
  .catalog-toolbar > div { width: 100%; flex-wrap: wrap; }
  .catalog-toolbar > strong { margin-left: 0; }
  .proof-card-content { padding: 35px; }
  .faq-side { position: static; }
  .faq-page-grid { gap: 35px; }
  .faq-contact-strip .container { align-items: flex-start; flex-direction: column; }
  .article-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .inner-hero-copy h1, .calculator-page-intro h1 { font-size: 37px; }
  .inner-hero-copy > p, .calculator-page-intro > p { font-size: 14px; }
  .about-hero-visual { min-height: 380px; }
  .about-image-frame { inset: 35px 0 25px 25px; }
  .about-qc { right: 0; }
  .about-year { left: 0; }
  .timeline-grid, .role-grid, .simple-brand-grid, .locations-grid, .catalog-grid, .docs-card-grid, .guide-grid, .article-grid, .editorial-checklist, .commercial-bridge-grid { grid-template-columns: 1fr; }
  .timeline-grid article, .role-grid article { min-height: 210px; }
  .timeline-grid h3, .role-grid h3 { margin-top: 35px; }
  .catalog-toolbar div > span { width: 100%; }
  .catalog-product-visual { height: 210px; }
  .docs-hero-collage { min-height: 380px; }
  .docs-image-main { width: 86%; height: 280px; }
  .docs-image-small { width: 46%; height: 220px; }
  .proof-visual { min-height: 420px; }
  .proof-card-content { padding: 27px 21px; }
  .proof-fields { grid-template-columns: 1fr; }
  .calc-mode-grid, .split-calc-block, .calculator-result dl { grid-template-columns: 1fr; }
  .calc-block { padding: 24px 18px; }
  .calculator-result { margin: 21px 18px 25px; padding: 22px; }
  .calculator-progress span { font-size: 7px; }
  .segmented-control { grid-template-columns: 1fr; }
  .segmented-control button { border-right: 0; border-bottom: 1px solid #dcd9e6; }
  .faq-route-grid { grid-template-columns: 1fr; }
  .faq-route-grid > a { min-height: 220px; }
  .faq-contact-strip .container > div:last-child { width: 100%; flex-direction: column; }
  .featured-article-card { min-height: 410px; padding: 26px; }
  .commercial-bridge-grid h2 { margin-bottom: 12px; }
}

/* sz-adminbar-compat — hanya berpengaruh saat admin login */
body.admin-bar.sz-stuck .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar.sz-stuck .site-header { top: 46px; } }
#wpadminbar [id^="wp-admin-bar-twb"] > .ab-item > *, #wpadminbar [id^="wp-admin-bar-twb"] .twb_admin_bar_menu_main, #wpadminbar .twb_admin_bar_menu { display: none !important; }
#wpadminbar img, #wpadminbar svg { display: inline-block; }
/* ================= sz-revisi-1 : revisi homepage v2 ================= */
.hero-lead-alt { margin-top: 15px; color: #6a677a; font-size: 16px; line-height: 1.7; }

.tech-overlay { width: 264px; }
.tech-overlay small { color: var(--muted); font-size: 11px; line-height: 1.5; }

.calc-alt { margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.calc-alt-kicker { display: block; color: #ff8d84; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.calc-alt p { margin: 10px 0 17px; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; }

.comparison-banners img { height: auto; aspect-ratio: 2 / 1; object-fit: contain; padding: 8px; background: #fff; }



.quality { background: linear-gradient(165deg, #241d5c 0%, #382d7e 100%); color: #fff; }
.quality .section-heading h2 { color: #fff; }
.quality .section-heading p { color: rgba(255,255,255,.72); }
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.quality-card { padding: 28px 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.05); }
.quality-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--red); box-shadow: 0 10px 24px rgba(234,51,35,.28); }
.quality-icon svg { width: 21px; height: 21px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.quality-card h3 { margin: 19px 0 9px; color: #fff; font-size: 18px; letter-spacing: -.02em; font-weight: 900; }
.quality-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; }
.quality-brands { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.quality-brand { display: flex; align-items: center; gap: 22px; padding: 22px 26px; border-radius: 14px; background: #fff; }
.quality-brand img { width: 78px; height: auto; flex: none; }
.quality-brand strong { display: block; color: var(--navy-dark); font-size: 19px; letter-spacing: -.02em; font-weight: 900; }
.quality-brand.is-jes strong { color: var(--jes); }
.quality-brand span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.6; }

@media (max-width: 1020px) { .quality-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .quality-grid, .quality-brands { grid-template-columns: 1fr; } }
.btn .ico-wa { width: 18px; height: 18px; fill: currentColor; stroke: none; }

/* ================= sz-hero-lineup ================= */
.hero-visual-lineup { height: auto; min-height: 520px; display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: 24px 0 96px; }
.hero-visual-lineup .lineup { position: relative; margin: 0; }
.hero-visual-lineup .lineup img { width: 100%; height: auto; filter: drop-shadow(0 24px 30px rgba(35,27,83,.16)); }
.lineup-jes { width: 93%; margin-left: auto; }
.lineup-badge { position: absolute; z-index: 3; top: -16px; left: -12px; display: grid; padding: 10px 16px; border-radius: 9px; background: #fff; box-shadow: 0 14px 30px rgba(35,27,83,.16); font-size: 14px; font-weight: 900; letter-spacing: .05em; line-height: 1; }
.lineup-badge small { margin-top: 6px; color: #757187; font-size: 8px; letter-spacing: .11em; text-transform: uppercase; font-weight: 800; }
.badge-shinzo { color: var(--red); }
.badge-jes { left: auto; right: -12px; color: var(--jes); }
@media (max-width: 1020px) { .hero-visual-lineup { min-height: 0; gap: 24px; padding: 12px 0 78px; } }
@media (max-width: 780px) { .hero-visual-lineup { width: 100%; padding: 6px 0 72px; } .lineup-badge { top: -12px; left: 0; padding: 8px 13px; font-size: 12px; } .badge-jes { left: auto; right: 0; } }

/* sz-hero-lineup: reposisi kartu "Pemeriksaan sebelum kirim" agar tidak menutupi produk */
.hero-visual-lineup .floating-card { top: auto; left: 0; bottom: 8px; }
@media (max-width: 1020px) { .hero-visual-lineup .floating-card { left: 0; bottom: 2px; } }
@media (max-width: 780px) { .hero-visual-lineup .floating-card { top: auto; bottom: 0; padding: 11px 12px; } }

/* ================= sz-case-carousel ================= */
.case-visual { display: block; background: #251c64; }
.case-visual::before { display: none; }
.case-photo { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .5s ease; pointer-events: none; }
.case-photo.is-active { opacity: 1; pointer-events: auto; }
.case-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25,19,66,.62) 0%, rgba(25,19,66,0) 24%, rgba(25,19,66,0) 44%, rgba(25,19,66,.78) 100%); }
.case-photo .case-product-tag { z-index: 2; }

.case-text { display: none; }
.case-text.is-active { display: block; }
.case-text .section-kicker { display: block; margin-bottom: 14px; }
.case-content h2 { margin-bottom: 24px; }
.case-texts { min-height: 300px; }

.case-nav { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.case-arrow { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid #ddd9e8; border-radius: 9px; background: #fff; color: var(--navy); cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.case-arrow svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.case-arrow:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.case-dots { display: flex; align-items: center; gap: 7px; margin-left: 6px; }
.case-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #d6d2e3; cursor: pointer; transition: width .25s ease, background .25s ease; }
.case-dot.is-active { width: 22px; border-radius: 5px; background: var(--red); }
.case-counter { margin-left: auto; color: #8d899a; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.case-counter b { color: var(--navy-dark); }

.case-more { margin-top: 26px; padding: 22px 22px 24px; border-left: 3px solid var(--red); border-radius: 0 10px 10px 0; background: #f8f7fb; }
.case-more span { display: block; color: var(--navy-dark); font-size: 15px; font-weight: 900; letter-spacing: -.02em; }
.case-more p { margin: 8px 0 16px; color: #555263; font-size: 13px; line-height: 1.6; }
.case-more .btn { padding: 13px 20px; font-size: 13px; }

@media (max-width: 1020px) { .case-visual { min-height: 460px; } .case-texts { min-height: 0; } }
@media (max-width: 700px) { .case-visual { min-height: 380px; } .case-nav { flex-wrap: wrap; } .case-counter { margin-left: 0; width: 100%; } }

/* sz-batch2: grid lokasi jadi 4 kartu */
.location-grid { grid-template-columns: repeat(4, 1fr); }
.location-card > strong { max-width: 100%; font-size: 24px; }
@media (max-width: 1100px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================= sz-scroll-reveal (mengikuti pola homepage asli) ================= */
.sz-js .hero-copy > *,
.sz-js .trust-stat-card,
.sz-js .client-proof,
.sz-js .section-heading,
.sz-js .scope-choice-card,
.sz-js .scope-choice-prompt,
.sz-js .problem-copy,
.sz-js .problem-list > div,
.sz-js .calculator-copy,
.sz-js .calculator-card,
.sz-js .tech-visual,
.sz-js .tech-copy,
.sz-js .quality-card,
.sz-js .process-grid > article,
.sz-js .comparison-banners > img,
.sz-js .comparison-table-wrap,
.sz-js .case-card,
.sz-js .warranty-plan,
.sz-js .claim-flow,
.sz-js .product-card,
.sz-js .faq-intro,
.sz-js .faq-list > details,
.sz-js .final-cta-inner > div {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.sz-js .hv-in { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .sz-js .hero-copy > *, .sz-js .trust-stat-card, .sz-js .client-proof, .sz-js .section-heading,
  .sz-js .scope-choice-card, .sz-js .scope-choice-prompt, .sz-js .problem-copy, .sz-js .problem-list > div,
  .sz-js .calculator-copy, .sz-js .calculator-card, .sz-js .tech-visual, .sz-js .tech-copy,
  .sz-js .quality-card, .sz-js .process-grid > article, .sz-js .comparison-banners > img,
  .sz-js .comparison-table-wrap, .sz-js .case-card, .sz-js .warranty-plan, .sz-js .claim-flow,
  .sz-js .product-card, .sz-js .faq-intro, .sz-js .faq-list > details, .sz-js .final-cta-inner > div {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ================= sz-about-v2 ================= */
.about-logo-visual { position: relative; min-height: 380px; display: grid; place-items: center; padding: 20px 0; }
.about-brandmark { position: relative; z-index: 2; width: min(340px, 76%); height: auto; filter: drop-shadow(0 24px 44px rgba(35,27,83,.16)); }

.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.vision-card { padding: 32px 30px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.vision-card > span { display: block; color: var(--red); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; }
.vision-card p { margin: 14px 0 0; color: #4c4959; font-size: 15px; line-height: 1.72; }
.vision-card ol { margin: 16px 0 0; padding: 0; list-style: none; counter-reset: sz-misi; display: grid; gap: 14px; }
.vision-card ol li { position: relative; padding-left: 34px; color: #4c4959; font-size: 14px; line-height: 1.65; counter-increment: sz-misi; }
.vision-card ol li::before { content: counter(sz-misi, decimal-leading-zero); position: absolute; left: 0; top: 1px; color: var(--navy); font-size: 11px; font-weight: 900; letter-spacing: .04em; }
.mission-card { background: #fff; }

.promise-list { display: grid; gap: 14px; margin-top: 40px; }
.promise-item { display: flex; align-items: flex-start; gap: 18px; padding: 22px 26px; border: 1px solid #ddd9e8; border-radius: 13px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.promise-item:hover { border-color: rgba(56,45,126,.35); box-shadow: 0 14px 32px rgba(40,31,92,.08); }
.promise-icon { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red); box-shadow: 0 8px 20px rgba(234,51,35,.24); }
.promise-icon svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.promise-item h3 { margin: 2px 0 6px; color: var(--navy); font-size: 17px; letter-spacing: -.02em; font-weight: 900; }
.promise-item p { margin: 0; color: #565364; font-size: 14px; line-height: 1.65; }

.locations-grid.one-location { grid-template-columns: 1.15fr 1fr; }

@media (max-width: 860px) {
  .vision-grid { grid-template-columns: 1fr; }
  .locations-grid.one-location { grid-template-columns: 1fr; }
  .promise-item { padding: 20px; gap: 14px; }
  .about-logo-visual { min-height: 240px; }
}

/* ================= sz-about-rev1 ================= */
/* Variasi latar supaya section tidak putih semua */
.about-story { background: var(--soft); }
.two-brand-section { background: var(--soft); }
.locations-section { background: var(--soft); }
.vision-section, .promise-section { background: #fff; }

/* Paragraf hero punya jarak antar-paragraf */
.inner-hero-copy p { margin: 0 0 16px; }
.inner-hero-copy p:last-of-type { margin-bottom: 0; }
.inner-hero-copy .hero-actions { margin-top: 28px; }

/* Cerita kami: kolom judul menempel saat discroll + aksen */
.about-story .story-grid > div:first-child { position: relative; }
.about-story .story-copy p { position: relative; padding-left: 20px; }
.about-story .story-copy p::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 2px; border-radius: 2px; background: linear-gradient(180deg, rgba(234,51,35,.55), rgba(56,45,126,.14)); }

/* Visi & Misi: highlight saat hover */
.vision-card { position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.vision-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); transform: scaleY(0); transform-origin: top center; transition: transform .32s ease; }
.vision-card:hover { transform: translateY(-4px); border-color: rgba(56,45,126,.34); box-shadow: 0 20px 44px rgba(40,31,92,.11); background: #fff; }
.vision-card:hover::before { transform: scaleY(1); }
.vision-card:hover > span { color: var(--navy); }
.mission-card:hover { background: var(--soft); }
@media (prefers-reduced-motion: reduce) { .vision-card, .vision-card::before { transition: none; } .vision-card:hover { transform: none; } }

/* Fade-in untuk elemen khas halaman Tentang Kami */
.sz-js .inner-hero-copy > *,
.sz-js .about-hero-visual,
.sz-js .story-grid > div,
.sz-js .vision-card,
.sz-js .process-proof-copy,
.sz-js .process-proof-list > li,
.sz-js .simple-brand,
.sz-js .promise-item,
.sz-js .locations-copy,
.sz-js .locations-grid > article {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
@media (prefers-reduced-motion: reduce) {
  .sz-js .inner-hero-copy > *, .sz-js .about-hero-visual, .sz-js .story-grid > div, .sz-js .vision-card,
  .sz-js .process-proof-copy, .sz-js .process-proof-list > li, .sz-js .simple-brand, .sz-js .promise-item,
  .sz-js .locations-copy, .sz-js .locations-grid > article {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

.promise-section h2 em { color: var(--red); font-style: normal; }
