.marketing-site {
  min-height: 100vh;
  overflow-x: clip;
  background: #ffffff;
  color: var(--text);
}

.marketing-site h1,
.marketing-site h2,
.marketing-site h3 {
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.marketing-container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.marketing-utility {
  background: #171a20;
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 750;
}

.marketing-utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marketing-utility-inner > span,
.marketing-utility-inner > div,
.marketing-utility-inner a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.marketing-utility-inner > div {
  gap: 20px;
}

.marketing-utility a {
  text-decoration: none;
}

.marketing-utility a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

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

.marketing-logo {
  display: inline-flex;
  flex: none;
  align-items: center;
}

.marketing-logo img {
  width: 178px;
  height: 59px;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.marketing-nav a {
  text-decoration: none;
}

.marketing-nav a:hover {
  color: var(--accent);
}

.marketing-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketing-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.marketing-button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(62, 106, 225, 0.2);
}

.marketing-button-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.marketing-button-secondary {
  border-color: var(--accent);
  background: #ffffff;
  color: var(--text);
}

.marketing-button-secondary:hover {
  background: #eef3ff;
}

.marketing-button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: #1f4fb5;
}

.marketing-button-light:hover {
  background: #eef3ff;
}

.marketing-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--text);
}

.marketing-menu-button svg {
  width: 22px;
  height: 22px;
}

.marketing-mobile-menu {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.marketing-mobile-menu .marketing-container {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 16px;
}

.marketing-mobile-menu a {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 13px 15px;
  font-weight: 800;
  text-decoration: none;
}

.marketing-breadcrumbs {
  padding-top: 22px;
  padding-bottom: 4px;
}

.marketing-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.marketing-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.marketing-breadcrumbs a {
  color: var(--accent-hover);
  text-decoration: none;
}

.marketing-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.marketing-page-hero {
  border-bottom: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 58px 0 72px;
}

.marketing-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.marketing-eyebrow {
  display: inline-block;
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.marketing-page-hero h1,
.marketing-legal-hero h1,
.marketing-not-found h1 {
  max-width: 760px;
  margin-top: 13px;
  color: var(--text);
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.marketing-page-hero-grid > div:first-child > p,
.marketing-legal-hero > .marketing-container > p,
.marketing-not-found p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.75;
}

.marketing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.marketing-page-hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #171a20;
  box-shadow: 24px 24px 0 #eef3ff;
}

.marketing-page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

.marketing-page-hero--scroll-fade {
  --marketing-header-height: 72px;
  --marketing-hero-drawer-peek: 64px;
  --marketing-hero-reveal-progress: 0;
  position: relative;
  border-bottom: 0;
  padding: 0;
}

.marketing-scroll-fade-stage {
  position: sticky;
  top: var(--marketing-header-height);
  z-index: 0;
  height: calc(
    100vh - var(--marketing-header-height) -
      var(--marketing-hero-drawer-peek)
  );
  overflow: hidden;
  background: #111827;
}

@supports (height: 100svh) {
  .marketing-scroll-fade-stage {
    height: calc(
      100svh - var(--marketing-header-height) -
        var(--marketing-hero-drawer-peek)
    );
  }
}

.marketing-scroll-fade-stage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.marketing-scroll-fade-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(9, 16, 28, 0) 45%,
      rgba(
        9,
        16,
        28,
        calc(var(--marketing-hero-reveal-progress, 0) * 0.1)
      )
        100%
    ),
    rgba(
      9,
      16,
      28,
      calc(var(--marketing-hero-reveal-progress, 0) * 0.58)
    );
}

.marketing-scroll-fade-drawer {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--marketing-hero-drawer-peek));
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.98);
  padding-top: 18px;
  box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.14);
}

.marketing-scroll-fade-handle {
  width: 40px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(107, 114, 128, 0.5);
}

.marketing-scroll-fade-drawer-inner {
  opacity: calc(
    0.94 + (var(--marketing-hero-reveal-progress, 0) * 0.06)
  );
  transform: translateY(
    calc((1 - var(--marketing-hero-reveal-progress, 0)) * 24px)
  );
}

.marketing-page-hero--scroll-fade .marketing-page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-top: 56px;
  padding-bottom: 72px;
}

.marketing-page-hero--scroll-fade .marketing-page-hero-copy {
  max-width: 800px;
}

.marketing-price-callout {
  max-width: 610px;
  margin-top: 24px;
  border-left: 5px solid var(--accent);
  background: #eef3ff;
  padding: 18px 20px;
}

.marketing-price-callout strong {
  display: block;
  color: var(--text);
  font-size: 1.03rem;
}

.marketing-price-callout p {
  margin-top: 6px;
  color: var(--body);
  font-size: 0.88rem;
  line-height: 1.55;
}

.marketing-section {
  border-bottom: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 80px 0;
}

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

.marketing-section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.marketing-section-heading h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.marketing-section-heading p {
  margin-top: 16px;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.72;
}

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

