/* ---------- Type ----------
 *
 * Self-hosted, not loaded from Google. The page carries a section about
 * keeping health data in Malaysia; opening it by sending every visitor's IP
 * address to a third party to fetch a font undercuts that, and there is no
 * upside -- these files are smaller than the round trip they replace.
 *
 * Both families are variable, so one file covers every weight the design uses
 * instead of one file per weight. Licence: SIL Open Font License 1.1 for both;
 * the notices are in assets/fonts/OFL-inter.txt and OFL-sora.txt and must stay
 * there if the fonts do.
 *
 * The latin-ext files are declared but cost nothing unless they are needed:
 * a browser only downloads a subset when the page actually contains a
 * character inside its unicode-range. Today none do. They are here so that an
 * accented name added to the copy later renders instead of falling back
 * mid-sentence.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('assets/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('assets/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #c8102e;
  --red-dark: #a30d25;
  --ink: #1d2230;
  --slate: #4a5160;
  --muted: #6b7280;
  --line: #e6e8ee;
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --bg-deep: #11151f;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(17, 21, 31, 0.08);
  --shadow-sm: 0 4px 14px rgba(17, 21, 31, 0.06);
  --maxw: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Sora", var(--font);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand-logo { height: 34px; width: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a { font-weight: 500; font-size: 0.95rem; color: var(--slate); transition: color 0.18s; }
.nav-menu a:hover { color: var(--ink); }
.nav-cta {
  background: var(--red); color: #fff !important; padding: 10px 18px;
  border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: all 0.18s; font-family: var(--font);
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem;
  font-weight: 700; color: var(--red); margin: 0 0 14px;
}
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(200, 16, 46, 0.10), transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 100%);
  padding: 76px 0 64px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 {
  font-family: var(--display); font-weight: 800; line-height: 1.06;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin: 0 0 22px; letter-spacing: -0.02em;
}
.accent { color: var(--red); }
.lede { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--slate); margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

/* Product preview window */
.hero-product { width: 100%; }
.window {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(17, 21, 31, 0.16); overflow: hidden;
}
.window-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: #f3f4f8; border-bottom: 1px solid var(--line);
}
.window-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #d3d7e0; }
.window-bar .dot:nth-child(1) { background: #ff5f57; }
.window-bar .dot:nth-child(2) { background: #febc2e; }
.window-bar .dot:nth-child(3) { background: #28c840; }
.window-url {
  margin-left: 10px; font-size: 0.78rem; color: #98a0b3; background: #fff;
  border: 1px solid var(--line); border-radius: 6px; padding: 3px 12px; flex: 1; text-align: center;
}
.window-body { padding: 18px 20px 20px; }
.pv-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; }
.pv-name { font-family: var(--display); font-weight: 700; font-size: 1rem; margin: 0; color: var(--ink); }
.pv-sub { margin: 2px 0 0; font-size: 0.8rem; color: var(--muted); }
.pv-flag {
  font-size: 0.72rem; font-weight: 700; color: #fff; background: var(--red);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.pv-chart svg { width: 100%; height: auto; display: block; }
.pv-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.pv-legend { display: flex; gap: 16px; }
.pv-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--slate); }
.pv-legend .ln { width: 18px; height: 0; border-top: 3px solid; border-radius: 2px; }
.pv-legend .ln.base { border-color: #b6bcc9; border-top-style: dashed; }
.pv-legend .ln.cur { border-color: var(--red); }
.pv-stats { display: flex; gap: 10px; }
.pv-stat { display: flex; flex-direction: column; font-size: 0.82rem; color: var(--ink); font-weight: 700; }
.pv-stat b { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.pv-caption { text-align: center; font-size: 0.78rem; color: var(--muted); margin: 12px 0 0; }

/* Animated hero loop */
.tease { position: relative; }
.chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 13px; font-size: 0.82rem; font-weight: 600; color: var(--slate);
  box-shadow: var(--shadow-sm); white-space: nowrap;
  animation: chipfly 9s ease-in-out infinite;
}
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--red); flex: none; }
.chip.c1 { left: 1%;  top: 4%;  --dx: 190px;  --dy: 150px; animation-delay: 0s; }
.chip.c2 { left: 60%; top: 0%;  --dx: -170px; --dy: 160px; animation-delay: .35s; }
.chip.c3 { left: 0%;  top: 66%; --dx: 185px;  --dy: -120px; animation-delay: .7s; }
.chip.c4 { left: 58%; top: 70%; --dx: -160px; --dy: -135px; animation-delay: .2s; }
.chip.c5 { left: 30%; top: -3%; --dx: 25px;   --dy: 165px; animation-delay: .5s; }
@keyframes chipfly {
  0%   { opacity: 0; transform: translate(0,0) scale(.96); }
  7%   { opacity: 1; }
  14%  { transform: translate(0,0) scale(1); }
  38%  { opacity: 1; transform: translate(0,0) scale(1); }
  54%  { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(.14); }
  100% { opacity: 0; }
}
.tease-draw { stroke-dasharray: 520; stroke-dashoffset: 520; animation: teasedraw 9s ease-in-out infinite; }
@keyframes teasedraw {
  0%, 54% { stroke-dashoffset: 520; }
  73%     { stroke-dashoffset: 0; }
  96%     { stroke-dashoffset: 0; }
  100%    { stroke-dashoffset: 520; }
}
.hero-product .pv-flag { animation: teasepop 9s ease-in-out infinite; }
@keyframes teasepop {
  0%, 70% { opacity: 0; transform: scale(.8); }
  78%     { opacity: 1; transform: scale(1); }
  96%     { opacity: 1; }
  100%    { opacity: 0; }
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 12px; list-style: none; padding: 0; margin: 0;
}
.hero-badges li {
  font-size: 0.85rem; font-weight: 600; color: var(--slate);
  background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); padding: 26px 0; }
