:root {
  --green-900: #06451f;
  --green-800: #086126;
  --green-700: #087c2d;
  --green-600: #14913d;
  --green-100: #e8f5ec;
  --green-050: #f4faf6;
  --blue-900: #12344a;
  --blue-700: #24536d;
  --blue-100: #e9f2f7;
  --ink: #172026;
  --muted: #55636c;
  --line: #d9e1e5;
  --surface: #ffffff;
  --surface-alt: #f5f7f8;
  --warm: #f7f5ef;
  --gold: #f4b942;
  --shadow-sm: 0 10px 26px rgba(18, 52, 74, 0.08);
  --shadow-md: 0 20px 55px rgba(18, 52, 74, 0.14);
  --radius-sm: 0.65rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.6rem;
  --shell: 74rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-800);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-700);
}

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

h1,
h2,
h3 {
  color: var(--blue-900);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.65rem, 6vw, 5.1rem);
  letter-spacing: -0.052em;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid #0b71a7;
  outline-offset: 4px;
  border-radius: 0.2rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--blue-900);
  border-radius: 0.4rem;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.narrow-shell {
  max-width: 54rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 229, 0.9);
  box-shadow: 0 3px 16px rgba(18, 52, 74, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 5.75rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 13rem;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 1.65rem;
}

.desktop-nav a,
.text-link {
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 680;
  text-decoration: none;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--green-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.78rem 1.45rem;
  color: #fff;
  background: var(--green-700);
  border: 2px solid var(--green-700);
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(8, 124, 45, 0.2);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
  box-shadow: 0 11px 24px rgba(8, 97, 38, 0.26);
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.62rem 1rem;
  font-size: 0.9rem;
  box-shadow: none;
}

.button-secondary {
  color: var(--blue-900);
  background: transparent;
  border-color: #aebdc5;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--blue-900);
  background: #fff;
  border-color: var(--blue-900);
  box-shadow: none;
}

.button-light {
  color: var(--green-900);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
  color: var(--green-900);
  background: var(--green-100);
  border-color: var(--green-100);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.8rem) 0 clamp(4rem, 8vw, 6.8rem);
  background:
    radial-gradient(circle at 90% 5%, rgba(36, 83, 109, 0.12), transparent 34rem),
    linear-gradient(135deg, #f8fbf9 0%, #fff 50%, #eef6f9 100%);
}

