/* ============================================================
   Klash — shared styles
   Brand: Klash Blue #005CE6, premium/minimal, Uber/Stripe/Linear feel
   ============================================================ */

/* ---------- Klash brand typeface ----------
   Drop the official designer-provided font files into /assets/fonts/
   using these exact filenames, and they will wire in automatically.
   Until those files exist, the stack falls back to system UI fonts
   (SF Pro on Apple devices), so the site still looks premium in the
   meantime — nothing breaks if the files are missing.
------------------------------------------------- */
@font-face {
  font-family: "Klash Sans";
  src: url("/assets/fonts/KlashSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Klash Sans";
  src: url("/assets/fonts/KlashSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Klash Sans";
  src: url("/assets/fonts/KlashSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Klash Sans";
  src: url("/assets/fonts/KlashSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Klash Sans";
  src: url("/assets/fonts/KlashSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --klash-blue: #005ce6;
  --klash-blue-dark: #0047b8;
  --klash-blue-tint: #f2f7ff;
  --klash-blue-tint-2: #e6f0ff;
  --ink: #0b0d12;
  --ink-soft: #3c424f;
  --muted: #5b6472;
  --line: #e7eaf0;
  --line-soft: #eef1f5;
  --surface: #ffffff;
  --surface-alt: #fafbfc;
  --navy: #0b0d12;
  --success: #0ea86c;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 13, 18, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 13, 18, 0.08);
  --shadow-lg: 0 24px 64px rgba(11, 13, 18, 0.12);
  --container: 1120px;
  --font-sans: "Klash Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--klash-blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 92, 230, 0.15), 0 8px 20px rgba(0, 92, 230, 0.22);
}
.btn-primary:hover { background: var(--klash-blue-dark); box-shadow: 0 1px 2px rgba(0, 92, 230, 0.18), 0 10px 26px rgba(0, 92, 230, 0.3); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: #c7cee0; background: var(--surface-alt); }
.btn-ghost-invert {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost-invert:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.45); }
.btn-block { width: 100%; }
.btn:focus-visible {
  outline: 2px solid var(--klash-blue);
  outline-offset: 2px;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 13, 18, 0.02);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 26px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 2px;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  background: var(--klash-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-menu-btn svg { width: 22px; height: 22px; }

.nav-mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav-mobile-panel.is-open { display: block; }
.nav-mobile-panel .container { padding-top: 14px; padding-bottom: 18px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile-panel a {
  padding: 12px 4px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile-panel .btn { margin-top: 10px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn-secondary { display: none; }
  .nav-menu-btn { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background:
    radial-gradient(680px 420px at 82% -8%, rgba(0, 92, 230, 0.10), transparent 60%),
    radial-gradient(520px 360px at -6% 30%, rgba(0, 92, 230, 0.06), transparent 60%),
    #ffffff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--klash-blue-tint);
  border: 1px solid var(--klash-blue-tint-2);
  color: var(--klash-blue-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(14, 168, 108, 0.5);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(14, 168, 108, 0.45); }
  70% { box-shadow: 0 0 0 6px rgba(14, 168, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 168, 108, 0); }
}
.hero h1 {
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero h1 span { color: var(--klash-blue); }
.hero p.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* Hero visual: dispatch card mockup */
.hero-visual { position: relative; }
.dispatch-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  max-width: 420px;
  margin: 0 auto;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.dispatch-map {
  position: relative;
  height: 180px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, #eef4ff, #e3edff);
  overflow: hidden;
  margin-bottom: 16px;
}
.dispatch-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.dispatch-map .pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--klash-blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 92, 230, 0.4);
}
.dispatch-map .pin.pin-home { background: var(--navy); }
.dispatch-map .pin-pulse {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(0, 92, 230, 0.35);
  animation: pin-ping 2s ease-out infinite;
}
@keyframes pin-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0; }
}
.dispatch-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.dispatch-row:first-of-type { border-top: none; padding-top: 0; }
.dispatch-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--klash-blue), #3b82f6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.dispatch-info { flex: 1; min-width: 0; }
.dispatch-info .name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.dispatch-info .sub { font-size: 13px; color: var(--muted); }
.dispatch-badge {
  font-size: 12px; font-weight: 700; color: var(--success);
  background: rgba(14, 168, 108, 0.1);
  padding: 4px 9px; border-radius: 999px; flex-shrink: 0;
}
.dispatch-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--line-soft);
}
.dispatch-total .label { font-size: 12px; color: var(--muted); }
.dispatch-total .amount { font-size: 20px; font-weight: 700; color: var(--ink); }
.floating-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.floating-chip svg { width: 16px; height: 16px; color: var(--klash-blue); }
.chip-top-right { top: -8px; right: -22px; animation: float-chip 5s ease-in-out infinite; }
.chip-bottom-left { bottom: 6px; left: -30px; animation: float-chip 5.5s ease-in-out infinite reverse; }
@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .floating-chip { display: none; }
}

/* ---------- Logo strip / trust mini row ---------- */
.mini-trust {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.mini-trust .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
}
.mini-trust .item { display: flex; align-items: center; gap: 8px; }
.mini-trust svg { width: 16px; height: 16px; color: var(--klash-blue); }

/* ---------- Section shells ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--surface-alt); }
.section-head { max-width: 620px; margin: 0 0 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--klash-blue);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 800;
  margin: 0 0 14px;
}
.section-head p {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #dde3ee; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--klash-blue-tint);
  color: var(--klash-blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.005em; }
.step-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--klash-blue-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--klash-blue); }
.feature-card h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 6px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Washer split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-copy h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 16px; }
.split-copy p.lede { font-size: 16px; color: var(--muted); line-height: 1.65; margin: 0 0 28px; max-width: 460px; }
.perk-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.perk-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.perk-list svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 1px; }

.stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.stat-card .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.stat-card .stat-row:first-child { padding-top: 0; }
.stat-card .stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-card .stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.stat-card .stat-value { font-size: 16px; font-weight: 700; color: #fff; }
.stat-card .stat-value.accent { color: #5ea1ff; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Photo showcase ----------
   Real photography drops in at /assets/photos/ using the filenames
   below. Until those files exist, each card shows a soft brand-blue
   gradient placeholder instead of a broken image. See file notes
   for the exact shots needed.
------------------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}
.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--klash-blue-tint), #dce6fb);
  border: 1px solid var(--line);
}
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card .photo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(11, 13, 18, 0.55);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.photo-card.tall { grid-row: span 2; }
@media (max-width: 860px) {
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; height: auto; }
  .photo-card.tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-card { height: 220px; }
}

/* ---------- Trust band (dark) ---------- */
.trust-band {
  background: var(--navy);
  padding: 64px 0;
}
.trust-band .section-head h2 { color: #fff; }
.trust-band .section-head p { color: rgba(255, 255, 255, 0.6); }
.trust-band .eyebrow { color: #5ea1ff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.trust-item svg { width: 22px; height: 22px; color: #5ea1ff; margin-bottom: 14px; }
.trust-item h3 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.trust-item p { color: rgba(255, 255, 255, 0.55); font-size: 13.5px; line-height: 1.55; margin: 0; }
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--klash-blue), #0043ad);
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 260px at 15% 0%, rgba(255, 255, 255, 0.16), transparent 60%);
}
.cta-band h2 {
  position: relative;
  color: #fff; font-size: 32px; font-weight: 800; letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.cta-band p {
  position: relative;
  color: rgba(255, 255, 255, 0.82); font-size: 16px; margin: 0 0 32px;
}
.cta-band .hero-actions { position: relative; justify-content: center; }
@media (max-width: 640px) {
  .cta-band { padding: 48px 24px; }
  .cta-band h2 { font-size: 26px; }
}

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 24px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 260px; margin: 0; }
.footer-col h4 {
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink); margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--muted); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--klash-blue); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--muted);
}
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a { color: var(--muted); }
.footer-bottom .socials a:hover { color: var(--klash-blue); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Responsive hero ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 64px 0 56px; text-align: center; }
  .hero p.lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-visual { order: -1; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 36px; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 26px; }
}

