:root {
  --ink: #081832;
  --ink-2: #102c56;
  --blue: #145fd7;
  --blue-2: #0b4fb9;
  --aqua: #0fae99;
  --aqua-dark: #087b70;
  --gold: #f4c542;
  --paper: #fbfaf6;
  --white: #ffffff;
  --soft: #eef7fb;
  --line: #d8e2ed;
  --text: #1f2735;
  --muted: #647084;
  --shadow: 0 24px 80px rgba(8, 24, 50, .16);
  --shadow-soft: 0 14px 45px rgba(8, 24, 50, .09);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: .83rem;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 0;
}
.topbar span { position: relative; }
.topbar span + span:before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(251, 250, 246, .9);
  border-bottom: 1px solid rgba(8, 24, 50, .1);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0;
}
.brand span span { color: var(--aqua-dark); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 174, 153, .24);
}
.site-nav { justify-self: center; display: flex; gap: 8px; }
.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: #394458;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover { background: #e9f5f4; color: var(--aqua-dark); }
.menu-toggle { display: none; }
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta {
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 28px rgba(20, 95, 215, .25);
}
.btn { padding: 0 20px; }
.btn:hover, .header-cta:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--ink-2));
  color: #fff;
  box-shadow: 0 16px 36px rgba(20, 95, 215, .26);
}
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-light { background: rgba(255,255,255,.94); color: var(--ink); }
.btn-gold { background: var(--gold); color: #111827; box-shadow: 0 14px 30px rgba(244, 197, 66, .35); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 48px;
  background:
    linear-gradient(120deg, rgba(8, 24, 50, .04), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(15, 174, 153, .17), transparent 32%),
    linear-gradient(135deg, #fbfaf6 0%, #f3fbff 58%, #edf8f3 100%);
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(251,250,246,.95));
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.legal-grid-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  opacity: .28;
  background:
    linear-gradient(90deg, rgba(8,24,50,.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8,24,50,.1) 1px, transparent 1px);
  background-size: 44px 44px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.paper-stack {
  position: absolute;
  right: 7%;
  top: 110px;
  width: 310px;
  height: 360px;
}
.paper-card {
  position: absolute;
  inset: 0 auto auto 0;
  width: 240px;
  min-height: 275px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
  backdrop-filter: blur(16px);
}
.paper-card-dark {
  left: 72px;
  top: 66px;
  background: rgba(8, 24, 50, .92);
  color: #fff;
  transform: rotate(5deg);
}
.paper-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--aqua-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.paper-card-dark span { color: var(--gold); }
.paper-card strong { display: block; color: inherit; font-size: 1.45rem; line-height: 1.1; }
.paper-card i {
  display: block;
  height: 9px;
  margin-top: 18px;
  border-radius: 30px;
  background: rgba(20, 95, 215, .17);
}
.paper-card-dark i { background: rgba(255,255,255,.18); }
.paper-card i:nth-child(4) { width: 75%; }
.paper-card i:nth-child(5) { width: 52%; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.section-label {
  margin: 0 0 13px;
  color: var(--aqua-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: .94;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #4e5b70;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.58;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  padding: 10px 13px;
  border-radius: 8px;
  color: #314159;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(8,24,50,.1);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(8, 24, 50, .05);
}

.hero-panel {
  display: grid;
  gap: 13px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(8,24,50,.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 900;
}
.panel-header p { margin: 0; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(15,174,153,.15);
}
.timeline-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.timeline-card.active { border-color: rgba(15,174,153,.45); background: #f0fbf8; }
.timeline-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.timeline-card strong { color: var(--ink); }
.timeline-card p, .panel-footer p { margin: 6px 0 0; color: var(--muted); line-height: 1.45; }
.panel-footer {
  margin-top: 4px;
  padding: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}
.panel-footer p { color: rgba(255,255,255,.7); }

section { scroll-margin-top: 102px; }
.cards-section {
  position: relative;
  z-index: 3;
  padding: 22px 0 78px;
}
.section-heading { max-width: 800px; margin-bottom: 34px; }
.section-heading.compact { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2,
.confidence h2,
.business h2,
.about h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.section-heading p:not(.section-label) { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }

.decision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.decision-card {
  position: relative;
  min-height: 500px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 26px 70px rgba(8,24,50,.2);
}
.decision-card:after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.prepare { background: linear-gradient(160deg, #55a6dc, #2376b9); }
.consult { background: linear-gradient(160deg, #146ce0, #0b4fb9); }
.defend { background: linear-gradient(160deg, #153965, #081832); }
.featured {
  transform: translateY(-18px);
  border: 2px solid var(--gold);
}
.badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--gold);
  color: #111827;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: .92;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  font-weight: 900;
}
.decision-card h3 { margin: 36px 0 8px; font-size: 1.55rem; }
.card-quote { margin: 0 0 18px; font-weight: 900; opacity: .93; }
.decision-card p { line-height: 1.56; }
.decision-card ul { margin: 22px 0; padding-left: 18px; line-height: 1.82; }
.price { margin: 22px 0; font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 900; }
.disclaimer { margin-top: 18px; font-size: .84rem; opacity: .78; }

.confidence {
  padding: 78px 0;
  background: linear-gradient(135deg, #ecfbf6, #f7fbff);
}
.confidence-grid,
.about-grid,
.business-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.confidence p,
.business p,
.about-copy,
.contact p { color: #536176; font-size: 1.08rem; line-height: 1.74; }
.confidence-list { display: grid; gap: 14px; }
.confidence-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,24,50,.08);
  box-shadow: var(--shadow-soft);
}
.confidence-list strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
}
.confidence-list h3 { margin: 0 0 6px; color: var(--ink); }
.confidence-list p { margin: 0; font-size: 1rem; }

.method,
.pricing,
.about,
.faq,
.contact,
.legal-strip { padding: 82px 0; }
.method-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.method-line article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.method-line span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e9f5f4;
  color: var(--aqua-dark);
  font-weight: 900;
}
.method-line h3 { color: var(--ink); }
.method-line p { color: var(--muted); line-height: 1.62; }

.pricing { background: #f7fbff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-block {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.pricing-block.strong {
  color: #fff;
  background: linear-gradient(160deg, #146ce0, #0b4fb9);
  border-color: transparent;
}
.pricing-block.dark {
  color: #fff;
  background: linear-gradient(160deg, #153965, #081832);
  border-color: transparent;
}
.pricing-block h3 { margin-top: 0; color: var(--ink); font-size: 1.55rem; }
.pricing-block.strong h3,
.pricing-block.dark h3 { color: #fff; }
.block-note { min-height: 62px; color: inherit; opacity: .74; line-height: 1.55; }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(128, 148, 172, .26);
}
.price-row strong { white-space: nowrap; }
.decision-matrix {
  margin-top: 26px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.decision-matrix h3 { margin-top: 0; color: var(--ink); }
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.matrix-grid p {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  color: #314159;
  background: #eaf4ff;
}
.matrix-grid strong { display: block; margin-bottom: 6px; color: var(--blue-2); }

.business {
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(8,24,50,.92), rgba(16,44,86,.88)),
    linear-gradient(135deg, var(--ink), var(--blue));
  color: #fff;
}
.business h2, .business .section-label { color: #fff; }
.business p { color: rgba(255,255,255,.75); }
.business-card {
  padding: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.business-card span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.business-card strong { display: block; margin: 16px 0; color: #fff; font-size: 2.3rem; }

.about-copy {
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.commitments { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.commitments span {
  padding: 9px 11px;
  border-radius: 8px;
  background: #e9f5f4;
  color: var(--aqua-dark);
  font-size: .9rem;
  font-weight: 900;
}
.owner-note {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: #fff8df;
  color: #5a4711;
}

.faq { background: linear-gradient(180deg, #fbfaf6, #f4fbff); }
.faq-list { display: grid; gap: 12px; }
details {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 900;
}
details p { margin: 0; padding-bottom: 18px; color: var(--muted); line-height: 1.65; }

.contact { background: #f7fbff; }
.contact-grid { align-items: start; }
.contact-note {
  margin-top: 28px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}
.contact-note h3 { margin-top: 0; color: #fff; }
.contact-note p { color: rgba(255,255,255,.74); }
.contact-proof {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.contact-proof span {
  padding: 13px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
label { display: grid; gap: 8px; color: var(--ink); font-weight: 900; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  color: var(--text);
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(20,95,215,.15);
  border-color: var(--blue);
}
.check {
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #536176;
  font-weight: 500;
  line-height: 1.5;
}
.check input { width: 18px; height: 18px; margin-top: 3px; }
.check a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-submit { width: 100%; }
.form-status {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--aqua-dark);
  font-weight: 900;
}
.form-status p { margin: 0; line-height: 1.55; }
.form-status.error { color: #b42318; }
.payment-link {
  width: 100%;
  min-height: 50px;
  text-decoration: none;
}
.form-help,
.payment-help {
  margin: -4px 0 2px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #536176;
  background: #f3f8fc;
  border: 1px solid var(--line);
  line-height: 1.55;
  font-size: .95rem;
}
.payment-help {
  color: #173b67;
  background: #eef6ff;
  border-color: #c9def5;
  font-weight: 800;
}

.legal-strip {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(24, 120, 211, .2), transparent 34%),
    linear-gradient(180deg, #07152b, #081832);
}
.legal-intro {
  max-width: 820px;
  margin-bottom: 28px;
}
.legal-intro h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: 0;
}
.legal-intro p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.legal-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}
.legal-link-card {
  display: grid;
  min-height: 238px;
  align-content: space-between;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.legal-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,197,66,.55);
  background: rgba(255,255,255,.075);
}
.legal-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.55rem;
}
.legal-card h4 {
  margin: 22px 0 8px;
  color: #ffd66b;
  font-size: .96rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.legal-card p,
.legal-card li {
  color: rgba(255,255,255,.76);
  line-height: 1.68;
}
.legal-card p { margin: 0 0 12px; }
.legal-card strong { color: #fff; }
.legal-link-card > span {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}
.legal-list {
  margin: 0 0 6px;
  padding-left: 20px;
}
.legal-list li + li { margin-top: 8px; }
.legal-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.legal-mini-grid p {
  margin: 0;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.legal-page-hero {
  padding: 78px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(15, 174, 153, .22), transparent 36%),
    linear-gradient(180deg, #07152b, #081832);
}
.legal-page-hero h1 {
  max-width: 900px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: 0;
}
.legal-page-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}
.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255,255,255,.78);
  font-weight: 900;
}
.legal-document-section {
  padding: 58px 0 86px;
  background: #f7fbff;
}
.legal-document {
  max-width: 940px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.legal-document h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
}
.legal-document h2:first-child { margin-top: 0; }
.legal-document p,
.legal-document li {
  color: #536176;
  line-height: 1.75;
}
.legal-document a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-document ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-mini-grid.light p {
  color: var(--text);
  background: #edf7fb;
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.footer {
  padding: 22px 0;
  color: #fff;
  background: #061124;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.72); }

@media (max-width: 980px) {
  .topbar-inner { flex-direction: column; align-items: center; gap: 5px; }
  .topbar span + span:before { display: none; }
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 900;
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }
  .site-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero-grid,
  .confidence-grid,
  .about-grid,
  .business-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .decision-cards,
  .pricing-grid,
  .method-line,
  .matrix-grid,
  .legal-grid,
  .legal-mini-grid { grid-template-columns: 1fr; }
  .featured { transform: none; }
  .paper-stack { opacity: .16; right: -90px; }
  .hero { padding-top: 54px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero h1 { font-size: 2.55rem; }
  .hero-actions .btn { width: 100%; }
  .decision-card { min-height: auto; padding: 22px; }
  .legal-document { padding: 28px; }
  .legal-actions .btn { width: 100%; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