.marketing-service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(23, 26, 32, 0.06);
}

.marketing-service-card > div:first-child > span {
  color: var(--accent-hover);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-service-card h2 {
  margin-top: 12px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.marketing-service-card > div:first-child > p {
  margin-top: 16px;
  color: var(--body);
  line-height: 1.65;
}

.marketing-card-price {
  margin-top: 20px;
  border-left: 4px solid var(--accent);
  background: #eef3ff;
  padding: 12px 14px;
}

.marketing-card-price strong {
  display: block;
  font-size: 0.94rem;
}

.marketing-card-price p {
  margin-top: 4px;
  color: var(--body);
  font-size: 0.78rem;
  line-height: 1.5;
}

.marketing-service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent-hover);
  font-weight: 850;
  text-decoration: none;
}

.marketing-service-card > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.marketing-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.marketing-checklist-panel {
  border: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 28px;
}

.marketing-checklist-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketing-checklist-heading svg {
  flex: none;
  color: var(--accent);
}

.marketing-checklist-heading h2 {
  font-size: 1.55rem;
  line-height: 1.12;
}

.marketing-checklist-panel ul,
.marketing-caveat-grid ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.marketing-checklist-panel li,
.marketing-caveat-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--body);
  line-height: 1.58;
}

.marketing-checklist-panel li svg,
.marketing-caveat-grid li svg {
  flex: none;
  margin-top: 3px;
  color: var(--accent);
}

.marketing-caveat-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 80px;
}

.marketing-caveat-grid .marketing-section-heading {
  margin-bottom: 0;
}

.marketing-caveat-grid ul {
  margin-top: 0;
}

.marketing-caveat-grid li {
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  color: var(--text);
  font-weight: 700;
}

.marketing-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.marketing-related-grid a {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 22px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.marketing-related-grid a:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.marketing-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border-strong);
  background: var(--border-strong);
}

.marketing-process-list article {
  min-height: 330px;
  background: #ffffff;
  padding: 26px 22px;
}

.marketing-process-list svg {
  margin-top: 28px;
  color: var(--accent);
}

.marketing-process-number {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.marketing-process-list h2 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.marketing-process-list p {
  margin-top: 13px;
  color: var(--body);
  font-size: 0.92rem;
  line-height: 1.65;
}

.marketing-expectation-grid,
.marketing-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.marketing-expectation-grid h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}

.marketing-expectation-grid > div:last-child,
.marketing-story-grid > div:last-child {
  display: grid;
  gap: 18px;
  color: var(--body);
  font-size: 1.03rem;
  line-height: 1.75;
}

.marketing-expectation-grid > div:last-child p:first-child {
  border-left: 5px solid var(--accent);
  background: #ffffff;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 850;
}

.marketing-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: start;
}

.marketing-area-grid .marketing-section-heading {
  margin-bottom: 0;
}

.marketing-area-card {
  border: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 30px;
  box-shadow: 18px 18px 0 #eef3ff;
}

.marketing-area-card > svg {
  color: var(--accent);
}

.marketing-area-card h2 {
  margin-top: 18px;
  font-size: 1.8rem;
}

.marketing-area-card ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--body);
  line-height: 1.55;
}

.marketing-area-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent-hover);
  font-weight: 850;
  text-decoration: none;
}

.marketing-three-grid,
.marketing-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.marketing-values-grid article {
  min-height: 240px;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 28px;
}

.marketing-values-grid svg {
  color: var(--accent);
}

.marketing-values-grid h2 {
  margin-top: 22px;
  font-size: 1.65rem;
}

.marketing-values-grid p {
  margin-top: 12px;
  color: var(--body);
  line-height: 1.65;
}

.marketing-faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.marketing-faq-list details {
  border: 1px solid var(--border-strong);
  background: #ffffff;
}

.marketing-faq-list summary {
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
}

.marketing-faq-list details[open] summary {
  border-bottom: 1px solid var(--border);
  color: var(--accent-hover);
}

.marketing-faq-list details p {
  padding: 0 24px 24px;
  color: var(--body);
  line-height: 1.7;
}

.marketing-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.marketing-contact-grid > a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  padding: 28px;
  color: var(--text);
  text-decoration: none;
}

.marketing-contact-grid > a:hover {
  border-color: var(--accent);
  background: #eef3ff;
}

.marketing-contact-grid svg {
  color: var(--accent);
}

