:root {
  --steel-950: #101416;
  --steel-900: #171d20;
  --steel-800: #20282c;
  --steel-700: #2d373d;
  --steel-100: #eef2f3;
  --steel-050: #f7f8f8;
  --line: #dce2e4;
  --text: #202427;
  --muted: #69757b;
  --brand: #e44721;
  --brand-dark: #b72f15;
  --amber: #f09b22;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 20, 22, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  min-height: 76px;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: none;
  color: var(--steel-950);
  font-size: clamp(1.02rem, 1.8vw, 1.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.24;
  white-space: nowrap;
}

.brand strong {
  display: block;
  overflow: visible;
}

.desktop-nav,
.header-actions,
.hero-actions,
.contact-bar,
.site-footer,
.mobile-sticky-cta {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: clamp(0.75rem, 1.4vw, 1.3rem);
  font-size: 0.94rem;
  color: var(--steel-700);
}

.header-actions {
  gap: 0.8rem;
}

.ghost-link {
  font-weight: 700;
  color: var(--steel-800);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  min-width: 0;
  padding-inline: 0.95rem;
  background: var(--steel-950);
  color: var(--white);
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .ghost-link {
    display: none;
  }
}

.button-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(228, 71, 33, 0.28);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(228, 71, 33, 0.2), transparent 28rem),
    linear-gradient(135deg, #101416 0%, #171d20 52%, #20282c 100%);
}

.hero {
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #ffb08f;
}

.hero-lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.5rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.app-points span,
.trust-cards span,
.audience-list article,
.check-grid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 0.62rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 1440px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.55rem;
  background: var(--brand);
}

.contact-bar {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: var(--steel-800);
  font-size: 0.94rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.split,
.audience-layout,
.form-section,
.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.content-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.audience-layout .content-image {
  aspect-ratio: 16 / 9;
}

.check-grid,
.trust-cards,
.audience-list,
.app-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.check-grid span,
.trust-cards span,
.audience-list article {
  border-color: var(--line);
  background: var(--steel-050);
}

.check-grid span::before,
.trust-cards span::before,
.audience-list article::before,
.compare-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  background: var(--brand);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 4rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--steel-900), var(--steel-700));
}

.cta-band div {
  display: grid;
  gap: 0.15rem;
}

.cta-band strong {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.cta-band span {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
}

.service-card,
.compare-card,
.final-grid article,
.lead-form,
.contact-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.service-card {
  min-height: 210px;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(228, 71, 33, 0.06), transparent 42%),
    var(--white);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--brand);
  font-weight: 900;
}

.service-card p,
.compare-card li,
.faq-list p,
.final-grid p,
.form-copy p,
.seo-section p,
.split p {
  color: var(--muted);
}

.muted {
  background: var(--steel-050);
}

.audience-list {
  grid-template-columns: 1fr;
}

.audience-list article {
  position: relative;
  padding-left: 2rem;
}

.audience-list article::before {
  position: absolute;
  top: 1rem;
  left: 0.85rem;
  margin-right: 0;
}

.audience-list strong,
.audience-list span {
  display: block;
}

.audience-list span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
}

.timeline article {
  position: relative;
  padding: 1.1rem 0.5rem 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 54px;
  right: -1rem;
  height: 2px;
  background: var(--line);
}

.timeline article:last-child::before {
  display: none;
}

.icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--steel-950);
  box-shadow: inset 0 0 0 4px rgba(228, 71, 33, 0.24);
  font-weight: 900;
}

.app-section {
  max-width: none;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.app-section > div:first-child {
  max-width: 720px;
  justify-self: end;
}

.app-section p {
  color: rgba(255, 255, 255, 0.74);
}

.app-points {
  margin-bottom: 1.4rem;
}

.app-mockup {
  display: grid;
  place-items: center;
}

.portal-screen {
  width: min(560px, 100%);
  min-height: 430px;
  padding: clamp(1rem, 3vw, 1.35rem);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 71, 33, 0.08), transparent 36%),
    var(--white);
  box-shadow: var(--shadow);
}

