/* style_reqt.css — Nota REQT Sarawak (edisi premium)
   Gaya: moden, bersih & elegan dengan palet bendera Sarawak —
   merah, kuning dan hitam dalam nada yang refined. */

:root {
  --ink: #191410;
  --text: #332c24;
  --muted: #75695c;
  --bg: #fffdf8;
  --surface: #ffffff;
  --primary: #ce1126;          /* merah Sarawak */
  --primary-deep: #a50d1f;
  --dark: #17120d;             /* hitam bendera */
  --dark-2: #241d15;
  --gold: #f7c600;             /* kuning Sarawak (ditala) */
  --gold-bright: #fcd116;
  --gold-soft: #fdf4d2;
  --gold-line: #f3e6ac;
  --border: #ede7da;
  --shadow-sm: 0 1px 2px rgba(25, 20, 16, 0.04), 0 4px 12px rgba(25, 20, 16, 0.04);
  --shadow-md: 0 2px 6px rgba(25, 20, 16, 0.05), 0 16px 40px rgba(25, 20, 16, 0.08);
  --shadow-lg: 0 4px 12px rgba(25, 20, 16, 0.06), 0 32px 80px rgba(25, 20, 16, 0.12);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { display: block; }

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.005em;
}

/* ================= ANNOUNCE ================= */

.announce {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  padding: 9px 0;
  text-align: center;
}

.announce strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.announce-strike {
  text-decoration: line-through;
  opacity: 0.55;
  margin-left: 2px;
}

.announce-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  margin-right: 6px;
  vertical-align: 1px;
}

/* ================= NAV ================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(206, 17, 38, 0.3);
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

/* ================= BUTANG ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(165, 13, 31, 0.4), 0 10px 26px rgba(206, 17, 38, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(165, 13, 31, 0.4), 0 16px 34px rgba(206, 17, 38, 0.38);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #ddd4c2;
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: var(--gold-bright);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  background: var(--gold);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg { padding: 16px 32px; font-size: 15.5px; }
.btn-block { width: 100%; }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(206, 17, 38, 0.4);
  outline-offset: 3px;
}

/* ================= PILL & EYEBROW ================= */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  color: #8a6d00;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.pill-solid {
  background: var(--dark);
  color: var(--gold-bright);
  border: none;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: var(--gold-bright);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(680px 420px at 82% 8%, rgba(247, 198, 0, 0.16), transparent 65%),
    radial-gradient(560px 380px at 8% 88%, rgba(206, 17, 38, 0.06), transparent 65%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 em {
  font-size: 1.04em;
}

.hero-copy > p {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* --------- Kad kaca --------- */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.glass-card {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(237, 231, 218, 0.9);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}

.glass-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.glass-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3px;
}

.glass-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ring {
  position: relative;
  flex: 0 0 auto;
}

.ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary-deep);
}

.glass-list {
  display: grid;
  gap: 10px;
}

.glass-item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  box-shadow: var(--shadow-sm);
}

.glass-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.35;
}

.glass-item small {
  font-size: 12.5px;
  color: var(--muted);
}

.glass-item.is-active {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.tick {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  flex: 0 0 auto;
}

.tick-active {
  background: #ffffff;
  border: 2px solid var(--primary);
  position: relative;
}

.tick-active::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.65); opacity: 0.6; }
}

.tick-empty {
  background: #ffffff;
  border: 2px solid var(--border);
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  animation: floaty 5.5s ease-in-out infinite;
}

.float-chip .tick {
  width: 19px;
  height: 19px;
}

.float-chip-1 {
  top: -16px;
  left: -8px;
}

.float-chip-2 {
  bottom: -14px;
  right: -6px;
  animation-delay: -2.7s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* --------- Stats --------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stat {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* ================= SEKSYEN ================= */

.section {
  padding: 92px 0;
}

.section-tight {
  padding-top: 0;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

h2 {
  font-size: clamp(27px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 16.5px;
}

/* ================= GRID & KAD ================= */

.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #e2d9c5;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--primary);
  margin-bottom: 18px;
}

.card h3 {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ================= PENYELESAIAN ================= */

.solution {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23fcd116' fill-opacity='0.07' d='M50 2 58 34 88 20 66 46 98 52 66 58 88 84 58 70 50 100 42 70 12 84 34 58 2 52 34 46 12 20 42 34z'/%3E%3C/svg%3E") no-repeat -70px -70px / 340px,
    radial-gradient(600px 360px at 90% 0%, rgba(206, 17, 38, 0.22), transparent 60%),
    linear-gradient(150deg, var(--dark), var(--dark-2));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.solution h2 {
  color: #ffffff;
}

.solution h2 em {
  color: var(--gold-bright);
}

.solution p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 28px;
  font-size: 16px;
}

.solution-list {
  display: grid;
  gap: 12px;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(4px);
}

.solution-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-bright) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317120d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ================= KANDUNGAN ================= */

.toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.toc-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.toc-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #e2d9c5;
}

.toc-num {
  flex: 0 0 auto;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--primary);
  min-width: 34px;
}

.toc-item h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 5px;
}

