/* scan2fix — design system. Pure CSS, no external requests. */

:root {
  --bg-dark-1: #020617;
  --bg-dark-2: #0f172a;
  --bg-dark-3: #1e293b;
  --ink: #f8fafc;
  --ink-dim: #cbd5e1;
  --ink-faint: #94a3b8;
  --light-1: #ffffff;
  --light-2: #f8fafc;
  --light-border: #e2e8f0;
  --dark-text: #0f172a;
  --dark-text-dim: #475569;
  --orange: #f97316;
  --orange-bright: #fb923c;
  --emerald: #10b981;
  --emerald-bright: #34d399;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.6rem;
  --shadow-glow: 0 0 60px -15px rgba(249, 115, 22, 0.35);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--light-1);
  color: var(--dark-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #0f172a;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 0.5rem 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1vw + 1rem, 1.5rem); }
p { margin: 0 0 1rem; }
.lead {
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.3rem);
  color: var(--ink-dim);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #0f172a;
  box-shadow: 0 12px 30px -10px rgba(249, 115, 22, 0.6);
}
.btn-primary:hover { box-shadow: 0 16px 36px -8px rgba(249, 115, 22, 0.75); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-dark {
  background: var(--dark-text);
  color: var(--light-1);
}
.btn-dark:hover { box-shadow: 0 12px 30px -12px rgba(15, 23, 42, 0.5); }
.btn-emerald {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-bright));
  color: #052e21;
  box-shadow: 0 12px 30px -10px rgba(16, 185, 129, 0.55);
}
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand .brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--orange-bright);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-dim);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; }

/* ---------- Sections ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}
.section-dark {
  background: var(--bg-dark-2);
  color: var(--ink);
}
.section-dark h2, .section-dark h3 { color: var(--ink); }
.section-dark p { color: var(--ink-dim); }
.section-light { background: var(--light-1); }
.section-tint { background: var(--light-2); }
.section-head {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-dark-1);
  color: var(--ink);
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
}
.hero-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38rem 28rem at 15% 10%, rgba(249, 115, 22, 0.25), transparent 60%),
    radial-gradient(34rem 30rem at 85% 25%, rgba(16, 185, 129, 0.18), transparent 60%),
    radial-gradient(40rem 40rem at 50% 100%, rgba(56, 89, 189, 0.22), transparent 60%);
  animation: meshDrift 22s ease-in-out infinite alternate;
  filter: blur(10px);
}
@keyframes meshDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -3%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 2.5rem; }
}
.hero-copy h1 { margin-bottom: 1rem; }
.hero-copy .accent { color: var(--orange-bright); }
.hero-copy .accent-em { color: var(--emerald-bright); }
.hero-phone-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
}
.hero-phone-note a { color: var(--emerald-bright); font-weight: 700; }

/* ---------- Glass card ---------- */
.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