.portal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.portal-top strong,
.portal-top span {
  display: block;
}

.portal-top strong {
  font-size: 1.35rem;
}

.portal-top span {
  color: var(--muted);
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0;
}

.portal-stats span,
.portal-row {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
}

.portal-stats b,
.portal-stats span,
.portal-stats small {
  display: block;
}

.portal-stats b {
  color: var(--steel-950);
  font-size: 1.6rem;
  line-height: 1;
}

.portal-stats small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.portal-progress {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
}

.portal-progress div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.portal-progress span {
  color: var(--muted);
}

.portal-progress i {
  display: block;
  height: 8px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--brand) 0 82%, var(--steel-100) 82% 100%);
}

.portal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.7rem;
}

.portal-row em {
  flex: 0 0 auto;
  padding: 0.32rem 0.55rem;
  border-radius: 99px;
  background: var(--steel-100);
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
  font-size: 0.78rem;
}

.portal-row div {
  display: grid;
  gap: 0.12rem;
}

.portal-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.portal-row.ok em {
  color: #16734f;
}

.portal-row.warning em {
  color: var(--brand-dark);
}

.portal-row.due em {
  color: #8a5a00;
}

.portal-screen button {
  width: 100%;
  min-height: 46px;
  margin-top: 1rem;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: var(--steel-950);
  font-weight: 900;
}

.portal-showcase {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.showcase-card {
  min-height: 360px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(228, 71, 33, 0.06), transparent 45%),
    var(--white);
  box-shadow: 0 18px 44px rgba(16, 20, 22, 0.08);
}

.showcase-top {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.showcase-top span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-top strong {
  font-size: 1.25rem;
}

.mini-bars {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.mini-bars i {
  display: block;
  height: 12px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--brand) 0 var(--value), var(--steel-100) var(--value) 100%);
}

.showcase-card ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.showcase-card li,
.report-preview dl div,
.deadline-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
}

.showcase-card em,
.report-preview dd {
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
}

.report-preview dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.report-preview dt,
.report-preview dd {
  margin: 0;
}

.report-preview .warn {
  color: var(--brand-dark);
}

.deadline-list {
  display: grid;
  gap: 0.7rem;
}

.deadline-list p {
  align-items: flex-start;
  flex-direction: column;
  margin: 0;
}

.deadline-list span {
  color: var(--muted);
}

.risk-section {
  background:
    linear-gradient(90deg, rgba(228, 71, 33, 0.08), transparent 45%),
    var(--white);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1050px;
  margin: 0 auto;
}

.compare-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.compare-card ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.negative {
  background: #fbf6f4;
}

.positive {
  border-color: rgba(228, 71, 33, 0.36);
}

.packages-section {
  background: var(--steel-050);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.deliverables-grid article {
  min-height: 230px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(228, 71, 33, 0.06), transparent 48%),
    var(--white);
}

.deliverables-grid span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.3rem 0.52rem;
  border-radius: 99px;
  color: var(--brand);
  background: rgba(228, 71, 33, 0.09);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deliverables-grid p {
  color: var(--muted);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.package-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 360px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 20, 22, 0.06);
}

.package-card.highlighted {
  color: var(--white);
  border-color: rgba(228, 71, 33, 0.4);
  background:
    radial-gradient(circle at 92% 8%, rgba(228, 71, 33, 0.34), transparent 14rem),
    linear-gradient(135deg, var(--steel-950), var(--steel-800));
  transform: translateY(-0.7rem);
}

.package-card span {
  width: fit-content;
  padding: 0.32rem 0.55rem;
  border-radius: 99px;
  color: var(--brand);
  background: rgba(228, 71, 33, 0.09);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card.highlighted span {
  color: #ffb08f;
  background: rgba(255, 255, 255, 0.1);
}

.package-card p {
  color: var(--muted);
}

.package-card.highlighted p {
  color: rgba(255, 255, 255, 0.76);
}

.package-card ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-card li {
  color: var(--muted);
}

.package-card.highlighted li {
  color: rgba(255, 255, 255, 0.82);
}

.package-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  background: var(--brand);
}

