:root {
  --bg: #fbf4ea;
  --bg-deep: #151515;
  --surface: #ffffff;
  --surface-warm: #fff9f1;
  --ink: #151515;
  --muted: #635d55;
  --muted-dark: rgba(255, 255, 255, 0.72);
  --line: rgba(21, 21, 21, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --fire: #f26a21;
  --fire-dark: #c94d12;
  --ember: #ffb36f;
  --cream: #fff4e6;

  --font: Arial, Helvetica, sans-serif;

  --container: 1180px;
  --radius-large: 34px;
  --radius-medium: 22px;
  --radius-small: 14px;

  --shadow: 0 24px 80px rgba(21, 21, 21, 0.12);
  --shadow-tight: 0 16px 44px rgba(21, 21, 21, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(242, 106, 33, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 179, 111, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.68), transparent 44%);
  z-index: -2;
}

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

a {
  color: inherit;
}

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

p {
  color: var(--muted);
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -90px;
  left: 18px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 234, 0.82);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 92px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(21, 21, 21, 0.06);
}

.site-nav .nav-cta {
  margin-left: 4px;
  padding-inline: 17px;
  background: var(--ink);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--fire-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 46px;
}

.hero-bg-mark {
  position: absolute;
  top: 54px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(242, 106, 33, 0.24);
  border-radius: 999px;
  pointer-events: none;
}

.hero-bg-mark::before,
.hero-bg-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-bg-mark::before {
  inset: 72px;
  border: 1px solid rgba(242, 106, 33, 0.18);
}