.toc-item p {
  color: var(--muted);
  font-size: 14px;
}

/* ================= LANGKAH ================= */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(206, 17, 38, 0.28);
}

.step h3 {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ================= HARGA ================= */

.pricing {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(247, 198, 0, 0.12), transparent 65%),
    var(--bg);
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--primary), var(--gold-bright));
}

.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 8px;
}

.price-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.price-note {
  color: var(--muted);
  font-size: 14.5px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 26px 0 6px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.price-main {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--primary);
}

.price-meta {
  display: grid;
  gap: 2px;
}

.price-meta s {
  color: var(--muted);
  font-size: 17px;
}

.price-meta small {
  color: var(--muted);
  font-size: 13px;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.checklist li::before {
  content: "";
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ce1126' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13.5px;
  text-align: center;
}

/* ================= TESTIMONI ================= */

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.testimonial blockquote {
  font-size: 15.5px;
  color: var(--text);
  flex: 1;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial figcaption > span:last-child {
  display: grid;
}

.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 15px;
  flex: 0 0 auto;
}

.person {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.role {
  color: var(--muted);
  font-size: 13px;
}

/* ================= FAQ ================= */

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

details[open] {
  border-color: rgba(206, 17, 38, 0.35);
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ce1126' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14.5px;
}

/* ================= FINAL CTA ================= */

.final-cta {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23fcd116' fill-opacity='0.08' d='M50 2 58 34 88 20 66 46 98 52 66 58 88 84 58 70 50 100 42 70 12 84 34 58 2 52 34 46 12 20 42 34z'/%3E%3C/svg%3E") no-repeat calc(100% + 90px) -90px / 360px,
    radial-gradient(560px 340px at 12% 100%, rgba(206, 17, 38, 0.24), transparent 60%),
    linear-gradient(150deg, var(--dark), var(--dark-2));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 16px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 16.5px;
}

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-inner {
  text-align: center;
}

.footer strong {
  color: var(--ink);
}

/* ================= STICKY CTA (mobile) ================= */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(25, 20, 16, 0.08);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta-text {
  display: grid;
  line-height: 1.4;
}

.sticky-cta-text strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.sticky-cta-text span {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 600;
}

.sticky-cta-text s {
  color: var(--muted);
  font-weight: 400;
}

.sticky-cta .btn {
  padding: 11px 20px;
  font-size: 14px;
}

/* ================= REVEAL ================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-reveal] { opacity: 1; transform: none; transition: none; }

  .float-chip,
  .tick-active::after { animation: none; }

  .btn, .card, .toc-item, .sticky-cta, details, summary::after { transition: none; }
}

/* ================= RESPONSIF ================= */

@media (max-width: 960px) {
  .hero-grid,
  .solution {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid {
    gap: 44px;
    margin-bottom: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .float-chip-1 { left: 0; }
  .float-chip-2 { right: 0; }

  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(n+3) { border-bottom: none; }

  .nav-links { display: none; }

  .section { padding: 68px 0; }

  .solution { padding: 44px 32px; }

  .final-cta { padding: 56px 32px; }

  .sticky-cta { display: flex; }

  .footer { padding-bottom: 96px; }
}

@media (max-width: 560px) {
  .nav-inner { height: 64px; }

  .grid-4 { grid-template-columns: 1fr; }

  .hero-actions .btn { width: 100%; }

  .pricing-card { padding: 30px 24px; }

  .pricing-card::before { left: 24px; right: 24px; }

  .price-main { font-size: 48px; }

  .pricing-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }

  .solution { padding: 36px 24px; }

  .final-cta { padding: 48px 24px; }
}