/* ---------- Hero stage (5-scene animation) ---------- */
.hero-stage-wrap {
  position: relative;
}
.hero-stage {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  min-height: 22rem;
  overflow: hidden;
  box-shadow: var(--shadow-glow), 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.scene {
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.scene.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.scene-inner { width: 100%; max-width: 20rem; }

/* Scene 1: QR sticker on wall */
.wall-panel {
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #2b3245, #1a2033);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sticker {
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.9rem;
  width: 8.5rem;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.55), 0 0 0 4px rgba(255, 255, 255, 0.03);
  transform: rotate(-1.5deg);
}
.qr-svg { width: 100%; height: auto; }
.qr-bg { fill: #fff; }
.qr-mod { fill: #0f172a; }
.sticker-label {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f172a;
}
.sticker-label small { display: block; font-weight: 500; color: #64748b; font-size: 0.5rem; }
.scene[data-scene="1"] .sticker {
  animation: stickerPulse 3s ease-in-out infinite;
}
@keyframes stickerPulse {
  0%, 100% { box-shadow: 0 18px 40px -12px rgba(0,0,0,0.55), 0 0 0 4px rgba(255,255,255,0.03); }
  50% { box-shadow: 0 18px 40px -12px rgba(249,115,22,0.5), 0 0 0 4px rgba(249,115,22,0.15); }
}

/* Scene 2: phone scanning */
.phone-shell {
  width: 9.5rem;
  height: 19rem;
  margin: 0 auto;
  background: #111827;
  border-radius: 1.75rem;
  border: 3px solid #1f2937;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.6);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  overflow: hidden;
}
.viewfinder {
  position: absolute;
  inset: 1.4rem 1rem;
  border-radius: 0.6rem;
}
.vf-corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 3px solid var(--emerald-bright);
}
.vf-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; border-top-left-radius: 0.4rem; }
.vf-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; border-top-right-radius: 0.4rem; }
.vf-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; border-bottom-left-radius: 0.4rem; }
.vf-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; border-bottom-right-radius: 0.4rem; }
.mini-qr {
  width: 55%;
  margin: 2.6rem auto 0;
  opacity: 0.9;
}
.scan-line {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-bright), transparent);
  box-shadow: 0 0 10px 1px var(--emerald-bright);
  animation: scanSweep 1.8s ease-in-out infinite;
}
@keyframes scanSweep {
  0%, 100% { top: 12%; }
  50% { top: 78%; }
}
.open-link-banner {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: -3rem;
  background: rgba(16, 185, 129, 0.95);
  color: #052e21;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: bottom 0.5s var(--ease) 1.4s;
}
.scene[data-scene="2"].is-active .open-link-banner { bottom: 0.6rem; }

/* Scene 3: report form */
.form-card {
  background: #fff;
  color: var(--dark-text);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.8rem;
}
.form-card h4 { color: var(--dark-text); font-size: 0.95rem; margin-bottom: 0.75rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 700;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}
.type-line {
  height: 1.6rem;
  border: 1px solid var(--light-border);
  border-radius: 0.4rem;
  padding: 0.3rem 0.5rem;
  color: var(--dark-text-dim);
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
  white-space: nowrap;
}
.type-line .caret {
  display: inline-block;
  width: 1px;
  height: 0.8em;
  background: var(--orange);
  margin-left: 1px;
  animation: caretBlink 0.9s steps(1) infinite;
  vertical-align: middle;
}
@keyframes caretBlink { 50% { opacity: 0; } }
.photo-thumb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.4rem;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.submit-pulse-btn {
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  padding: 0.55rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  position: relative;
}
.scene[data-scene="3"].is-active .submit-pulse-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
  animation: submitPulse 1.6s ease-out infinite;
}
@keyframes submitPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.55); }
  100% { box-shadow: 0 0 0 14px rgba(249, 115, 22, 0); }
}

