@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");

:root {
  --blue: #185fa5;
  --blue-light: #e6f1fb;
  --blue-dark: #0c447c;
  --teal-light: #e1f5ee;
  --teal-dark: #085041;
  --amber: #ef9f27;
  --amber-light: #faeeda;
  --amber-dark: #633806;
  --green-light: #eaf3de;
  --green-dark: #27500a;
  --purple-light: #eeedfe;
  --purple-dark: #3c3489;
  --pink-light: #fbeaf0;
  --pink-dark: #72243e;
  --surface: #f5f5f3;
  --text: #0a0a0a;
  --muted: #6b6b6b;
  --hint: #9a9a9a;
  --border: rgba(0, 0, 0, 0.1);
  --border-medium: rgba(0, 0, 0, 0.2);
  --dark-card: #0a0a0a;
  --dark-text: #f5f5f3;
  --dark-muted: #888780;
  --dark-feature: #d3d1c7;
  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;
  background: #fff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

body.has-sticky-cta {
  padding-bottom: 0;
}

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

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 36px;
  padding: 8px 20px;
  background: var(--blue-light);
  border-bottom: 0.5px solid var(--border);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  animation: banner-enter 520ms ease both;
}

.announcement-bar a {
  color: var(--blue);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 80px;
  background: #fff;
  border-bottom: 0.5px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.brand-logo {
  width: 128px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.nav-cta {
  padding: 8px 18px;
  background: var(--blue);
  color: var(--blue-light);
  border: 0;
  font-size: 13px;
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--blue-dark);
}

.button-outline:hover {
  border-color: var(--text);
}

.hero {
  padding: 72px 80px 56px;
}

.hero-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.tag-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.tag-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

h1 {
  margin-top: 14px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 500px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero .button-row {
  margin-bottom: 20px;
}

.button-primary {
  padding: 12px 26px;
  background: var(--blue);
  border: 0;
  color: var(--blue-light);
}

.button-outline {
  padding: 12px 26px;
  background: transparent;
  border: 0.5px solid rgba(0, 0, 0, 0.25);
  color: var(--text);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
}

.trust-row span,
.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.trust-row i,
.feature-list i {
  display: grid;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
}

.trust-row i,
.feature-green i {
  background: var(--green-light);
  color: var(--green-dark);
}

.feature-blue i {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.feature-purple i {
  background: var(--purple-light);
  color: var(--purple-dark);
}

.trust-row svg,
.feature-list svg {
  width: 8px;
  height: 8px;
  stroke-width: 2.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
}

.stats-grid article {
  padding: 16px;
  background: var(--surface);
  border-radius: 8px;
  text-align: center;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.stats-grid article:hover {
  background: #eeeeeb;
  transform: translateY(-2px);
}

.stats-grid strong {
  display: block;
  color: var(--text);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.stats-grid article > span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.mini-proof span {
  padding: 5px 10px;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

.divider {
  height: 0.5px;
  margin: 0 80px;
  background: rgba(0, 0, 0, 0.08);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 80px;
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2,
.pricing h2,
.cta h2 {
  margin-top: 14px;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.section-heading p,
.pricing-note,
.pricing-note a,
.cta p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.service-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.card,
.price-card {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
}

.service-card-link {
  display: block;
}

.card {
  padding: 20px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.card:hover,
.price-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.icon svg {
  width: 19px;
  height: 19px;
}

.icon-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.icon-amber {
  background: var(--amber-light);
  color: var(--amber-dark);
}

.icon-purple {
  background: var(--purple-light);
  color: var(--purple-dark);
}

.icon-green {
  background: var(--green-light);
  color: var(--green-dark);
}

.icon-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.icon-pink {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.card h3 {
  margin-top: 12px;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.card p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.steps-grid article {
  text-align: center;
}

.steps-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  place-items: center;
  background: var(--blue-light);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 500;
}

.steps-grid h3 {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.steps-grid p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.industry-card {
  min-height: 126px;
  padding: 18px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.industry-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.industry-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.industry-card p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.pricing-grid {
  align-items: start;
}

.price-card {
  padding: 24px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.badge-neutral {
  background: #f1efe8;
  color: #444441;
}

.badge-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.badge-purple {
  background: var(--purple-light);
  color: var(--purple-dark);
}

.price-card h3 {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.plan-desc {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.setup-fee {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.price-row {
  display: flex;
  gap: 4px;
  align-items: baseline;
}

.price-row strong {
  color: var(--text);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.card-divider {
  height: 0.5px;
  margin: 18px 0;
  background: var(--border);
}

.includes {
  margin-bottom: 12px;
  color: var(--hint);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 9px;
}

.feature-list li {
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.price-button {
  width: 100%;
  margin-top: 20px;
  padding: 11px;
  font-size: 13px;
}

.featured-card {
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--blue);
}

.popular-banner {
  padding: 7px;
  background: var(--blue);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.featured-inner {
  padding: 24px;
}

.pro-card {
  background: var(--dark-card);
  border-color: #222;
}

.pro-card h3,
.pro-card .price-row strong {
  color: var(--dark-text);
}

.pro-card .plan-desc,
.pro-card .setup-fee,
.pro-card .price-row span {
  color: var(--dark-muted);
}

.pro-card .card-divider {
  background: #333;
}

.pro-card .includes {
  color: #5f5e5a;
}

.pro-card .feature-list li {
  color: var(--dark-feature);
}

.pro-button {
  background: var(--purple-light);
  border: 0;
  color: #26215c;
}

.pricing-note {
  margin-top: 20px;
  text-align: center;
}

.pricing-note a {
  color: var(--blue);
}

.faq-list {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  border-top: 0.5px solid var(--border);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--blue-light);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

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

.faq-list p {
  max-width: 640px;
  padding: 0 40px 18px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.testimonial-card {
  padding: 20px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.stars span {
  width: 11px;
  height: 11px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.quote {
  margin-bottom: 14px !important;
  color: var(--text) !important;
  font-size: 13px !important;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55 !important;
}

.author {
  display: flex;
  gap: 9px;
  align-items: center;
}

.avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
}

.avatar-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.avatar-green {
  background: var(--green-light);
  color: var(--green-dark);
}

.avatar-purple {
  background: var(--purple-light);
  color: var(--purple-dark);
}

.author strong {
  display: block;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.author small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
}

.cta {
  margin: 0 80px 48px;
  padding: 48px 40px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.thank-you-main {
  display: grid;
  min-height: calc(100vh - 141px);
  align-items: center;
  padding: 64px 0 16px;
}

.page-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 80px 56px;
  text-align: center;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-card,
.page-panel {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
}

.page-card {
  display: block;
  padding: 22px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.page-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.page-card h2 {
  margin-top: 14px;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.page-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.text-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.section-tight {
  padding-top: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.two-column h2 {
  margin-top: 14px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.two-column p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.page-panel {
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 11px;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--green-light);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 5px;
  height: 8px;
  border-right: 1.5px solid var(--green-dark);
  border-bottom: 1.5px solid var(--green-dark);
  transform: rotate(45deg);
}

.contact-page-cta {
  margin-top: 0;
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: stretch;
}

.workflow-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 22px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 14px;
}

.workflow-step {
  min-height: 128px;
  padding: 16px;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
}

.workflow-step span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  place-items: center;
  background: var(--blue-light);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 500;
}

.workflow-step strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.workflow-step small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.workflow-line {
  width: 22px;
  height: 0.5px;
  background: var(--border-medium);
}

.legal-main {
  padding: 64px 80px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-kicker {
  margin-bottom: 12px;
  color: var(--hint);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.legal-content h1 {
  margin: 0 0 18px;
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.legal-content p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.legal-content a {
  color: var(--blue);
  font-weight: 500;
}

html.has-js .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition:
    transform 620ms ease;
}

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

html.has-js .hero.reveal {
  transform: translateY(10px);
}

@keyframes banner-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta h2 {
  margin-top: 6px;
}

.cta p {
  max-width: 460px;
  margin: 0 auto 26px;
}

.cta-booking-row {
  margin-bottom: 26px;
}

.lead-form {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 11px 12px;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: none;
}

.lead-form .button-row {
  margin-top: 8px;
}

.hidden-field {
  display: none;
}

.cta small {
  display: block;
  margin-top: 14px;
  color: var(--hint);
  font-size: 11px;
  font-weight: 400;
}

.cta small a {
  color: var(--blue);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 80px;
  background: #fff;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}

.site-footer p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.site-footer nav a,
.site-footer nav span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.site-footer nav span {
  color: var(--hint);
}

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

@media (max-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: 78px;
  }

  .announcement-bar {
    display: grid;
    gap: 2px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand-logo {
    width: 112px;
    height: 30px;
  }

  .site-nav {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 30;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 8px;
    color: var(--blue-light);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  html.has-js .mobile-sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  html.has-js .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 26px;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .divider {
    margin-right: 20px;
    margin-left: 20px;
  }

  .service-grid,
  .industry-grid,
  .page-card-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta {
    margin-right: 16px;
    margin-left: 16px;
  }

  .legal-main {
    padding: 48px 20px;
  }

  .page-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .audit-grid,
  .workflow-card {
    grid-template-columns: 1fr;
  }

  .workflow-line {
    width: 0.5px;
    height: 18px;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .hero,
  .section {
    padding: 40px 20px;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .trust-row {
    display: grid;
    gap: 12px;
    justify-content: center;
  }

  .service-grid,
  .industry-grid,
  .page-card-grid,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 40px 20px;
  }

  .site-footer {
    display: grid;
    padding: 28px 20px;
  }

  .site-footer nav {
    gap: 16px;
  }
}

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

  html.has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
