:root {
  --navy: #071044;
  --navy-soft: #121a55;
  --ink: #101431;
  --muted: #5e647d;
  --paper: #ffffff;
  --surface: #f4f8fc;
  --line: #dce3ec;
  --pink: #f0007c;
  --pink-dark: #b40058;
  --teal: #00b7c4;
  --teal-dark: #006b75;
  --lime: #b4d900;
  --orange: #ff9700;
  --max: 1200px;
  --shadow: 0 28px 80px rgba(7, 16, 68, 0.14);
  --font-display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 25px rgba(7, 16, 68, 0.06);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.brand span { display: grid; line-height: 1.05; }
.brand strong { font-family: var(--font-display); font-size: 17px; }
.brand small { margin-top: 4px; color: var(--teal-dark); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { font-size: 14px; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button)::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 2px;
  background: var(--pink);
  content: "";
  transition: width 160ms ease;
}
.site-nav > a:not(.button):hover::after { width: 100%; }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 2px solid var(--navy);
  border-radius: 9px;
  color: white;
  background: var(--navy);
  box-shadow: 5px 5px 0 var(--pink);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.button:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--pink); }
.button-small { min-height: 42px; padding: 9px 16px; border-radius: 7px; box-shadow: 3px 3px 0 var(--teal); font-size: 14px; }
.button-small:hover { box-shadow: 1px 1px 0 var(--teal); }
.button-outline { color: var(--navy); background: transparent; box-shadow: 4px 4px 0 var(--lime); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100vh - 77px));
  grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 105px) 24px 90px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -110px;
  width: 460px;
  height: 460px;
  border: 44px solid rgba(0, 183, 196, .07);
  border-radius: 50%;
  content: "";
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker > span { width: 34px; height: 3px; background: var(--pink); }
.kicker-dark { color: var(--navy); }
.kicker-light { color: #8eeff5; }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--font-display); }

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: .96;
  text-wrap: balance;
}

h1 em {
  color: var(--pink-dark);
  font-style: normal;
  font-weight: 500;
}