.trust-label { text-align: center; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  list-style: none; padding: 0; margin: 0;
}
.trust-logos li { font-family: var(--display); font-weight: 700; color: #aab0bd; font-size: 1.05rem; letter-spacing: 0.01em; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head h2, .about-copy h2, .contact-copy h2 {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.1; margin: 0 0 16px;
}
.section-sub { font-size: 1.1rem; color: var(--slate); margin: 0; }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { font-family: var(--display); font-size: 1.15rem; margin: 0 0 10px; }
.card p { margin: 0 0 8px; color: var(--slate); font-size: 0.98rem; }
.platform-grid .card h3 { color: var(--ink); }
.platform-grid .card { border-top: 3px solid var(--red); }
.platform-note {
  margin: 32px auto 0; max-width: 760px; text-align: center; color: var(--muted);
  font-size: 0.98rem;
}

/* Service block */
.service-block { margin-bottom: 52px; }
.service-intro { max-width: 700px; margin-bottom: 28px; }
.service-intro h3 { font-family: var(--display); font-size: 1.5rem; margin: 0 0 10px; }
.service-intro p { color: var(--slate); margin: 0; }
.phase { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.phase-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red); background: rgba(200, 16, 46, 0.08);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.phase h4 { font-family: var(--display); font-size: 1.2rem; margin: 0 0 14px; }
.phase ul { margin: 0; padding-left: 18px; color: var(--slate); }
.phase li { margin-bottom: 7px; font-size: 0.95rem; }