.marketing-contact-grid span {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-contact-grid strong {
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 1.12rem;
}

.marketing-contact-note {
  max-width: 790px;
}

.marketing-contact-note h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.marketing-contact-note p {
  margin-top: 16px;
  color: var(--body);
  line-height: 1.7;
}

.marketing-contact-note .marketing-button {
  margin-top: 24px;
}

.marketing-legal-hero {
  border-bottom: 1px solid var(--border-strong);
  background: var(--bg-soft);
  padding: 12px 0 58px;
}

.marketing-legal-hero .marketing-eyebrow {
  margin-top: 36px;
}

.marketing-legal-content {
  display: grid;
  gap: 34px;
  max-width: 900px;
}

.marketing-legal-content article {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}

.marketing-legal-content h2 {
  font-size: 1.75rem;
}

.marketing-legal-content p {
  margin-top: 12px;
  color: var(--body);
  line-height: 1.75;
}

.marketing-legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.marketing-not-found {
  min-height: 60vh;
  padding: 110px 0;
}

.marketing-not-found .marketing-container {
  max-width: 900px;
}

.marketing-final-cta {
  background: var(--accent);
  color: #ffffff;
  padding: 64px 0;
}

.marketing-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.marketing-final-cta .marketing-eyebrow {
  color: #dbe7ff;
}

.marketing-final-cta h2 {
  max-width: 760px;
  margin-top: 9px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.marketing-final-cta p {
  max-width: 760px;
  margin-top: 14px;
  color: #e7efff;
  line-height: 1.65;
}

.marketing-footer {
  background: #171a20;
  color: #ffffff;
  padding: 64px 0 30px;
}

.marketing-footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: 48px;
}

.marketing-footer-brand img {
  width: 190px;
  height: auto;
  background: #ffffff;
}

.marketing-footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  color: #c9cdd5;
  font-size: 0.9rem;
  line-height: 1.7;
}

.marketing-footer-grid h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1rem;
}

.marketing-footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.marketing-footer-grid a {
  margin-bottom: 11px;
  color: #d8dbe1;
  font-size: 0.88rem;
  text-decoration: none;
}

.marketing-footer-grid a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.marketing-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.marketing-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-top: 46px;
  border-top: 1px solid #3b3f47;
  padding-top: 24px;
  color: #b9bdc6;
  font-size: 0.77rem;
  line-height: 1.6;
}

.marketing-footer-bottom p:last-child {
  color: #ffffff;
  font-weight: 800;
  text-align: right;
}

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

@media (max-width: 1120px) {
  .marketing-nav {
    display: none;
  }

  .marketing-menu-button {
    display: inline-flex;
  }

  .marketing-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 42px;
  }

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

  .marketing-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marketing-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .marketing-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .marketing-utility-inner > span {
    display: none;
  }

  .marketing-utility-inner {
    justify-content: center;
  }

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

  .marketing-page-hero {
    padding: 46px 0 56px;
  }

  .marketing-page-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-page-hero-media {
    min-height: 360px;
    box-shadow: 14px 14px 0 #eef3ff;
  }

  .marketing-page-hero-media img {
    min-height: 360px;
  }

  .marketing-page-hero--scroll-fade {
    --marketing-header-height: 64px;
    --marketing-hero-drawer-peek: 48px;
  }

  .marketing-scroll-fade-stage {
    position: relative;
    top: auto;
    height: 360px;
  }

  .marketing-scroll-fade-overlay {
    background: rgba(9, 16, 28, 0.12);
  }

  .marketing-scroll-fade-drawer-inner {
    opacity: 1;
    transform: none;
  }

  .marketing-section {
    padding: 64px 0;
  }

  .marketing-panel-grid,
  .marketing-caveat-grid,
  .marketing-expectation-grid,
  .marketing-area-grid,
  .marketing-story-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .marketing-related-grid,
  .marketing-three-grid,
  .marketing-values-grid,
  .marketing-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-process-list article {
    min-height: 280px;
  }

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

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

  .marketing-footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .marketing-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .marketing-utility-inner > div {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .marketing-utility-inner a {
    font-size: 0.72rem;
  }

  .marketing-header-inner {
    min-height: 64px;
  }

  .marketing-logo img {
    width: 150px;
    height: 50px;
  }

  .marketing-page-hero h1,
  .marketing-legal-hero h1,
  .marketing-not-found h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .marketing-page-hero-grid > div:first-child > p,
  .marketing-legal-hero > .marketing-container > p,
  .marketing-not-found p {
    font-size: 1rem;
  }

  .marketing-hero-actions,
  .marketing-hero-actions .marketing-button {
    width: 100%;
  }

  .marketing-page-hero-media,
  .marketing-page-hero-media img {
    min-height: 270px;
  }

  .marketing-scroll-fade-stage {
    height: 270px;
  }

  .marketing-scroll-fade-stage img {
    -o-object-position: 65% center;
       object-position: 65% center;
  }

  .marketing-page-hero--scroll-fade .marketing-page-hero-grid {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .marketing-service-grid,
  .marketing-process-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-service-card {
    min-height: 0;
  }

  .marketing-process-list article {
    min-height: 0;
  }

  .marketing-section-heading h2,
  .marketing-expectation-grid h2,
  .marketing-contact-note h2,
  .marketing-final-cta h2 {
    font-size: 2rem;
  }

  .marketing-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 1200;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 38px rgba(23, 26, 32, 0.24);
  }

  .marketing-footer {
    padding-bottom: 96px;
  }
}

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

  .marketing-scroll-fade-stage {
    position: relative;
    top: auto;
  }

  .marketing-scroll-fade-overlay {
    background: rgba(9, 16, 28, 0.12);
  }

  .marketing-scroll-fade-drawer {
    margin-top: 0;
    border-radius: 0;
  }

  .marketing-scroll-fade-drawer-inner {
    opacity: 1;
    transform: none;
  }
}