.hero::before {
  position: absolute;
  top: -12rem;
  right: -11rem;
  width: 35rem;
  height: 35rem;
  content: "";
  border: 1px solid rgba(8, 124, 45, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(8, 124, 45, 0.035), 0 0 0 8rem rgba(36, 83, 109, 0.025);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.68fr);
  gap: clamp(3rem, 8vw, 6.5rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 45rem;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.7rem;
  gap: 0.8rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.6rem 1.2rem;
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.trust-list li::before {
  display: inline-grid;
  width: 1.15rem;
  height: 1.15rem;
  content: "✓";
  place-items: center;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.68rem;
}

.guide-card {
  position: relative;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 225, 229, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.guide-card::after {
  position: absolute;
  right: 1.2rem;
  bottom: -0.85rem;
  left: 1.2rem;
  z-index: -1;
  height: 3rem;
  content: "";
  background: var(--green-100);
  border-radius: var(--radius-lg);
}

.guide-card img {
  width: 100%;
  margin-bottom: 1rem;
  background: var(--blue-100);
  border: 3px solid var(--green-700);
  border-radius: 50%;
}

.guide-card p {
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.guide-card .guide-name {
  color: var(--blue-900);
  font-size: 1.3rem;
  font-weight: 800;
}

.guide-card .guide-note {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  color: var(--blue-700);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 650;
}

.proof-bar {
  color: #fff;
  background: var(--blue-900);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 1.55rem 1.5rem;
  text-align: center;
}

.proof-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

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

.proof-grid strong {
  max-width: 15rem;
  margin: 0.35rem auto 0;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.35;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.proof-grid .proof-label {
  color: #8fdda6;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.7rem;
}

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

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 15rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.steps li::after {
  position: absolute;
  top: 2.65rem;
  right: -1rem;
  z-index: 2;
  width: 1.65rem;
  height: 1px;
  content: "";
  background: var(--green-600);
}

.steps li:last-child::after {
  display: none;
}

.step-number {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.45rem;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  place-items: center;
  font-weight: 820;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.scheduler-section {
  background:
    linear-gradient(90deg, rgba(8, 124, 45, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(8, 124, 45, 0.06) 1px, transparent 1px),
    var(--green-050);
  background-size: 28px 28px;
}

.scheduler-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(30rem, 1.28fr);
  gap: clamp(2.5rem, 7vw, 5rem);
}

.scheduler-copy {
  position: sticky;
  top: 8rem;
}

.scheduler-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.85rem;
}

.check-list li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  color: var(--green-700);
  content: "✓";
  font-size: 1.12rem;
  font-weight: 900;
}

.callout {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  color: var(--blue-900);
  background: var(--blue-100);
  border-left: 4px solid var(--blue-700);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout span {
  margin-top: 0.15rem;
  color: var(--muted);
}

.scheduler-card {
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.1rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.scheduler-card-heading {
  margin: -2rem -2rem 1.5rem;
  padding: 1.6rem 2rem 1.35rem;
  color: #fff;
  background: var(--blue-900);
}

.scheduler-card-heading h3 {
  margin-bottom: 0.2rem;
  color: #fff;
  font-size: 1.5rem;
}

.scheduler-card-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.tidycal-embed {
  min-height: 42rem;
}

.privacy-note {
  margin-top: 1rem;
  padding-top: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  text-align: center;
}

.split-feature {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 7vw, 5.5rem);
}

.feature-image {
  position: relative;
}

.feature-image::before {
  position: absolute;
  right: -1.1rem;
  bottom: -1.1rem;
  width: 45%;
  height: 55%;
  content: "";
  background: var(--green-100);
  border-radius: var(--radius-lg);
}

.feature-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.fact-list {
  display: grid;
  margin: 2rem 0 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fact-list div {
  padding: 1rem;
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
}

.fact-list .fact-term {
  margin: 0;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fact-list .fact-description {
  margin: 0.3rem 0 0;
  color: var(--blue-900);
  font-weight: 700;
  line-height: 1.35;
}

.reviews-section {
  background: var(--surface-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  margin: 0;
  padding: 1.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stars {
  margin-bottom: 1rem;
  color: #a56b00;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0 0 1.25rem;
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.55;
}

.review-card figcaption {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.review-disclosure {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.service-area {
  color: #fff;
  background:
    radial-gradient(circle at 9% 0%, rgba(255, 255, 255, 0.1), transparent 28rem),
    var(--blue-900);
}

.service-area-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.service-area h2,
.service-area .eyebrow {
  color: #fff;
}

.service-area p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.1rem;
}

.faq-section {
  background: #fff;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.3rem 3rem 1.3rem 0;
  color: var(--blue-900);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.12rem;
  right: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  color: var(--green-800);
  content: "+";
  background: var(--green-100);
  border-radius: 50%;
  place-items: center;
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 48rem;
  padding: 0 2rem 1.4rem 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(3.5rem, 7vw, 5.2rem) 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(6, 69, 31, 0.96), rgba(8, 124, 45, 0.92)),
    var(--green-800);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.final-cta h2 {
  max-width: 45rem;
  margin-bottom: 0;
}

.site-footer {
  padding: 3.5rem 0 5rem;
  color: rgba(255, 255, 255, 0.7);
  background: #0e252f;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 3rem;
}

.site-footer img {
  width: 12rem;
  margin-bottom: 1rem;
  padding: 0.45rem;
  background: #fff;
  border-radius: 0.4rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .footer-heading {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-footer {
  padding: 1.6rem 0;
  text-align: center;
}

.compact-footer p,
.compact-footer a {
  display: inline;
  margin: 0;
}

.mobile-action-bar {
  display: none;
}

.simple-page {
  background: var(--surface-alt);
}

.simple-main,
.policy-main {
  min-height: 68vh;
  padding: clamp(4rem, 9vw, 7rem) 1.25rem;
}

.confirmation-card,
.policy-card {
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.confirmation-card {
  text-align: center;
}

.confirmation-card h1,
.policy-card h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.confirmation-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.confirmation-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
}

.next-steps {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--green-050);
  border-radius: var(--radius-md);
  text-align: left;
}

.next-steps h2 {
  font-size: 1.25rem;
}

.policy-card {
  width: min(100%, 58rem);
}

.policy-card h2 {
  margin-top: 2.2rem;
  font-size: 1.55rem;
}

.policy-card p,
.policy-card li {
  color: #3f4d55;
}

.effective-date {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.policy-card address {
  color: #3f4d55;
  font-style: normal;
}

@media (max-width: 68rem) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.7fr);
    gap: 3rem;
  }

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

  .scheduler-copy {
    position: static;
    max-width: 44rem;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    max-width: 48rem;
  }
}

@media (max-width: 52rem) {
  h1 {
    font-size: clamp(2.5rem, 11vw, 4.2rem);
  }

  .header-inner {
    min-height: 4.9rem;
  }

  .brand img {
    width: 10.5rem;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero-grid,
  .service-area-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .guide-card {
    display: grid;
    align-items: center;
    grid-template-columns: 9rem 1fr;
    gap: 1.25rem;
  }

  .guide-card img {
    margin-bottom: 0;
  }

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

  .proof-grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-grid div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .steps,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
  }

  .steps li::after {
    display: none;
  }

  .reviews-grid {
    max-width: 38rem;
    margin-inline: auto;
  }

  .review-card {
    min-height: 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 38rem) {
  html {
    scroll-padding-top: 5.5rem;
  }

  body:not(.simple-page) {
    padding-bottom: 4rem;
  }

  .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .brand img {
    width: 9.4rem;
  }

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

  .hero {
    padding-top: 3rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-card {
    grid-template-columns: 6.5rem 1fr;
    padding: 0.85rem;
    gap: 0.9rem;
  }

  .guide-card .guide-name {
    font-size: 1.12rem;
  }

  .guide-card p {
    font-size: 0.84rem;
  }

  .guide-card .guide-note {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    font-size: 0.76rem;
  }

  .proof-grid strong {
    font-size: 1rem;
  }

  .proof-grid span {
    font-size: 0.75rem;
  }

  .proof-grid div {
    padding: 1.15rem 0.55rem;
  }

  .section {
    padding: 4rem 0;
  }

  .steps li {
    padding: 1.45rem;
  }

  .scheduler-card {
    margin-inline: -0.15rem;
    padding: 0.65rem;
    border-radius: 0.9rem;
  }

  .scheduler-card-heading {
    margin: -0.65rem -0.65rem 1rem;
    padding: 1.2rem;
    border-radius: 0.9rem 0.9rem 0 0;
  }

  .tidycal-embed {
    min-height: 38rem;
  }

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

  .feature-image::before {
    right: -0.45rem;
    bottom: -0.45rem;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    padding: 0.55rem;
    background: rgba(14, 37, 47, 0.97);
    box-shadow: 0 -5px 22px rgba(0, 0, 0, 0.18);
    gap: 0.5rem;
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 3rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    place-items: center;
    font-weight: 780;
    text-decoration: none;
  }

  .mobile-action-bar a:last-child {
    background: var(--green-600);
    border-color: var(--green-600);
  }

  .simple-main,
  .policy-main {
    padding: 2rem 0.75rem;
  }

  .confirmation-card,
  .policy-card {
    padding: 1.5rem;
  }
}

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

@media print {
  .site-header,
  .mobile-action-bar,
  .button,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .policy-main,
  .simple-main {
    padding: 0;
  }

  .policy-card,
  .confirmation-card {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
