:root {
  --navy-950: #071b2d;
  --navy-900: #0d253f;
  --navy-800: #12375c;
  --navy-700: #194d7f;
  --blue-500: #3178c6;
  --cyan-200: #bde7ff;
  --gold-500: #d8aa3b;
  --gold-300: #f0d489;
  --green-500: #56a07d;
  --ink: #132033;
  --muted: #5c6b7d;
  --soft: #f4f7fb;
  --soft-blue: #eaf3fb;
  --white: #ffffff;
  --line: rgba(19, 32, 51, 0.12);
  --line-dark: rgba(255,255,255,0.16);
  --shadow-soft: 0 24px 70px rgba(7, 27, 45, 0.11);
  --shadow-deep: 0 35px 90px rgba(7, 27, 45, 0.28);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button, input, textarea {
  font: inherit;
}

button {
  border: 0;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-300);
  color: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(7, 27, 45, 0.93);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(7, 27, 45, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03)),
    var(--navy-800);
  color: var(--gold-300);
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.76);
  font-size: 0.94rem;
  font-weight: 760;
}

.site-nav a:not(.nav-button) {
  position: relative;
}

.site-nav a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold-300);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-300);
  box-shadow: 0 16px 34px rgba(240, 212, 137, 0.22);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 128px 0 84px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(49, 120, 198, 0.45), transparent 31%),
    radial-gradient(circle at 15% 22%, rgba(216, 170, 59, 0.28), transparent 27%),
    radial-gradient(circle at 50% 100%, rgba(86, 160, 125, 0.25), transparent 32%),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 52%, #132e4d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% -10%;
  height: 42%;
  background: var(--soft);
  transform: rotate(-2.7deg);
  transform-origin: left top;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.kicker {
  margin: 0 0 13px;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 810px;
  margin-bottom: 24px;
  font-size: clamp(3.45rem, 8vw, 7.35rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

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

.hero-copy {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 20px 38px rgba(216, 170, 59, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 48px rgba(216, 170, 59, 0.34);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 42px;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.96rem;
}

.hero-proof span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
}

.permit-board {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)),
    rgba(255,255,255,0.08);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(24px);
}

.permit-board::before {
  content: "";
  position: absolute;
  top: -28px;
  right: 36px;
  width: 118px;
  height: 118px;
  border-radius: 38px;
  background: rgba(240, 212, 137, 0.16);
  transform: rotate(12deg);
  z-index: -1;
}

.permit-board::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 40px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(49, 120, 198, 0.20);
  z-index: -1;
}

.board-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 8px rgba(86,160,125,0.14);
}

.board-card {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.11);
  border-radius: 24px;
}

.main-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
}

.card-label {
  margin-bottom: 5px;
  color: rgba(255,255,255,0.58);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.status-pill {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--cyan-200);
  background: rgba(189, 231, 255, 0.12);
  border: 1px solid rgba(189, 231, 255, 0.25);
  font-size: 0.78rem;
  font-weight: 850;
}

.board-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.board-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(7, 27, 45, 0.23);
  border: 1px solid rgba(255,255,255,0.10);
}

.board-row > span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}

.board-row.complete > span,
.board-row.active > span {
  position: relative;
  background: var(--gold-300);
  border-color: transparent;
}

.board-row.complete > span::after,
.board-row.active > span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  left: 7px;
  top: 8px;
  border-left: 2px solid var(--navy-950);
  border-bottom: 2px solid var(--navy-950);
  transform: rotate(-45deg);
}

.board-row strong {
  color: var(--white);
}

.board-row p {
  margin: 3px 0 0;
  color: rgba(255,255,255,0.64);
  font-size: 0.92rem;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-metrics div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
}

.mini-metrics strong {
  color: var(--gold-300);
  font-size: 1.65rem;
  line-height: 1;
}

.mini-metrics span {
  color: rgba(255,255,255,0.62);
  font-size: 0.83rem;
  font-weight: 700;
}