/* Shared public-page typography. Keep navigation and microcopy compact. */
.marketing-page-hero h1,
.marketing-legal-hero h1,
.marketing-not-found h1,
.marketing-section-heading h2,
.marketing-expectation-grid h2,
.marketing-contact-note h2,
.marketing-final-cta h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 40px;
}

.marketing-page-hero-grid > div:first-child > p,
.marketing-legal-hero > .marketing-container > p,
.marketing-not-found p,
.marketing-section-heading > p,
.marketing-service-card > div:first-child > p,
.marketing-process-list article > p,
.marketing-expectation-grid > div:last-child > p,
.marketing-story-grid > div:last-child > p,
.marketing-values-grid article > p,
.marketing-faq-list details > p,
.marketing-contact-note > p,
.marketing-legal-content article > p,
.marketing-final-cta p {
  font-size: 16px;
  line-height: 24px;
}
:root {
  /* YOUR NEW LIGHT MODE COLORS - PRESERVED EXACTLY */
  --bg: #fff;
  --bg-soft: #f4f4f4;
  --surface: #fff;
  --surface-raised: #f8f8f8;
  --text: #171a20;
  --body: #393c41;
  --muted: #6b7280;
  --border: #393c412e;
  --border-strong: #393c4147;
  --accent: #3e6ae1;
  --accent-hover: #3155b7;
  --success: #22c55e;
  --warning: #b45309;
  --site-header-height: 64px;
  --hero-drawer-peek: 64px;
}

/* 1. BRINGING BACK THE ORIGINAL BOX SIZING & BORDERS */
*,
:before,
:after {
  box-sizing: border-box;
  border: 0 solid var(--border);
}

/* 2. MEDIA SAFETY NET (Prevents horizontal mobile scroll) */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* 3. BRINGING BACK THE ORIGINAL LINE-HEIGHT (Crucial for spacing!) */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* 4. BRINGING BACK THE ORIGINAL FONT SIZING AND ALIGNMENT */
body {
  background: var(--bg);
  color: var(--text);
  min-width: 320px;
  margin: 0;
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 5. CRITICAL FIX: The original site stripped ALL default margins from text elements.
   Without this, the browser adds random padding making sections look taller/wider */
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
  background: var(--bg);
}

.site-container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: #fff;
  filter: none;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  height: var(--site-header-height);
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-atl {
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 36px;
}

.brand-mark-logo {
  flex: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 168px;
  height: 56px;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.desktop-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 16px;
}

.mobile-menu a {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-soft);
  padding: 14px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(62, 106, 225, 0.22);
}

.btn-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.btn-secondary {
  border-color: var(--accent);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(62, 106, 225, 0.08);
}

.hero-experience {
  position: relative;
  --hero-reveal-progress: 0;
  background: var(--surface);
}

.hero-media-stage {
  position: sticky;
  top: var(--site-header-height, 64px);
  z-index: 0;
  height: calc(
    100vh - var(--site-header-height, 64px) - var(--hero-drawer-peek, 64px)
  );
  overflow: hidden;
  background: #111827;
}

@supports (height: 100svh) {
  .hero-media-stage {
    height: calc(
      100svh - var(--site-header-height, 64px) - var(--hero-drawer-peek, 64px)
    );
  }
}

.hero-media-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(9, 16, 28, 0) 45%,
      rgba(9, 16, 28, calc(var(--hero-reveal-progress, 0) * 0.1)) 100%
    ),
    rgba(9, 16, 28, calc(var(--hero-reveal-progress, 0) * 0.58));
}

.hero-content-drawer {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--hero-drawer-peek, 64px));
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.98);
  padding-top: 18px;
  box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.14);
}

.hero-drawer-handle {
  width: 40px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(107, 114, 128, 0.5);
}

.hero-content-drawer-inner {
  opacity: calc(0.94 + (var(--hero-reveal-progress, 0) * 0.06));
  transform: translateY(calc((1 - var(--hero-reveal-progress, 0)) * 24px));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.86fr);
  gap: 28px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 768px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  max-width: 768px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 34px;
}

.hero-copy h1 span {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 7px;
}

.hero-copy p {
  max-width: 672px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 18px;
  line-height: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-location {
  display: flex;
  max-width: 640px;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--body);
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-location svg {
  flex: none;
  color: var(--accent);
}

.quote-panel {
  width: 100%;
  max-width: 600px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.86);
  padding: 30px;
  box-shadow: 0 22px 70px rgba(23, 26, 32, 0.14);
  backdrop-filter: blur(18px);
  margin-left: auto;
}

