:root {
  --charcoal: #1A1A1A;
  --ink: #242424;
  --muted: #666666;
  --line: #E7E2DC;
  --off-white: #F7F7F7;
  --paper: #FFFFFF;
  --blue: #227A9C;
  --blue-dark: #185D78;
  --pink: #FF2D8A;
  --shadow: 0 24px 80px rgba(26, 26, 26, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
  font-weight: 850;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(247, 247, 247, 0.92);
  backdrop-filter: blur(16px);
  max-width: 100%;
}

.logo {
  color: var(--charcoal);
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.logo span {
  color: var(--pink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  padding: 0.35rem 0;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--charcoal);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 6px 6px 0 var(--pink);
}

.button.secondary {
  color: var(--charcoal);
  background: transparent;
}

.nav-cta:hover,
.button.primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--pink);
}

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

.hero,
.page-hero,
.section,
.site-footer {
  padding-right: clamp(1rem, 4vw, 3rem);
  padding-left: clamp(1rem, 4vw, 3rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 4rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 45, 138, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, var(--off-white) 48%, rgba(34, 122, 156, 0.14) 100%);
}

.hero-text,
.page-hero p,
.section-heading p,
.split p,
.final-cta p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel {
  position: relative;
  min-height: 540px;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(26, 26, 26, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 3px solid var(--blue);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-panel::after {
  content: "DR";
  position: absolute;
  right: 7%;
  bottom: 4%;
  color: rgba(26, 26, 26, 0.05);
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
}

.signal-card {
  position: absolute;
  width: min(82%, 360px);
  padding: 1rem;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.12);
}

.signal-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.signal-card.top {
  top: 8%;
  left: 8%;
}

.signal-card.middle {
  top: 39%;
  right: 6%;
}

.signal-card.bottom {
  bottom: 9%;
  left: 10%;
}

.signal-dot {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--charcoal);
}

.signal-dot.pink {
  background: var(--pink);
}

.signal-dot.blue {
  background: var(--blue);
}

.section,
.page-hero {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(34, 122, 156, 0.13), transparent 44%),
    #fff;
}

.page-hero h1 {
  max-width: 1040px;
}

.audit-hero {
  background:
    linear-gradient(135deg, rgba(255, 45, 138, 0.12), transparent 40%),
    #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 940px;
  margin-bottom: 2rem;
}

.card-grid,
.offer-grid,
.service-detail-grid,
.step-grid,
.definitions,
.service-lanes {
  display: grid;
  gap: 1rem;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three,
.offer-grid,
.step-grid,
.definitions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 1.5rem;
  align-items: start;
  background: #fff;
}

.card,
.detail-card,
.offer-card,
.lane-card,
.definitions article,
.step-grid article,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card,
.detail-card,
.lane-card,
.definitions article,
.step-grid article {
  padding: 1.3rem;
}

.card p,
.detail-card p,
.lane-card p,
.definitions p,
.step-grid p,
.offer-card p {
  color: var(--muted);
}

.lane-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lane-card .eyebrow {
  margin-bottom: 0.65rem;
}

.lane-card ul {
  display: grid;
  gap: 0.45rem;
  margin: auto 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-weight: 800;
}

.range-section {
  background: #fff;
}

.compact-cards .card h3 {
  font-size: 1.1rem;
}

.compact-cards .card p {
  font-size: 0.98rem;
}

.bs-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: end;
  color: #fff;
  background: var(--charcoal);
}

.bs-callout h2 {
  max-width: 900px;
  color: #fff;
}

.bs-callout p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.bs-callout .button.primary {
  white-space: nowrap;
  color: var(--charcoal);
  background: #fff;
}

.dark {
  color: #fff;
  background: var(--charcoal);
}

.dark h2,
.dark h3 {
  color: #fff;
}

.dark .eyebrow {
  color: #7ed4f0;
}

.dark p,
.dark li {
  color: rgba(255, 255, 255, 0.78);
}

.dark .card h3,
.dark .detail-card h3,
.dark .lane-card h3,
.dark .step-grid article h3 {
  color: var(--charcoal);
}

.dark .card p,
.dark .detail-card p,
.dark .lane-card p,
.dark .step-grid article p,
.dark .lane-card li {
  color: var(--muted);
}

.offer-card {
  padding: 1.5rem;
}

.dark .offer-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.offer-card.featured {
  border-color: var(--pink);
  box-shadow: 10px 10px 0 var(--pink);
}

.price {
  color: var(--blue);
  font-weight: 900;
}

.offer-card ul,
.check-list,
.list-columns ul {
  padding-left: 1.2rem;
}