/* ---------- Simple content pages (legal / support) ---------- */
.page-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 10px; }
.page-hero p { color: var(--muted); font-size: 15px; margin: 0; }
.legal-content { padding: 56px 0 96px; }
.legal-content .container { max-width: 760px; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 40px 0 12px; letter-spacing: -0.01em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 16px; }
.legal-content ul { margin: 0 0 16px; padding-left: 20px; }
.legal-content li { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 8px; }
.legal-content a { color: var(--klash-blue); text-decoration: underline; text-decoration-color: rgba(0,92,230,0.3); }
.legal-content a:hover { text-decoration-color: var(--klash-blue); }
.legal-content strong { color: var(--ink); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: #fff;
}
.support-card .feature-icon { margin-bottom: 16px; }
.support-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.support-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.support-card a.inline-link { font-size: 14px; font-weight: 600; color: var(--klash-blue); }
@media (max-width: 860px) {
  .support-grid { grid-template-columns: 1fr; }
}

.faq-item { border-bottom: 1px solid var(--line-soft); padding: 20px 0; }
.faq-item h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 8px; }
.faq-item p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0; }

.warning-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 14px;
  color: #9a5a10;
  line-height: 1.6;
  margin-bottom: 28px;
}

.steps-vertical { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.steps-vertical .step-row {
  display: flex; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.steps-vertical .step-row:last-child { border-bottom: none; }
.steps-vertical .step-num {
  width: 30px; height: 30px; font-size: 13px;
  flex-shrink: 0; margin-bottom: 0;
}
.steps-vertical .step-body h3 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.steps-vertical .step-body p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