.quote-panel-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.quote-recommendation-icon {
  flex: none;
  color: var(--accent);
}

.quote-panel-header-copy {
  min-width: 0;
}

.quote-panel-title-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: baseline;
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
}

.quote-panel-eyebrow,
.quote-optional,
.quote-section-label {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.quote-panel-eyebrow,
.quote-section-label {
  font-weight: 800;
}

.quote-panel-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  line-height: 20px;
}

.quote-panel-header p {
  margin: 4px 0 0;
  color: var(--body);
  font-size: 13px;
  line-height: 19px;
}

.quote-panel-section {
  padding: 12px 0;
}

.quote-panel-section:last-child {
  padding-bottom: 0;
}

.quote-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.quote-optional {
  font-size: 12px;
}

.quote-value {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
}

.quote-price-input,
.quote-select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  outline: none;
}

.quote-price-input {
  min-height: 36px;
  margin-top: 2px;
  border-bottom: 1px solid rgba(57, 60, 65, 0.22);
  color: var(--accent);
  font-size: 24px;
  line-height: 30px;
}

.quote-price-input::-moz-placeholder {
  color: rgba(62, 106, 225, 0.62);
}

.quote-price-input::placeholder {
  color: rgba(62, 106, 225, 0.62);
}

.quote-select {
  min-height: 46px;
  border-bottom: 1px solid rgba(57, 60, 65, 0.22);
  padding: 6px 0;
  font-size: 17px;
  line-height: 24px;
}

.quote-panel-section--recommendation {
  display: block;
}

.quote-recommendation-content {
  min-width: 0;
  width: 100%;
}

.quote-recommendation-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-detail {
  display: block;
  max-width: 720px;
  margin-top: 8px;
  color: var(--body);
  font-size: 12px;
  line-height: 18px;
}

.quote-card-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border: 1px solid var(--accent);
  background: var(--accent);
  padding: 12px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  line-height: 20px;
  text-decoration: none;
}

.quote-card-cta:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.page-section {
  border-bottom: 1px solid var(--border-strong);
  padding: 64px 0;
  background: var(--surface);
}

.section-raised,
.quote-section {
  background: var(--bg-soft);
}

.section-header {
  max-width: none;
  margin: 0 0 32px;
  text-align: center;
}

.section-header h2,
.offer-copy h2,
.split-layout h2,
.form-intro h2 {
  margin: 0;
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 40px;
}

.section-header h2::after,
.offer-copy h2::after,
.split-layout h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--accent);
}

.offer-copy h2::after,
.split-layout h2::after {
  margin-right: 0;
  margin-left: 0;
}

.section-header p,
.offer-copy p,
.form-intro p {
  max-width: 672px;
  margin: 12px 0 0;
  color: var(--body);
  font-size: 18px;
  line-height: 28px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.service-path-card {
  display: flex;
  min-height: 274px;
  flex-direction: column;
  border: 1px solid var(--border-strong);
  background: var(--surface-raised);
  padding: 20px;
  border-radius: 0;
}

.service-path-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 26px;
}

.service-path-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  line-height: 22px;
}

.service-path-card p {
  margin: 12px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 23px;
}

.service-path-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-path-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--body);
  font-size: 13px;
  line-height: 20px;
}

.service-path-card li svg {
  flex: none;
  margin-top: 2px;
  color: var(--accent);
}

.path-card-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  background: transparent;
  padding: 22px 0 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
  line-height: 20px;
  text-align: left;
  text-decoration: none;
}

.path-card-cta:hover {
  color: var(--accent-hover);
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 202px;
  border: 1px solid var(--border-strong);
  background: var(--surface-raised);
  padding: 24px;
  border-radius: 0;
  text-align: center;
}

.info-card svg {
  display: block;
  flex: none;
  margin: 0 auto;
  color: var(--accent);
}

.info-card h3 {
  margin: 16px 0 0;
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 32px;
}

.info-card p {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 24px;
}

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

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

.launch-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  border: 1px solid rgba(62, 106, 225, 0.55);
  background: rgba(62, 106, 225, 0.06);
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 16px 42px rgba(62, 106, 225, 0.16);
}

.launch-callout svg {
  flex: none;
  margin-top: 2px;
  color: var(--accent);
}

.launch-callout p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 28px;
}

.launch-callout strong {
  color: var(--accent);
}

.detail-rail {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
}

.detail-rail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  opacity: 0.88;
  filter: saturate(1) brightness(1.03) contrast(1);
}

.detail-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.34) 42%, rgba(255, 255, 255, 0.02) 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--body);
  text-align: center;
}

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 68px;
  left: calc(50% + 54px);
  width: calc(100% - 108px);
  height: 2px;
  background: var(--accent);
}

.step-number {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 36px;
}

.timeline-step svg {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  color: var(--text);
  flex: none;
}