.contract-check {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.3fr) auto;
  gap: 1.3rem;
  align-items: center;
  max-width: 1180px;
  margin: 1rem auto 0;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid rgba(228, 71, 33, 0.24);
  border-radius: 6px;
  background: #fff7f3;
}

.contract-check h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.contract-check ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contract-check li {
  color: var(--muted);
  font-weight: 700;
}

.contract-check li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  background: var(--brand);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.9rem 0 0;
}

.form-section {
  align-items: start;
  background: var(--steel-050);
}

.contact-card {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.5rem;
  padding: 1.1rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd4d8;
  border-radius: 4px;
  padding: 0.78rem 0.82rem;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.privacy,
.file-label {
  font-weight: 600;
  color: var(--muted);
}

.privacy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.45;
}

.privacy input {
  width: auto;
  min-height: auto;
  margin-top: 0.35rem;
}

.privacy span {
  display: block;
}

.privacy a {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--steel-950);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.final-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
}

.final-grid article {
  min-height: 250px;
  padding: 1.2rem;
}

.final-grid span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--brand);
  font-weight: 900;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1320px;
  margin: 1rem auto 0;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid rgba(228, 71, 33, 0.22);
  border-radius: 6px;
  background: #fff7f3;
}

.closing-cta div {
  display: grid;
  gap: 0.2rem;
}

.closing-cta strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.closing-cta span {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(170px, 0.7fr));
  align-items: start;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.76);
  background: var(--steel-950);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

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

.footer-brand span {
  max-width: 460px;
  margin-top: 0.45rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-links strong {
  margin-bottom: 0.25rem;
}

.legal-main {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.legal-main h1 {
  max-width: none;
  color: var(--steel-950);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-main h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main a {
  color: var(--brand);
  font-weight: 800;
}

.legal-box {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--steel-050);
}

.status-message {
  display: none;
  gap: 0.2rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 6px;
}

.status-message strong,
.status-message span {
  display: block;
}

.status-ok {
  border: 1px solid rgba(22, 115, 79, 0.25);
  background: #effaf5;
}

.status-error {
  border: 1px solid rgba(228, 71, 33, 0.25);
  background: #fff3ef;
}

.status-ok {
  display: grid;
}

.status-error {
  display: none;
}

.send-error .status-ok {
  display: none;
}

.send-error .status-error {
  display: grid;
}

.mobile-sticky-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(16, 20, 22, 0.88);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .button {
  flex: 1;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .ghost-link {
    display: none;
  }

  .hero-grid,
  .split,
  .audience-layout,
  .form-section,
  .app-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .card-grid,
  .showcase-grid,
  .final-grid,
  .deliverables-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card.highlighted {
    transform: none;
  }

  .contract-check {
    grid-template-columns: 1fr;
  }

  .contract-check ul {
    grid-template-columns: 1fr;
  }

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

  .timeline article {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 1rem;
    padding: 0;
  }

  .timeline article::before {
    top: 54px;
    bottom: -1rem;
    left: 26px;
    width: 2px;
    height: auto;
  }

  .timeline h3 {
    margin-top: 0.2rem;
  }

  .timeline p {
    grid-column: 2;
  }

  .app-section > div:first-child {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    min-height: 68px;
  }

  .header-actions .button-small {
    display: none;
  }

  .brand {
    max-width: 70vw;
    font-size: clamp(0.84rem, 3.8vw, 1rem);
    white-space: normal;
    line-height: 1.22;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-actions,
  .cta-band,
  .contact-bar,
  .closing-cta,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    justify-content: flex-start;
  }

  .check-grid,
  .trust-cards,
  .app-points,
  .compare-grid,
  .text-columns,
  .field-row,
  .card-grid,
  .showcase-grid,
  .final-grid,
  .deliverables-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .contract-check {
    grid-template-columns: 1fr;
  }

  .contract-check ul {
    grid-template-columns: 1fr;
  }

  .portal-stats {
    grid-template-columns: 1fr;
  }

  .portal-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}