.audience-strip {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

.strip-grid {
  display: grid;
  grid-template-columns: 0.5fr repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.strip-grid span,
.strip-grid strong {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  background: var(--white);
}

.strip-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strip-grid strong {
  font-size: 0.95rem;
  letter-spacing: -0.015em;
}

.section {
  padding: clamp(74px, 9vw, 128px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.section-heading h2 {
  color: var(--navy-950);
}

.section-heading p:not(.kicker),
.text-stack p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.centered {
  width: min(780px, 100%);
  margin: 0 auto clamp(34px, 6vw, 58px);
  text-align: center;
}

.problem-section {
  background: var(--soft);
}

.services-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(49,120,198,0.09), transparent 30%),
    var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.timeline-card,
.checklist-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(7, 27, 45, 0.14);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 32px;
  border-radius: 18px;
  color: var(--navy-900);
  background: var(--soft-blue);
}

.icon-wrap svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.timeline-card p,
.checklist-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.installment-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(240, 212, 137, 0.18), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.installment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.installment-copy h2 {
  color: var(--white);
}

.installment-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 1.06rem;
}

.fine-print {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  font-size: 0.94rem !important;
}

.payment-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: rgba(255,255,255,0.10);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(20px);
}

.payment-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.payment-header span {
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.payment-header strong {
  font-size: 1.5rem;
  line-height: 1.05;
  text-align: right;
}

.payment-bars {
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.payment-bars div {
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.payment-bars span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-300), var(--green-500));
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255,255,255,0.78);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: var(--gold-300);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--navy-950);
  border-bottom: 2px solid var(--navy-950);
  transform: rotate(-45deg);
}

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

.timeline {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-card {
  position: relative;
  min-height: 265px;
  padding: 26px;
  overflow: hidden;
}

.timeline-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -42px;
  bottom: -48px;
  border-radius: 999px;
  background: var(--soft-blue);
}

.step-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.checklist-section {
  background: var(--white);
}

.carded {
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 20%, rgba(49,120,198,0.08), transparent 28%),
    var(--soft);
  box-shadow: inset 0 0 0 1px var(--line);
}

.checklist-card {
  padding: 28px;
}

.check-list.large li {
  color: var(--ink);
  font-weight: 720;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(216, 170, 59, 0.18), transparent 25%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255,255,255,0.74);
  font-size: 1.06rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-weight: 830;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 830;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfe;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(49,120,198,0.58);
  box-shadow: 0 0 0 4px rgba(49,120,198,0.12);
}

.contact-form .button {
  width: 100%;
  color: var(--navy-950);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.site-footer {
  padding: 44px 0 28px;
  color: rgba(255,255,255,0.70);
  background: var(--navy-950);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer p {
  margin-bottom: 0;
  max-width: 430px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  justify-content: flex-end;
  font-weight: 760;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,0.54);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .installment-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .permit-board {
    width: min(650px, 100%);
  }

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

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .strip-grid span {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    min-height: 70px;
    padding-inline: 15px;
  }

  .brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 15px auto 15px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: 22px;
    background: rgba(7, 27, 45, 0.98);
    box-shadow: var(--shadow-deep);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 86px;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.3rem);
  }

  .hero-proof,
  .mini-metrics,
  .strip-grid,
  .service-grid,
  .timeline,
  .two-column {
    grid-template-columns: 1fr;
  }

  .main-card {
    display: grid;
  }

  .strip-grid strong,
  .strip-grid span {
    min-height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .service-card,
  .timeline-card {
    min-height: auto;
  }

  .icon-wrap,
  .step-number {
    margin-bottom: 24px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
  }

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

@media (max-width: 460px) {
  .hero-actions .button {
    width: 100%;
  }

  .permit-board,
  .payment-card,
  .contact-form,
  .checklist-card,
  .carded {
    border-radius: 22px;
  }

  .board-row {
    grid-template-columns: 1fr;
  }

  .board-row > span {
    display: none;
  }
}