.timeline-step h3 {
  margin: 16px 0 0;
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
}

.timeline-step p {
  max-width: 208px;
  margin: 12px auto 0;
  font-size: 14px;
  line-height: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  margin-top: 32px;
}

.service-card {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.service-card:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.service-card svg {
  flex: none;
  color: var(--accent);
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 32px;
}

.check-list,
.pricing-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.check-item,
.pricing-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--body);
  font-size: 18px;
  line-height: 28px;
}

.check-item svg {
  flex: none;
  margin-top: 3px;
  color: var(--accent);
}

.pricing-row svg {
  flex: none;
  margin-top: 3px;
  color: var(--muted);
}

.approval-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  border: 1px solid rgba(62, 106, 225, 0.55);
  background: rgba(62, 106, 225, 0.06);
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 16px 42px rgba(62, 106, 225, 0.14);
}

.approval-callout svg {
  flex: none;
  color: var(--accent);
}

.approval-callout p {
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 28px;
}

.approval-callout span {
  display: block;
  margin-top: 4px;
  color: var(--body);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.form-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.41fr) minmax(0, 0.59fr);
  gap: 32px;
  align-items: start;
}

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

.form-intro h2 {
  font-size: 36px;
  line-height: 40px;
}

.form-trust-stack {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  padding: 13px 14px;
  color: var(--body);
  font-weight: 800;
  text-decoration: none;
}

.trust-row svg {
  flex: none;
  color: var(--accent);
}

.form-panel {
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 22px 70px rgba(23, 26, 32, 0.14);
}

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

.form-stack {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

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

.form-field > span:first-child {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-helper {
  color: var(--body);
  font-size: 12px;
  line-height: 18px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(57, 60, 65, 0.24);
  border-radius: 0;
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(57, 60, 65, 0.42);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(62, 106, 225, 0.12);
  outline: 0;
}

.file-field {
  position: relative;
}

.file-field input[type="file"] {
  position: absolute;
  inset: 24px 0 auto;
  height: 48px;
  cursor: pointer;
  opacity: 0;
}

.file-shell {
  display: flex;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(57, 60, 65, 0.24);
  border-radius: 0;
  background: #ffffff;
  color: var(--body);
  font-size: 14px;
  line-height: 20px;
}

.file-shell span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  padding: 0 16px;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.file-shell span:last-child {
  min-width: 0;
  align-self: center;
  overflow: hidden;
  padding: 0 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inspection-fee-disclosure {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(62, 106, 225, 0.24);
  background: rgba(62, 106, 225, 0.08);
  padding: 14px;
}

.inspection-fee-disclosure p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.consent-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  color: var(--body);
  font-size: 12px;
  line-height: 20px;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.field-error {
  margin: 0;
  color: var(--warning);
  font-size: 0.82rem;
  font-weight: 800;
}

.success-state {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(34, 197, 94, 0.42);
  border-radius: 0;
  background: rgba(34, 197, 94, 0.1);
  padding: 14px;
  color: #166534;
  font-weight: 800;
  line-height: 1.45;
}

.success-state svg {
  flex: none;
  color: var(--success);
}

.form-submit {
  width: 100%;
}

.privacy-note {
  margin: 0;
  color: var(--body);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.faq-layout {
  display: block;
  max-width: 896px;
}

.faq-controls {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 14px;
}

.faq-toggle-all {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  padding: 10px 16px;
  color: var(--brand);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 18px;
}

.faq-toggle-all:hover,
.faq-toggle-all:focus-visible {
  border-color: rgba(62, 106, 225, 0.4);
  background: rgba(62, 106, 225, 0.06);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

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

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--body);
  font-size: 14px;
  line-height: 22px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 34px 0 38px;
}

.footer-shell {
  color: var(--body);
  font-size: 14px;
  line-height: 20px;
}

.footer-shell a {
  text-decoration: none;
}

.footer-shell a:hover {
  color: var(--text);
}

.site-footer .brand-logo {
  width: 132px;
  height: 44px;
  max-width: none;
}

.footer-top {
  display: flex;
  max-width: 430px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.footer-contact {
  display: flex;
  width: 100%;
  max-width: 430px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-weight: 400;
}

.footer-contact strong {
  color: var(--text);
  font-weight: 850;
}

.footer-contact-link,
.footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-link svg,
.footer-hours svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: currentColor;
}

.footer-facebook-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  margin-top: 2px;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  color: var(--text);
  font-weight: 800;
}

.footer-facebook-link img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-service-area {
  width: 100%;
  max-width: 430px;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  box-shadow: none;
}

.footer-service-intro {
  margin: 0 0 10px;
}

.footer-service-row {
  display: flex;
  max-width: 430px;
  align-items: flex-start;
  gap: 8px;
}

.footer-service-row svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: currentColor;
}

.footer-service-area-text {
  display: block;
  max-width: 395px;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-content-drawer-inner {
    opacity: 1;
    transform: none;
  }

  .hero-media-overlay {
    background: rgba(9, 16, 28, calc(var(--hero-reveal-progress, 0) * 0.24));
    transition: none;
  }
}

.sms-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.sms-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 26, 32, 0.5);
  cursor: default;
}

