﻿:root {
  --ink: #151515;
  --muted: #66645e;
  --soft: #f4efe4;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #ded6c7;
  --sea: #20636b;
  --sea-dark: #102f35;
  --gold: #b89a61;
  --coral: #a9634b;
  --sage: #70806b;
  --charcoal: #24211d;
  --shadow: 0 26px 90px rgba(30, 25, 18, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
  line-height: 1.65;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 204px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--sea-dark);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
}

.header-cta,
.btn.primary {
  background: var(--sea);
  color: var(--white);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.42);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-content: end;
  gap: 34px;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 5vw, 72px) 36px;
  background:
    linear-gradient(180deg, rgba(11, 17, 18, 0.18), rgba(8, 15, 16, 0.86)),
    url("assets/gelugor-waterfront-aerial.webp") center / cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 16, 0.82) 0%, rgba(8, 15, 16, 0.58) 48%, rgba(8, 15, 16, 0.28) 100%),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(255, 255, 255, 0.04) 23px 24px);
}

.hero-content,
.hero-panel {
  position: relative;
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd4c5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(9, 29, 33, 0.58);
}

.hero-panel span,
.spec-grid span,
.project-top span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 840px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.intro-section {
  background: var(--paper);
}

.signal-grid,
.answer-grid,
.framework-grid,
.scenario-grid,
.risk-grid,
.timeline,
.project-grid {
  display: grid;
  gap: 16px;
}

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

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

.signal-grid article,
.answer-grid article,
.framework-grid article,
.scenario-grid article,
.timeline article,
.fact-stack article,
.project-panel,
.risk-grid article,
.lead-form,
.qr-card,
.faq-list details {
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(30, 25, 18, 0.08);
}

.signal-grid article,
.answer-grid article,
.framework-grid article,
.scenario-grid article,
.timeline article,
.risk-grid article {
  padding: 24px;
}

.signal-grid span,
.answer-grid span,
.timeline span,
.fact-stack span,
.framework-grid span {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: #efe3c8;
  color: #6b5122;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-grid p,
.answer-grid p,
.framework-grid p,
.scenario-grid p,
.timeline p,
.fact-stack p,
.project-panel p,
.risk-grid p,
.qr-copy p,
.qr-card p,
.lead-copy p,
.faq-list p {
  color: var(--muted);
}

.area-section {
  background: #f1eadc;
}

.quick-answer-section {
  background: #f7f3ea;
}

.answer-grid article {
  min-height: 240px;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
}

.master-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.master-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(16, 47, 53, 0.78);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.visual-caption span,
.visual-caption strong {
  display: block;
}

.visual-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.fact-stack {
  display: grid;
  gap: 14px;
}

.fact-stack article {
  padding: 22px;
}

.lrt-section {
  background: var(--sea-dark);
  color: var(--white);
}

.lrt-section .section-head p:not(.eyebrow),
.lrt-section .timeline p,
.station-card p {
  color: rgba(255, 255, 255, 0.74);
}

.lrt-interactive {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  margin-bottom: 22px;
}

.lrt-route {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lrt-route::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 45px;
  width: 2px;
  background: linear-gradient(180deg, rgba(184, 154, 97, 0.12), rgba(184, 154, 97, 0.95), rgba(184, 154, 97, 0.12));
}

.lrt-route button {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 10px 14px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.lrt-route button span {
  z-index: 1;
  display: grid;
  width: 50px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--sea-dark);
  color: #f4ead2;
  font-size: 13px;
}

.lrt-route button:hover,
.lrt-route button.is-active {
  border-color: rgba(184, 154, 97, 0.86);
  background: rgba(184, 154, 97, 0.16);
}

.lrt-route button.is-active span {
  background: var(--gold);
  color: var(--ink);
}

.station-card {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.18);
}

.station-kicker {
  margin: 0 0 8px;
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.station-card h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.station-card p[data-station-copy] {
  margin: 16px 0 0;
}

.station-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.station-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8f4e9;
  font-size: 13px;
  font-weight: 800;
}

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

.timeline article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.projects-section {
  background: #eef3ef;
}

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

.project-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
}

.project-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--sea);
}

.project-panel.keeperz::before {
  background: var(--coral);
}

.project-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.project-top span {
  color: var(--gold);
}

.project-top strong {
  color: var(--muted);
  font-size: 14px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.spec-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8ef;
}

.spec-grid span {
  color: var(--muted);
}

.spec-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.advisor-note {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: #fbf6eb;
  color: #4a3d26;
  font-weight: 700;
}