/* Scene 4: triage chips */
.triage-stack { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.triage-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
}
.scene[data-scene="4"].is-active .triage-chip {
  animation: chipPop 0.5s var(--ease) forwards;
}
.scene[data-scene="4"].is-active .triage-chip:nth-child(1) { animation-delay: 0.15s; }
.scene[data-scene="4"].is-active .triage-chip:nth-child(2) { animation-delay: 0.55s; }
.scene[data-scene="4"].is-active .triage-chip:nth-child(3) { animation-delay: 0.95s; }
@keyframes chipPop {
  0% { opacity: 0; transform: translateY(10px) scale(0.85); }
  70% { opacity: 1; transform: translateY(-2px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scene 5: vendor card */
.vendor-card {
  background: #fff;
  color: var(--dark-text);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  width: 100%;
  max-width: 18rem;
  transform: translateX(60px);
  opacity: 0;
}
.scene[data-scene="5"].is-active .vendor-card {
  animation: vendorSlide 0.7s var(--ease) forwards;
}
@keyframes vendorSlide {
  to { transform: translateX(0); opacity: 1; }
}
.vendor-top { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.vendor-avatar {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--emerald));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.9rem;
}
.vendor-name { font-weight: 700; font-size: 0.9rem; }
.vendor-rating { font-size: 0.75rem; color: var(--dark-text-dim); }
.vendor-status {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 700; color: #047857;
  background: #ecfdf5; padding: 0.25rem 0.6rem; border-radius: 999px;
  margin-top: 0.4rem;
}
.vendor-notified {
  margin-top: 0.5rem; font-size: 0.72rem; color: var(--dark-text-dim);
}

/* Captions + dots */
.scene-caption {
  text-align: center;
  margin: 1.25rem 0 0.75rem;
  min-height: 1.5rem;
  color: var(--ink-dim);
  font-weight: 600;
}
.scene-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.scene-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.scene-dot.is-active {
  background: var(--orange-bright);
  transform: scale(1.3);
}

/* ---------- How it works steps ---------- */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.step-card {
  background: var(--light-1);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
}
.step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  background: #fff7ed;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}
.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff7ed, #ecfdf5);
  color: var(--orange);
}
.step-icon svg { width: 1.8rem; height: 1.8rem; }
.icon-scan { animation: iconScan 2.4s ease-in-out infinite; }
.icon-write .icon-pen { animation: iconWrite 1.8s ease-in-out infinite; transform-origin: bottom left; }
.icon-check .icon-tick { stroke-dasharray: 24; stroke-dashoffset: 24; animation: iconTick 2s ease-in-out infinite; }
@keyframes iconScan {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(3px); opacity: 0.6; }
}
@keyframes iconWrite {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
}
@keyframes iconTick {
  0%, 20% { stroke-dashoffset: 24; }
  60%, 100% { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .icon-scan, .icon-write .icon-pen, .icon-check .icon-tick { animation: none; }
}

/* ---------- No-QR card ---------- */
.altpath-card {
  background: linear-gradient(155deg, var(--bg-dark-3), var(--bg-dark-1));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .altpath-card { grid-template-columns: 1fr 1fr; align-items: center; }
}
.altpath-phone {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--emerald-bright);
  letter-spacing: -0.01em;
}

/* ---------- Landlord section ---------- */
.landlord-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  margin: 2.5rem 0;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
}
.feature-card .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  display: block;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-group { max-width: 44rem; margin: 0 auto; }
.faq-group h3 {
  margin: 2rem 0 1rem;
  color: var(--dark-text);
}
details.faq-item {
  background: var(--light-1);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--dark-text-dim);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark-1);
  color: var(--ink-faint);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a:hover { color: var(--ink); }
.footer-note { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Report page ---------- */
.report-hero {
  background: var(--bg-dark-1);
  color: var(--ink);
  padding: clamp(2.5rem, 6vw, 4rem) 0 3rem;
}
.option-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: -3.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 860px) {
  .option-grid { grid-template-columns: repeat(3, 1fr); }
}
.option-card {
  background: var(--light-1);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 25px 45px -25px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
}
.option-card .option-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff7ed, #ecfdf5);
}
.option-card p { color: var(--dark-text-dim); flex-grow: 1; }
.field-row { display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0; }
.field-row input[type="text"] {
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  border: 1.5px solid var(--light-border);
  font-size: 1rem;
  font-family: inherit;
}
.field-row input[type="text"]:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.form-error {
  color: #b91c1c;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.2rem;
  margin: 0;
}
.tel-link {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 800;
  color: var(--emerald-bright);
  background: #f0fdf9;
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
  text-align: center;
  display: block;
  margin: 1rem 0;
  border: 1.5px solid #a7f3d0;
}
.section-dark .tel-link { color: #052e21; }

/* ---------- About / misc ---------- */
.about-body { max-width: 42rem; margin: 0 auto; }
.about-body h2 { margin-top: 2.5rem; }

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-dark-1);
  color: var(--ink);
  padding: 3rem 1.25rem;
}
.notfound .code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-bright), var(--emerald-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.small { font-size: 0.85rem; color: var(--ink-faint); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