.hero-lede {
  max-width: 630px;
  margin: 29px 0 0;
  color: #454b65;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 36px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.trust-list span { color: var(--teal-dark); }

.hero-visual { position: relative; min-height: 550px; }

.hero-visual::before {
  position: absolute;
  inset: 54px 15px 20px 30px;
  border-radius: 48% 52% 45% 55% / 55% 38% 62% 45%;
  background: var(--teal);
  content: "";
  transform: rotate(-4deg);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  inset: 108px -28px 35px 86px;
  border: 4px solid var(--pink);
  border-radius: 50%;
  content: "";
  transform: rotate(7deg);
}

.ledger-window {
  position: absolute;
  z-index: 3;
  top: 82px;
  left: 50%;
  width: min(440px, calc(100% - 54px));
  padding: 27px;
  border: 1px solid rgba(7, 16, 68, .09);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(-50%) rotate(1.2deg);
}

.ledger-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.micro-label { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ledger-topbar h2 { margin: 2px 0 0; font-size: 25px; line-height: 1.2; }
.status-pill { padding: 6px 10px; border-radius: 99px; color: #2d5100; background: #e9f6af; font-size: 11px; font-weight: 800; }

.profit-block { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 27px; }
.profit-block div { display: grid; }
.profit-block div span { color: var(--muted); font-size: 13px; }
.profit-block strong { color: var(--navy); font-family: var(--font-display); font-size: 42px; line-height: 1.15; }
.up-chip { margin-bottom: 7px; padding: 5px 8px; color: var(--teal-dark); background: rgba(0,183,196,.12); font-size: 12px; font-weight: 800; }

.chart { display: flex; height: 82px; align-items: flex-end; gap: 7px; margin: 20px 0 25px; border-bottom: 1px solid var(--line); }
.chart span { flex: 1; height: var(--h); min-height: 10px; border-radius: 4px 4px 0 0; background: var(--teal); transform-origin: bottom; animation: bar-in 700ms cubic-bezier(.2,.8,.2,1) both; }
.chart span:nth-child(2), .chart span:nth-child(5) { background: var(--pink); animation-delay: 60ms; }
.chart span:nth-child(3), .chart span:nth-child(7) { background: var(--lime); animation-delay: 120ms; }
.chart span:nth-child(4) { background: var(--orange); animation-delay: 180ms; }

@keyframes bar-in { from { transform: scaleY(.05); opacity: .3; } }

.ledger-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.ledger-row div { display: grid; line-height: 1.3; }
.ledger-row div strong { font-size: 13px; }
.ledger-row div small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.ledger-row > span:last-child { color: var(--muted); font-size: 11px; font-weight: 700; }
.row-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: white; font-size: 12px; font-weight: 900; }
.row-icon.teal { background: var(--teal-dark); }
.row-icon.pink { background: var(--pink-dark); }

.ledger-note { display: flex; align-items: center; gap: 12px; margin-top: 19px; padding: 13px; border-left: 4px solid var(--pink); background: #fff4f8; }
.ledger-note p { margin: 0; font-size: 11px; line-height: 1.45; }
.avatar { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; background: var(--navy); font-size: 10px; font-weight: 800; }

.books-status {
  position: absolute;
  z-index: 5;
  top: 54px;
  right: -3px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(7,16,68,.12);
  font-size: 12px;
  font-weight: 800;
  animation: settle 550ms 250ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes settle { from { opacity: 0; transform: translateY(10px) rotate(2deg); } }

.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(180,217,0,.18); }
.paper-tab { position: absolute; z-index: 4; padding: 8px 13px; color: var(--navy); background: white; box-shadow: 0 10px 22px rgba(7,16,68,.13); font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.paper-tab-left { bottom: 62px; left: 2px; border-left: 5px solid var(--lime); transform: rotate(-7deg); }
.paper-tab-right { right: 6px; bottom: 90px; border-left: 5px solid var(--pink); transform: rotate(5deg); }
.spark { position: absolute; z-index: 4; font-size: 27px; line-height: 1; }
.spark-pink { top: 18px; left: 42px; color: var(--pink); }
.spark-teal { right: 22px; bottom: 32px; color: var(--teal-dark); }
.spark-lime { top: 88px; left: -5px; color: var(--lime); font-size: 18px; }

.marquee { overflow: hidden; border-top: 1px solid var(--navy); border-bottom: 1px solid var(--navy); color: white; background: var(--navy); }
.marquee div { display: flex; width: max-content; align-items: center; gap: 28px; padding: 13px 0; animation: ticker 25s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 15px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.marquee i { color: var(--pink); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-shell { max-width: var(--max); margin: 0 auto; padding-right: 24px; padding-left: 24px; }

.intro { display: grid; grid-template-columns: 80px 1.25fr .75fr; gap: 40px; padding-top: 120px; padding-bottom: 120px; }
.section-number { padding-top: 45px; color: var(--pink-dark); font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.intro h2, .section-heading h2, .faq h2, .contact h2 { margin: 0; font-size: clamp(40px, 5vw, 64px); letter-spacing: -.035em; line-height: 1.04; text-wrap: balance; }
.intro-copy { align-self: end; max-width: 440px; padding-bottom: 3px; }
.intro-copy p { margin: 0 0 24px; color: var(--muted); font-size: 17px; }

.services { padding-top: 100px; padding-bottom: 110px; border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 62px; }
.section-heading > div { max-width: 760px; }
.section-heading > p { max-width: 340px; margin: 0 0 7px; color: var(--muted); font-size: 17px; }
.service-list { border-top: 2px solid var(--navy); }
.service-row { display: grid; grid-template-columns: 42px 1.05fr 1fr 34px; align-items: center; gap: 22px; padding: 27px 6px; border-bottom: 1px solid var(--line); transition: padding 160ms ease, background-color 160ms ease; }
.service-row:hover { padding-right: 16px; padding-left: 16px; background: var(--surface); }
.service-number { color: var(--muted); font-size: 11px; font-weight: 800; }
.service-title { display: flex; align-items: center; gap: 17px; }
.service-title h3 { margin: 0; font-size: clamp(22px, 2.4vw, 31px); line-height: 1.1; }
.service-mark { display: grid; width: 43px; height: 43px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; font-size: 19px; font-weight: 800; }
.pink-bg { background: var(--pink-dark); }
.teal-bg { background: var(--teal-dark); }
.lime-bg { color: var(--navy); background: var(--lime); }
.orange-bg { color: var(--navy); background: var(--orange); }
.service-row > p { max-width: 490px; margin: 0; color: var(--muted); }
.service-arrow { color: var(--pink-dark); font-size: 24px; transition: transform 150ms ease; }
.service-row:hover .service-arrow { transform: translate(3px, -3px); }

.fit-strip { padding: 35px 24px 40px; color: white; background: var(--teal-dark); text-align: center; }
.fit-strip p { margin: 0 0 17px; color: #a5f4f8; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.fit-strip ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 1100px; margin: 0 auto; padding: 0; list-style: none; }
.fit-strip li { padding: 8px 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; font-family: var(--font-display); font-weight: 700; }

.process { padding-top: 120px; padding-bottom: 130px; }
.process-heading { align-items: center; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin: 75px 0 0; padding: 0; list-style: none; }
.process-list::before { position: absolute; top: 28px; right: 12%; left: 12%; height: 2px; background: var(--line); content: ""; }
.process-list li { position: relative; z-index: 1; }
.process-number { display: grid; width: 58px; height: 58px; place-items: center; border: 2px solid var(--navy); border-radius: 50%; color: var(--navy); background: white; box-shadow: 4px 4px 0 var(--teal); font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.process-list li:nth-child(2) .process-number { box-shadow-color: var(--pink); }
.process-list li:nth-child(3) .process-number { box-shadow-color: var(--lime); }
.process-list h3 { margin: 28px 0 12px; font-size: 25px; line-height: 1.2; }
.process-list p { max-width: 330px; margin: 0; color: var(--muted); }

.about { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 690px; color: white; background: var(--navy); }
.about-mark { display: grid; min-height: 620px; place-items: center; padding: 60px; background: var(--pink); overflow: hidden; }
.about-mark img { width: min(520px, 90%); border: 10px solid white; border-radius: 50%; box-shadow: 28px 28px 0 var(--teal); transform: rotate(-3deg); }
.about-copy { align-self: center; max-width: 680px; padding: 90px clamp(45px, 8vw, 120px); }
.about-copy blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(38px, 4vw, 61px); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.about-copy > p:not(.kicker) { max-width: 590px; margin: 32px 0 0; color: #cbd0e4; font-size: 17px; }
.signature { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.signature-line { width: 46px; height: 2px; background: var(--lime); }
.signature div { display: grid; }
.signature strong { font-family: var(--font-display); font-size: 18px; }
.signature small { color: #9ea5c5; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 145px); padding-top: 125px; padding-bottom: 125px; }
.faq-title { align-self: start; position: sticky; top: 115px; }
.faq-title > p:last-child { max-width: 360px; margin-top: 24px; color: var(--muted); }
.faq-list { border-top: 2px solid var(--navy); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 25px 0; cursor: pointer; font-family: var(--font-display); font-size: 21px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--pink-dark); font-size: 28px; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -5px 48px 25px 0; color: var(--muted); }

.contact { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(60px, 10vw, 130px); max-width: none; padding: 110px max(24px, calc((100vw - var(--max)) / 2)); color: white; background: var(--teal-dark); }
.contact-copy > p:not(.kicker) { max-width: 570px; margin-top: 24px; color: #c7f7f8; font-size: 18px; }
.contact-promise { display: flex; align-items: center; gap: 14px; margin-top: 42px; }
.contact-promise > span { display: grid; width: 49px; height: 49px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; background: var(--pink); }
.contact-promise p { margin: 0; color: #d8fbfc; font-size: 14px; line-height: 1.5; }
.contact-promise strong { color: white; }

.contact-form { display: grid; gap: 19px; padding: 34px; border-radius: 16px; color: var(--ink); background: white; box-shadow: 12px 12px 0 var(--pink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-size: 12px; font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #cbd4e1; border-radius: 6px; color: var(--ink); background: white; outline: none; }
.contact-form input, .contact-form select { min-height: 46px; padding: 9px 11px; }
.contact-form textarea { min-height: 105px; padding: 11px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(0,107,117,.15); }
.button-submit { width: 100%; margin-top: 4px; cursor: pointer; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 45px; padding: 55px max(24px, calc((100vw - var(--max)) / 2)); color: #c9cee3; background: #040a2c; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.footer-brand p { max-width: 220px; margin: 0; font-size: 12px; line-height: 1.45; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer a { color: white; font-size: 13px; font-weight: 700; text-underline-offset: 4px; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0 0 5px; font-size: 11px; }

@media (max-width: 980px) {
  .site-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 750px; }
  .hero-visual { width: min(600px, 100%); margin: 0 auto; }
  .intro { grid-template-columns: 50px 1fr; }
  .intro-copy { grid-column: 2; }
  .service-row { grid-template-columns: 35px 1fr 34px; }
  .service-row > p { grid-column: 2; }
  .service-arrow { grid-column: 3; grid-row: 1; }
  .about { grid-template-columns: 1fr; }
  .about-mark { min-height: 560px; }
  .about-copy { max-width: 800px; }
  .contact { grid-template-columns: 1fr; }
  .contact-copy { max-width: 780px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer nav { justify-self: end; }
  .footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; text-align: left; }
}

@media (max-width: 760px) {
  .site-header { padding: 11px 18px; }
  .menu-toggle { z-index: 52; display: grid; width: 43px; height: 43px; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 7px; background: white; }
  .menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: var(--navy); transition: transform 160ms ease, opacity 160ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 51; display: none; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 90px 28px 40px; background: white; }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { font-family: var(--font-display); font-size: 32px; }
  .site-nav .button { margin-top: 14px; }
  .hero { min-height: auto; gap: 35px; padding: 62px 18px 65px; }
  h1 { font-size: clamp(49px, 14vw, 68px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-list { display: grid; gap: 6px; margin-top: 29px; }
  .hero-visual { min-height: 500px; }
  .ledger-window { top: 67px; padding: 20px; }
  .books-status { top: 38px; right: 3px; }
  .paper-tab-left { left: 9px; bottom: 45px; }
  .paper-tab-right { right: 5px; bottom: 72px; }
  .section-shell { padding-right: 18px; padding-left: 18px; }
  .intro { grid-template-columns: 1fr; gap: 25px; padding-top: 85px; padding-bottom: 85px; }
  .section-number { display: none; }
  .intro-copy { grid-column: auto; }
  .services { padding-top: 75px; padding-bottom: 75px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 42px; }
  .intro h2, .section-heading h2, .faq h2, .contact h2 { font-size: clamp(38px, 11vw, 52px); }
  .service-row { grid-template-columns: 27px 1fr 24px; gap: 12px; padding: 23px 0; }
  .service-row:hover { padding-right: 5px; padding-left: 5px; }
  .service-title { gap: 12px; }
  .service-mark { width: 38px; height: 38px; }
  .service-row > p { padding-right: 8px; font-size: 14px; }
  .process { padding-top: 85px; padding-bottom: 90px; }
  .process-list { grid-template-columns: 1fr; gap: 45px; margin-top: 50px; }
  .process-list::before { top: 20px; bottom: 20px; left: 29px; width: 2px; height: auto; }
  .process-list li { display: grid; grid-template-columns: 58px 1fr; column-gap: 20px; }
  .process-number { grid-row: 1 / 3; }
  .process-list h3 { margin: 5px 0 7px; }
  .process-list p { grid-column: 2; }
  .about-mark { min-height: 420px; padding: 45px 28px; }
  .about-copy { padding: 72px 24px 78px; }
  .faq { grid-template-columns: 1fr; gap: 48px; padding-top: 85px; padding-bottom: 85px; }
  .faq-title { position: static; }
  .faq-list summary { font-size: 18px; }
  .contact { padding: 82px 18px; }
  .contact-form { padding: 24px 18px; box-shadow: 7px 7px 0 var(--pink); }
  .field-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 50px 18px; }
  .site-footer nav { justify-self: start; flex-wrap: wrap; }
  .footer-meta { grid-column: auto; }
}

@media (max-width: 420px) {
  .brand strong { font-size: 15px; }
  .brand img { width: 42px; height: 42px; }
  .hero-visual { min-height: 480px; }
  .ledger-window { width: calc(100% - 28px); }
  .profit-block strong { font-size: 35px; }
  .books-status { font-size: 10px; }
  .service-title h3 { font-size: 21px; }
}

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