.hero-bg-mark::after {
  inset: 158px;
  background: rgba(242, 106, 33, 0.12);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--fire-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.9vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.6vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 710px;
  margin-bottom: 0;
  color: #3e3934;
  font-size: clamp(1.15rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

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

.button-primary {
  background: var(--fire);
  color: #fff;
  box-shadow: 0 18px 34px rgba(242, 106, 33, 0.28);
}

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

.button-secondary {
  border: 1px solid rgba(21, 21, 21, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--fire);
  background: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.hero-note {
  margin: 16px 0 0;
  color: #756d63;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.audit-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 32%),
    var(--bg-deep);
  color: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.audit-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  background: rgba(242, 106, 33, 0.22);
  border-radius: 999px;
}

.audit-card-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 11px;
  height: 11px;
  background: var(--fire);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(242, 106, 33, 0.14);
}

.audit-card h2 {
  position: relative;
  max-width: 430px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
}

.audit-list {
  position: relative;
  display: grid;
  gap: 12px;
}

.audit-list div {
  padding: 18px 18px 18px 64px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.audit-list span {
  position: absolute;
  margin-left: -46px;
  color: var(--ember);
  font-size: 0.8rem;
  font-weight: 900;
}

.audit-list strong {
  display: block;
  color: #fff;
}

.audit-list p {
  margin: 2px 0 0;
  color: var(--muted-dark);
  font-size: 0.94rem;
}

.floating-note {
  width: min(88%, 380px);
  margin: -28px auto 0;
  position: relative;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: 22px;
  box-shadow: var(--shadow-tight);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--ink);
}

.floating-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.signal-strip {
  position: relative;
  padding: 0 0 64px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.signal-grid div {
  padding: 28px;
  border-right: 1px solid rgba(21, 21, 21, 0.09);
}

.signal-grid div:last-child {
  border-right: 0;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.03rem;
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 92px 0;
}

.problem-section {
  background: var(--surface);
  border-block: 1px solid rgba(21, 21, 21, 0.08);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.problem-copy {
  padding-top: 8px;
}

.problem-copy p {
  font-size: 1.08rem;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.check-section {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.check-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 50px;
  background:
    radial-gradient(circle at top left, rgba(242, 106, 33, 0.15), transparent 30%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.check-intro p {
  max-width: 520px;
  font-size: 1.08rem;
}

.check-intro .button {
  margin-top: 12px;
}

.check-points {
  display: grid;
  gap: 14px;
}

.check-points article {
  position: relative;
  padding: 24px 24px 24px 58px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 22px;
}

.check-points article > span {
  position: absolute;
  left: 24px;
  top: 30px;
  width: 14px;
  height: 14px;
  background: var(--fire);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(242, 106, 33, 0.12);
}

.check-points p {
  margin-bottom: 0;
}

.services-section {
  background: var(--bg-deep);
  color: #fff;
}

.services-section .eyebrow {
  color: var(--ember);
}

.services-section h2,
.services-section h3 {
  color: #fff;
}

.services-section p {
  color: var(--muted-dark);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-item:nth-child(odd) {
  border-right: 1px solid var(--line-light);
  padding-right: 38px;
}

.service-item:nth-child(even) {
  padding-left: 38px;
}

.service-item > span {
  color: var(--ember);
  font-size: 0.88rem;
  font-weight: 900;
}

.service-item p {
  margin-bottom: 0;
}

.process-section {
  background: var(--surface-warm);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 1fr);
  gap: 70px;
}

.process-copy {
  position: sticky;
  top: 124px;
  align-self: start;
}

.process-steps {
  display: grid;
  gap: 20px;
}

.process-steps div {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.06);
}

.process-steps strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--fire-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-steps p {
  margin-bottom: 0;
}

.final-cta {
  padding: 96px 0;
  background: var(--surface-warm);
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 64px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: #fff;
  border-radius: var(--radius-large);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  pointer-events: none;
}

.final-cta-inner .eyebrow {
  color: #fff;
}

.final-cta-inner h2 {
  max-width: 780px;
  margin-inline: auto;
  color: #fff;
}

.final-cta-inner p {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
}

.final-cta-inner .button {
  position: relative;
  margin-top: 12px;
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--bg-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand {
  display: inline-flex;
  padding: 12px 14px;
  background: #fff;
  border-radius: 18px;
}

.footer-brand img {
  width: 168px;
}

.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.footer-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.footer-bottom {
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .problem-grid,
  .check-panel,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-copy {
    position: static;
  }

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

  .signal-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.09);
  }

  .signal-grid div:last-child {
    border-bottom: 0;
  }

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

  .service-item,
  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    border-right: 0;
    padding: 28px 0;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 24px;
    box-shadow: var(--shadow-tight);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: block;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 82px;
  }

  .site-nav {
    top: 76px;
  }

  .hero {
    padding: 46px 0 42px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .audit-card,
  .check-panel,
  .final-cta-inner {
    padding: 26px;
    border-radius: 26px;
  }

  .audit-list div {
    padding-left: 54px;
  }

  .audit-list span {
    margin-left: -38px;
  }

  .signal-strip {
    padding-bottom: 44px;
  }

  .section {
    padding: 68px 0;
  }

  .service-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .process-steps div {
    padding: 24px;
  }

  .final-cta {
    padding: 68px 0;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
}

.compact-page-hero {
  padding-bottom: 58px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 46px;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  border: 1px solid rgba(242, 106, 33, 0.24);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 58px;
  align-items: center;
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(3rem, 6.3vw, 6rem);
}

.page-hero-text {
  max-width: 720px;
  color: #3e3934;
  font-size: clamp(1.12rem, 1.6vw, 1.28rem);
}

.page-summary-card {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-tight);
}

.page-summary-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.page-summary-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-summary-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.page-summary-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  background: var(--fire);
  border-radius: 999px;
}

.dark-card {
  background: var(--bg-deep);
  color: #fff;
}

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

.white-section {
  background: var(--surface);
  border-block: 1px solid rgba(21, 21, 21, 0.08);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.74fr);
  gap: 64px;
  align-items: start;
}

.rich-copy p {
  font-size: 1.08rem;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.check-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(21, 21, 21, 0.12);
}

.check-detail-grid article {
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
}

.check-detail-grid article:nth-child(3n+1),
.check-detail-grid article:nth-child(3n+2) {
  border-right: 1px solid rgba(21, 21, 21, 0.12);
}

.check-detail-grid article:nth-child(3n+2),
.check-detail-grid article:nth-child(3n+3) {
  padding-left: 30px;
}

.check-detail-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--fire-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.check-detail-grid p {
  margin-bottom: 0;
}

.form-section {
  background: var(--surface-warm);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 124px;
}

.fi-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-tight);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(242, 106, 33, 0.18);
  border-color: var(--fire);
}

.contact-note {
  margin-top: 28px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: var(--radius-medium);
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note span {
  margin-top: 6px;
  color: var(--muted);
}

.narrow-page {
  max-width: 880px;
}

.policy-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 1.05rem;
}

.policy-updated {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 21, 21, 0.12);
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.form-alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .two-column,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .form-intro {
    position: static;
  }

  .check-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .check-detail-grid article,
  .check-detail-grid article:nth-child(3n+2),
  .check-detail-grid article:nth-child(3n+3) {
    padding: 26px 24px 26px 0;
  }

  .check-detail-grid article:nth-child(3n+1),
  .check-detail-grid article:nth-child(3n+2) {
    border-right: 0;
  }

  .check-detail-grid article:nth-child(odd) {
    border-right: 1px solid rgba(21, 21, 21, 0.12);
  }

  .check-detail-grid article:nth-child(even) {
    padding-left: 24px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding: 52px 0 48px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .page-summary-card,
  .fi-form {
    padding: 24px;
    border-radius: 26px;
  }

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

  .check-detail-grid article,
  .check-detail-grid article:nth-child(even),
  .check-detail-grid article:nth-child(odd) {
    padding: 24px 0;
    border-right: 0;
  }
}