.sms-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(23, 26, 32, 0.28);
}

.sms-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.sms-modal-panel h2 {
  margin: 0;
  padding-right: 42px;
  color: var(--text);
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 36px;
}

.sms-modal-phone {
  margin: 8px 0 18px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 850;
  line-height: 28px;
}

.sms-modal-label {
  display: block;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sms-modal-message {
  width: 100%;
  min-height: 132px;
  margin-top: 8px;
  border: 1px solid rgba(57, 60, 65, 0.24);
  background: var(--surface);
  padding: 12px;
  color: var(--body);
  font-size: 15px;
  line-height: 24px;
  resize: vertical;
}

.sms-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.sms-modal-status {
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 20px;
}

@media (max-width: 1023px) {
  .site-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-layout,
  .offer-grid,
  .split-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 34px;
  }

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

  .timeline-step:not(:last-child)::after {
    display: none;
  }

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

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

  .service-card:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--border);
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .form-intro {
    position: static;
  }

  .detail-rail {
    height: 320px;
    aspect-ratio: auto;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 84px;
  }

  .site-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-inner {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    align-items: center;
    gap: 12px;
  }

  .site-header {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    background: #fff;
    transform: none;
    filter: none;
    backdrop-filter: none;
  }

  .brand-atl {
    font-size: 30px;
    line-height: 30px;
  }

  .brand-logo {
    display: block;
    width: 164px;
    height: auto;
    max-height: 48px;
    max-width: none;
    -o-object-fit: contain;
       object-fit: contain;
    flex: 0 0 auto;
  }

  .legacy-ios .hero-media-stage {
    position: relative;
    top: auto;
  }

  .legacy-ios .hero-media-overlay {
    opacity: 0;
  }

  .legacy-ios .hero-content-drawer-inner {
    opacity: 1;
    transform: none;
  }

  .header-cta {
    display: none;
  }

  :root {
    --hero-drawer-peek: 48px;
  }

  .hero-media-image {
    -o-object-position: 60% center;
       object-position: 60% center;
  }

  .hero-layout {
    gap: 28px;
    padding-top: 56px;
    padding-bottom: 36px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 34px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 28px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-location {
    font-size: 0.82rem;
  }

  .hero-layout > .quote-panel {
    display: block;
    max-width: none;
    margin-left: 0;
  }

  .quote-panel {
    padding: 20px;
  }

  .quote-panel-header {
    padding-bottom: 12px;
  }

  .quote-panel-header h2 {
    font-size: 14px;
    line-height: 20px;
  }

  .quote-panel-section {
    padding: 12px 0;
  }

  .quote-price-input {
    min-height: 36px;
    font-size: 24px;
    line-height: 30px;
  }

  .quote-select {
    font-size: 17px;
    line-height: 24px;
  }

  .quote-detail {
    font-size: 12px;
    line-height: 18px;
  }

  .quote-card-cta,
  .sms-modal-actions .btn {
    width: 100%;
  }

  .sms-modal {
    align-items: end;
    padding: 12px;
  }

  .sms-modal-panel {
    max-height: calc(100vh - 24px);
    overflow: auto;
    padding: 20px;
  }

  .page-section {
    padding: 48px 0;
  }

  .section-header {
    margin: 0 0 32px;
    text-align: left;
  }

  .section-header h2::after {
    margin-right: 0;
    margin-left: 0;
  }

  .section-header h2,
  .offer-copy h2,
  .split-layout h2 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .form-intro h2 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .problem-grid,
  .service-path-grid,
  .timeline,
  .service-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
    text-align: center;
  }

  .service-path-card {
    min-height: auto;
  }

  .detail-rail {
    height: 288px;
  }

  .service-card,
  .service-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .form-panel {
    padding: 20px;
  }

  .file-shell {
    flex-direction: row;
  }

  .file-shell span:first-child,
  .file-shell span:last-child {
    width: auto;
    min-height: 0;
  }

  .faq-controls {
    justify-content: flex-start;
  }

  .faq-toggle-all {
    width: 100%;
  }

  .footer-top,
  .footer-brand,
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    gap: 18px;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    padding: 12px;
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta .btn {
    width: min(100%, 440px);
  }
}

#problem .section-header {
  text-align: center;
}

#problem .section-header h2::after {
  margin-right: auto;
  margin-left: auto;
}

#problem .section-header p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.referral-banner {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.referral-banner svg {
  flex: none;
}

.referral-banner a {
  color: inherit;
  font-weight: 900;
}

.referral-banner--loading {
  background: #eef2ff;
  color: #3557d6;
}

.referral-banner--valid {
  background: #e8f7f0;
  color: #087a50;
}