.svc-cards .card-feature { border-radius: var(--radius-lg); padding: 30px; }
.card-feature h3 { font-size: 1.25rem; }
.text-link { color: var(--red); font-weight: 600; font-size: 0.95rem; }
.text-link:hover { color: var(--red-dark); }
.muted { color: var(--muted); font-size: 0.85rem; font-weight: 600; }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.about-copy p { color: var(--slate); margin: 0 0 16px; }
.cred-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.cred-list li {
  padding-left: 28px; position: relative; color: var(--slate);
}
.cred-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.14);
}
.team { background: var(--bg-deep); color: #fff; border-radius: var(--radius-lg); padding: 30px; }
.team-title { font-family: var(--display); margin: 0 0 18px; font-size: 1.1rem; color: #fff; }
.member { padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.member:first-of-type { border-top: none; padding-top: 0; }
.member h4 { font-family: var(--display); margin: 0 0 4px; font-size: 1.1rem; }
.member p { margin: 0; color: #aeb6c6; font-size: 0.9rem; }

/* ---------- Clients ---------- */
.client-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.client-grid li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 16px; text-align: center; font-family: var(--display); font-weight: 700;
  color: var(--slate); box-shadow: var(--shadow-sm);
}

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-copy p { color: var(--slate); }
.contact-details { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.contact-details li { display: flex; flex-direction: column; }
.contact-details span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.contact-details a { font-weight: 600; color: var(--ink); }
.contact-details a:hover { color: var(--red); }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--slate); }
.field input, .field textarea {
  font-family: var(--font); font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px; background: #fcfcfd; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12); background: #fff;
}
.field textarea { resize: vertical; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-status { margin: 0; font-size: 0.92rem; font-weight: 600; }
.form-status.ok { color: #15803d; }
.form-status.err { color: var(--red); }
.form-fallback { grid-column: 1 / -1; margin: 4px 0 0; font-size: 0.88rem; color: var(--muted); }
.form-fallback a { color: var(--red); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #cdd3df; padding: 48px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { height: 30px; filter: brightness(0) invert(1); opacity: 0.92; margin-bottom: 12px; }
.footer-brand p { margin: 0; font-size: 0.88rem; color: #98a0b3; line-height: 1.5; }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a { color: #cdd3df; font-weight: 500; font-size: 0.92rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal { width: 100%; margin: 8px 0 0; font-size: 0.82rem; color: #6c7589; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }

/* ---------- Section head variants ---------- */
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 820px; }
.on-dark h2 { color: #fff; }
.on-dark .eyebrow { color: #ff8597; }

/* ---------- Point of view / compare ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-col { border-radius: var(--radius-lg); padding: 30px; }
.compare-col h3 { font-family: var(--display); font-size: 1.15rem; margin: 0 0 16px; }
.compare-col ul { margin: 0; padding-left: 20px; }
.compare-col li { margin-bottom: 12px; color: var(--slate); }
.compare-col.old { background: var(--bg-alt); border: 1px solid var(--line); }
.compare-col.old h3 { color: var(--muted); }
.compare-col.new { background: #fff; border: 1px solid rgba(200,16,46,0.25); box-shadow: var(--shadow); }
.compare-col.new h3 { color: var(--red); }

/* ---------- Status pills ---------- */
.status { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.status-live { background: rgba(40,170,90,0.12); color: #1f8b4c; }
.status-soon { background: rgba(214,158,46,0.15); color: #a9760a; }
.status-plan { background: #eef0f5; color: #7a8294; }

/* ---------- Module spotlight ---------- */
.module-spot { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 40px; }
.module-spot-copy { padding: 34px; border-left: 4px solid #1f8b4c; }
.module-spot-copy h3 { font-family: var(--display); font-size: 1.45rem; margin: 0 0 12px; }
.module-spot-copy > p { color: var(--slate); margin: 0 0 16px; }
.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tick-list li { position: relative; padding-left: 28px; color: var(--slate); font-size: 0.96rem; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #1f8b4c; font-weight: 800; }
.module-spot-aside { background: var(--bg-deep); color: #fff; padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.aside-kicker { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: #98a0b3; margin: 0 0 6px; font-weight: 700; }
.aside-big { font-family: var(--display); font-weight: 800; font-size: 2.4rem; margin: 0 0 12px; letter-spacing: -0.01em; }
.aside-note { font-size: 0.86rem; color: #aeb6c6; margin: 0; line-height: 1.6; }
.roadmap-label { text-align: center; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; margin: 0 0 24px; }
.platform-grid .status { margin-bottom: 10px; }

/* ---------- Wedge ---------- */
.wedge { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; border-top: 3px solid var(--red); box-shadow: var(--shadow-sm); }
.wedge h3 { font-family: var(--display); font-size: 1.18rem; margin: 0 0 12px; }
.wedge p { color: var(--slate); margin: 0; font-size: 0.97rem; }

/* ---------- Outcomes (dark) ---------- */
.section-dark { background: var(--bg-deep); color: #cdd3df; }
.outcomes { margin-top: 8px; }
.outcome { text-align: center; padding: 16px; }
.outcome .big { font-family: var(--display); font-weight: 800; font-size: 2.1rem; color: #fff; display: block; margin-bottom: 10px; }
.outcome .big::after { content: ""; display: block; width: 36px; height: 3px; background: var(--red); margin: 12px auto 0; border-radius: 2px; }
.outcome p { color: #aeb6c6; margin: 0; font-size: 0.98rem; }

/* ---------- Vision ---------- */
.vision-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.vision-card h3 { font-family: var(--display); font-size: 1.12rem; margin: 0 0 10px; }
.vision-card p { color: var(--slate); margin: 0; font-size: 0.96rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: none; }
  .hero-product { max-width: 560px; }
  .module-spot { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 18px;
    box-shadow: var(--shadow); display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 6px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .section { padding: 60px 0; }
  .hero { padding: 52px 0 48px; }
  .grid-3 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .client-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .chip, .tease-draw, .hero-product .pv-flag { animation: none !important; }
  .chip { opacity: 0; }
  .tease-draw { stroke-dashoffset: 0; }
  .hero-product .pv-flag { opacity: 1; }
}