.hard-data-panel {
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(32, 99, 107, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.section-head.compact {
  margin-bottom: 26px;
}

.unit-type-grid,
.facility-fit-grid {
  display: grid;
  gap: 16px;
}

.unit-type-grid {
  grid-template-columns: 1.25fr 0.9fr;
}

.facility-fit-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.unit-type-grid article,
.facility-card,
.buyer-fit-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-title span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-title strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
}

.unit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.unit-list.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.unit-list div,
.fit-rows div {
  padding: 14px;
  border: 1px solid #e7dfd0;
  border-radius: 8px;
  background: #fbf8ef;
}

.unit-list span,
.fit-rows span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.unit-list strong,
.fit-rows strong {
  display: block;
  margin-top: 4px;
  color: var(--sea-dark);
  font-size: 18px;
}

.unit-list p,
.fit-rows p,
.data-disclaimer {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-list span {
  padding: 8px 10px;
  border: 1px solid rgba(32, 99, 107, 0.14);
  border-radius: 8px;
  background: #f3f8f4;
  color: var(--sea-dark);
  font-size: 13px;
  font-weight: 800;
}

.fit-rows {
  display: grid;
  gap: 10px;
}

.data-disclaimer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.lifestyle-section {
  background: #fbfaf5;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
}

.photo-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sea-dark);
  box-shadow: var(--shadow);
}

.photo-card-large {
  grid-row: span 2;
  min-height: 620px;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 19, 21, 0.04), rgba(5, 19, 21, 0.76));
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-caption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 29, 32, 0.72);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.photo-caption span {
  display: block;
  margin-bottom: 6px;
  color: #f1d596;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-caption strong {
  display: block;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.35;
}

.decision-section {
  background: var(--paper);
}

.framework-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.scenario-section {
  background: #f6f2e9;
}

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

.risk-section {
  background: var(--charcoal);
  color: var(--white);
}

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

.risk-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.risk-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.quiz-section {
  background: #efe5d3;
}

.quiz-box {
  max-width: 960px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quiz-progress {
  height: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 99px;
  background: #ebe3d4;
}

.quiz-progress span {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: var(--sea);
  transition: width 220ms ease;
}

.quiz-question span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.quiz-options button {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf8f1;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.quiz-options button:hover {
  border-color: var(--gold);
  background: #f0e4c8;
}

.quiz-result {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 36px;
  align-items: start;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #dce9e5;
}

.lead-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lead-points span {
  padding: 9px 12px;
  border: 1px solid rgba(32, 99, 107, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: #fbfaf5;
}

.qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.qr-card {
  padding: 22px;
  text-align: center;
}

.qr-card img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.qr-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-section {
  background: #f2f4ee;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .answer-grid,
  .framework-grid,
  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero-panel,
  .area-layout,
  .project-grid,
  .photo-grid,
  .lrt-interactive,
  .timeline,
  .lead-section,
  .qr-section,
  .unit-type-grid,
  .facility-fit-grid,
  .answer-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .master-visual {
    min-height: 420px;
  }

  .photo-card-large {
    grid-row: auto;
    min-height: 420px;
  }

  .lrt-interactive {
    grid-template-columns: 1fr;
  }

  .lead-form {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
    padding: 72px 18px 28px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 15, 16, 0.48), rgba(8, 15, 16, 0.9));
  }

  h1 {
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-copy,
  .section-head p:not(.eyebrow),
  .lead-copy p,
  .qr-copy p {
    font-size: 16px;
  }

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

  .hero-panel div {
    padding: 14px;
  }

  .section,
  .lead-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .master-visual {
    min-height: 330px;
  }

  .photo-card,
  .photo-card-large {
    min-height: 300px;
  }

  .photo-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px;
  }

  .lrt-route {
    padding: 14px;
  }

  .lrt-route::before {
    left: 38px;
  }

  .lrt-route button {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 58px;
    padding-right: 10px;
  }

  .lrt-route button span {
    width: 44px;
    height: 38px;
  }

  .spec-grid,
  .unit-list,
  .unit-list.two,
  .answer-grid,
  .framework-grid,
  .scenario-grid,
  .risk-grid,
  .quiz-options {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 18px;
  }

  .qr-card {
    order: -1;
    padding: 18px;
  }

  .qr-card img {
    max-width: 220px;
  }

  .site-footer {
    flex-direction: column;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.88);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 8px;
    background: var(--sea);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-contact-bar a:first-child {
    background: #f2ead7;
    color: var(--ink);
  }
}