.referral-banner--warning {
  background: #fff4df;
  color: #8a4b00;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.captcha-field {
  display: grid;
  gap: 8px;
}

.captcha-label {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submission-disclaimer,
.attachment-warning {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--body);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.attachment-warning {
  border-color: rgba(245, 165, 36, 0.55);
  background: #fff4df;
  color: #8a4b00;
}

.success-state span,
.success-state small {
  display: block;
}

.success-state small {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
}

.success-state a {
  color: inherit;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.print-status {
  width: min(100% - 32px, 720px);
  margin: 80px auto;
  border: 1px solid var(--border);
  background: #fff;
  padding: 32px;
  color: var(--text);
  text-align: center;
}

.print-status h1 {
  margin-bottom: 12px;
}

.print-page {
  min-height: 100vh;
  background: #f5f6f8;
  padding: 24px;
}

.print-toolbar {
  display: flex;
  width: min(100%, 900px);
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 24px;
  border: 1px solid #d9dde5;
  background: #fff;
  padding: 16px;
}

.print-toolbar label {
  display: grid;
  gap: 6px;
  color: #171a22;
  font-size: 13px;
  font-weight: 800;
}

.print-toolbar select,
.print-toolbar button {
  min-height: 44px;
  border: 1px solid #d9dde5;
  background: #fff;
  padding: 0 12px;
}

.print-toolbar button {
  border-color: #3557d6;
  background: #3557d6;
  color: #fff;
  font-weight: 800;
}

.print-sheet {
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.print-sheet--letter {
  grid-template-columns: repeat(2, 3.5in);
  gap: 0.2in;
  width: 8.5in;
  min-height: 11in;
  align-content: center;
  padding: 0.25in;
  background: #fff;
}

.referral-card {
  display: grid;
  grid-template-columns: 1fr 1.35in;
  grid-template-rows: auto 1fr;
  width: 3.5in;
  height: 2in;
  overflow: hidden;
  border: 1px solid #171a22;
  background: #fff;
  padding: 0.14in;
  color: #171a22;
}

.print-sheet--counter .referral-card {
  grid-template-columns: 1fr 2in;
  width: 4in;
  height: 6in;
  padding: 0.35in;
}

.referral-card-logo {
  width: 1.75in;
  max-height: 0.48in;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}

.referral-card-copy {
  align-self: center;
  padding-right: 0.12in;
}

.referral-card-copy h1 {
  margin: 0 0 0.05in;
  font-size: 12px;
  line-height: 1.08;
}

.referral-card-copy p,
.referral-card-copy strong,
.referral-card-copy small,
.referral-card-source {
  display: block;
  margin: 0 0 0.035in;
  font-size: 7px;
  line-height: 1.2;
}

.referral-card-copy strong {
  color: #3557d6;
  font-size: 8px;
}

.referral-card-source {
  margin-top: 0.06in;
  color: #4b5563;
  font-weight: 800;
}

.referral-card-qr {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.04in;
}

.referral-card-qr img {
  width: 1.18in;
  height: 1.18in;
}

.referral-card-qr b {
  font-size: 8px;
  letter-spacing: 0.08em;
}

.print-sheet--counter .referral-card-logo {
  width: 2.4in;
  max-height: 0.7in;
}

.print-sheet--counter .referral-card-copy h1 {
  margin-bottom: 0.2in;
  font-size: 25px;
}

.print-sheet--counter .referral-card-copy p,
.print-sheet--counter .referral-card-copy strong,
.print-sheet--counter .referral-card-copy small,
.print-sheet--counter .referral-card-source {
  margin-bottom: 0.12in;
  font-size: 13px;
  line-height: 1.35;
}

.print-sheet--counter .referral-card-copy strong {
  font-size: 16px;
}

.print-sheet--counter .referral-card-qr img {
  width: 1.8in;
  height: 1.8in;
}

.print-sheet--counter .referral-card-qr b {
  font-size: 13px;
}

@media (max-width: 767px) {
  .referral-banner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 10px 16px;
    text-align: left;
  }

  .print-page {
    overflow-x: auto;
    padding: 12px;
  }

  .print-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0.25in;
  }

  body {
    min-width: 0;
    padding: 0 !important;
    background: #fff;
  }

  .print-page {
    min-height: 0;
    padding: 0;
    background: #fff;
  }

  .print-toolbar {
    display: none;
  }

  .print-sheet {
    margin: 0 auto;
  }

  .referral-card {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* Shared public-page typography. Keep UI labels and helper text compact. */
.hero-copy h1,
.section-header h2,
.offer-copy h2,
.split-layout h2,
.form-intro h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 40px;
}

.hero-copy > p,
.section-header > p,
.offer-copy > p,
.form-intro > p,
.service-path-card > p,
.launch-callout p,
.timeline-step > p,
.info-card > p,
.faq-item > p {
  font-size: 16px;
  line-height: 24px;
}