.offer-card li,
.check-list li,
.list-columns li {
  margin-bottom: 0.55rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--pink);
  font-weight: 900;
}

.text-link:hover {
  color: var(--blue);
}

.dark .text-link:hover {
  color: #fff;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-grid span {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.work-list {
  background: #fff;
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.section-button {
  margin-top: 1.75rem;
}

.article-hero {
  border-bottom: 1px solid var(--line);
}

.article-content {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.article-content p,
.article-content li {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.article-lede {
  color: var(--charcoal);
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
  font-weight: 850;
}

.answer-box,
.article-toc,
.article-faq {
  margin: 0 0 2rem;
  padding: 1.25rem;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  background: #fff;
}

.answer-box {
  box-shadow: 8px 8px 0 var(--pink);
}

.article-toc {
  border-color: var(--line);
  box-shadow: 8px 8px 0 rgba(34, 122, 156, 0.14);
}

.answer-box p:last-child,
.article-toc p:last-child,
.article-faq p:last-child {
  margin-bottom: 0;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ink);
  font-weight: 800;
}

.article-toc li {
  margin-bottom: 0.55rem;
}

.article-toc a {
  color: var(--charcoal);
}

.article-toc a:hover {
  color: var(--pink);
}

.article-faq {
  margin-top: 3rem;
}

.article-faq article {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.article-faq h3 {
  margin-bottom: 0.45rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.article-content ul {
  margin: 1.2rem 0 1.6rem;
  padding-left: 1.4rem;
  font-weight: 750;
}

.article-callout {
  margin: 2.5rem 0;
  padding: 1.4rem;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 8px 8px 0 var(--pink);
}

.article-callout h3 {
  margin-bottom: 0.5rem;
}

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

.tagline {
  color: var(--pink);
  font-weight: 900;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(34, 122, 156, 0.16), transparent 36%),
    #fff;
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.final-cta .button {
  margin-top: 1rem;
}

.process {
  background: #fff;
}

.step-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--pink);
  font-weight: 900;
}

.check-panel {
  padding: 1.4rem;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 8px 8px 0 var(--blue);
}

.paid-audit-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: var(--charcoal);
}

.paid-audit-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.paid-audit-card h2 {
  color: #fff;
}

.paid-audit-card .eyebrow {
  color: #7ed4f0;
}

.guarantee-card {
  border-color: var(--pink);
  box-shadow: 8px 8px 0 var(--pink);
}

.checkout-card .button {
  margin-top: 0.9rem;
  margin-bottom: 1rem;
}

.checkout-card .small-note {
  margin-top: 0.35rem;
}

.dark .check-panel {
  margin-top: 2rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 8px 8px 0 var(--blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form,
.contact-card {
  padding: 1.5rem;
  min-width: 0;
}

.contact-form,
.mini-tool-panel,
.preview-card {
  display: grid;
  gap: 0.7rem;
}

.mini-tool-panel,
.preview-card {
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.preview-card {
  position: sticky;
  top: 104px;
}

.output-box {
  display: grid;
  gap: 0.65rem;
  min-height: 280px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(34, 122, 156, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(34, 122, 156, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

.output-box h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.output-box p {
  margin: 0;
  color: var(--muted);
}

label {
  color: var(--charcoal);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc5bd;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(34, 122, 156, 0.22);
  border-color: var(--blue);
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  background: var(--charcoal);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-contact,
.site-footer .footer-contact a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer .footer-contact a {
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.site-footer .footer-contact a:hover {
  color: #fff;
}

.site-footer .logo {
  color: #fff;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 0.25rem;
  }

  .hero,
  .split,
  .contact-layout,
  .tool-layout,
  .bs-callout,
  .paid-audit-strip {
    grid-template-columns: 1fr;
  }

  .preview-card {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 460px;
  }

  .card-grid.four,
  .card-grid.three,
  .offer-grid,
  .service-detail-grid,
  .step-grid,
  .definitions,
  .service-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-cta {
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
  }

  .nav {
    min-width: 0;
    max-width: 100%;
    gap: 0.85rem;
  }

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 3.25rem;
    padding-right: 1.25rem;
    padding-bottom: 3.25rem;
    padding-left: 1.25rem;
  }

  .page-hero h1,
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 11vw, 3.25rem);
    line-height: 1.08;
  }

  .hero-text,
  .page-hero p,
  .section-heading p,
  .split p,
  .final-cta p {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-panel {
    min-height: 520px;
  }

  .signal-card {
    width: 88%;
  }

  .card-grid.four,
  .card-grid.three,
  .offer-grid,
  .service-detail-grid,
  .step-grid,
  .definitions,
  .service-lanes,
  .list-columns {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .button {
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
