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

:root {
  --black: #000000;
  --black-2: #111111;
  --ink: #000000;
  --muted: #666666;
  --muted-dark: #979797;
  --line: rgba(0, 0, 0, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --paper: #eeeeee;
  --white: #ffffff;
  --gold: #0088cc;
  --accent: var(--gold);
  --accent-dark: #0088cc;
  --accent-soft: rgba(0, 136, 204, 0.06);
  --logo-gold: var(--gold);
  --radius: 14px;
  --shadow: 0 22px 70px rgba(7, 12, 22, 0.13);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 44px), 1210px);
  margin-inline: auto;
}

.top-bar {
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 6px 18px;
}

.site-nav,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.93);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav,
.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img,
.nav-logo img {
  width: 32px;
  height: 32px;
}

.brand strong,
.nav-logo strong {
  color: var(--logo-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--white) !important;
}

.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.11);
}

.nav-menu-toggle:active {
  transform: scale(0.97);
}

.nav-menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

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

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

.nav-phone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 136, 204, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.dark-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.06), transparent 26rem),
    radial-gradient(circle at 24% 8%, rgba(255, 255, 255, 0.035), transparent 22rem),
    var(--black);
  color: var(--white);
}

.hero {
  min-height: 670px;
  display: grid;
  align-items: center;
  padding: 94px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(44px, 8vw, 118px);
  align-items: center;
}

.hero-grid > *,
.split > *,
.feature-layout > *,
.why-grid > *,
.faq-layout > *,
.cta-grid > * {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.kicker.gold {
  color: var(--gold);
}

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

.hero h1 {
  max-width: 740px;
  color: var(--white);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-wrap: balance;
}

.accent-text {
  color: var(--accent);
}

.hero-copy {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.72;
}

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

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(82px, 9vw, 140px) 0;
}

.section.light {
  background: var(--paper);
}

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

.section.dark {
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 136, 204, 0.1), transparent 28rem),
    var(--black);
  color: var(--white);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section h2 {
  color: inherit;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  text-wrap: balance;
}

.section-subtitle {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.section.dark .section-subtitle,
.section.dark .split-copy,
.section.dark .micro-copy {
  color: var(--muted-dark);
}

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

.problem-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 16px;
  background: var(--white);
  padding: 34px;
  box-shadow: 0 16px 52px rgba(7, 12, 22, 0.06);
}

.problem-card.dark-card {
  background: #000000;
  color: var(--white);
}

.problem-card strong {
  display: block;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.problem-card h3 {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.problem-card p {
  margin-top: 14px;
  color: #666666;
  font-size: 13px;
  line-height: 1.65;
}

.problem-card.dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 96px);
}

.article-col h3 {
  font-size: clamp(20px, 2.2vw, 25px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.article-col p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
}

.split-copy {
  max-width: 450px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  margin-top: 20px;
}

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

.check-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.check-item::before {
  content: "✓";
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

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

.process-step {
  min-height: 190px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.055);
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 900;
}

.process-step:last-child .step-num {
  border-color: rgba(0, 136, 204, 0.6);
  color: var(--accent);
}

.process-step small {
  display: block;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 8px 0 12px;
  font-size: 17px;
  line-height: 1.1;
}

.process-step ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  list-style: none;
}

.process-step li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 5px;
  margin-right: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  transform: translateY(-1px) rotate(38deg);
}

.seo-process-section {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #eeeeee;
}

.seo-process-inner,
.seo-included-inner {
  max-width: 1020px;
}

.process-head {
  max-width: 760px;
  margin: 0 0 30px;
  text-align: left;
}

.process-head .eyebrow,
.seo-included-head .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-head h2,
.seo-included-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.045em;
}

.seo-process-list {
  display: grid;
  max-width: 980px;
  border-top: 1px solid rgba(83, 97, 113, 0.18);
}

.seo-process-step {
  display: grid;
  grid-template-columns: 56px minmax(180px, 240px) minmax(0, 1fr);
  gap: 26px;
  padding: 28px 0 30px;
  border-bottom: 1px solid rgba(83, 97, 113, 0.18);
}

.seo-step-index {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.seo-step-heading {
  min-width: 0;
}

.seo-step-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.seo-step-heading span {
  display: block;
  margin-top: 9px;
  color: #979797;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.seo-step-copy {
  min-width: 0;
}

.seo-process-step p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.78;
}

.seo-process-step .seo-step-lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.seo-included-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: clamp(58px, 6vw, 84px);
  padding-bottom: clamp(68px, 7vw, 100px);
}

.seo-included-head {
  margin-bottom: 42px;
}

.seo-included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 58px;
  max-width: 1060px;
}

.seo-included-item {
  position: relative;
  padding-left: 24px;
  color: #666666;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.seo-included-item::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 1px;
  width: 9px;
  height: 6px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(38deg);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

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

.feature-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(7, 12, 22, 0.06);
}

.feature-card h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.feature-card p,
.micro-copy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.industry {
  padding: 20px 10px;
  border-top: 1px solid rgba(17, 19, 22, 0.08);
}

.industry-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: rgba(0, 136, 204, 0.08);
  color: var(--gold);
  font-weight: 900;
}

.industry strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.025em;
}

.industry span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
}

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

.why-item {
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line-dark);
}

.why-item:nth-child(n + 3) {
  padding-top: 28px;
}

.why-item small {
  color: var(--accent);
  font-weight: 900;
}

.why-item h3 {
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.why-item p {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.65;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-top: 74px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--black);
}

.founder-blank {
  min-height: 330px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #191919;
}

.founder-copy {
  padding: clamp(34px, 6vw, 72px);
}

.quote-mark {
  color: var(--accent);
  font-size: 54px;
  line-height: 1;
}

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

.review-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.055);
  padding: 28px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.reviewer {
  display: block;
  margin-top: 26px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(42px, 7vw, 112px);
}

.faq-list {
  border-top: 1px solid rgba(17, 19, 22, 0.12);
}

.faq-list details {
  border-bottom: 1px solid rgba(17, 19, 22, 0.12);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 900;
}

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

.faq-list summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 19, 22, 0.05);
}

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

.faq-list p {
  max-width: 760px;
  padding: 0 54px 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
}

.next-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  list-style: none;
}

.next-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
}

.next-list li::before {
  content: "-> ";
  color: var(--gold);
}

.contact-panel {
  border-radius: 16px;
  background: #eeeeee;
  color: var(--ink);
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field label {
  font-size: 11px;
  font-weight: 900;
  color: #666666;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 22, 0.09);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  padding: 13px 14px;
}

.contact-field textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #979797;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.consent-field input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.consent-field label,
.form-note {
  color: #666e79;
  font-size: 11px;
  line-height: 1.55;
}

.contact-submit {
  width: 100%;
  min-height: 50px;
}

.contact-status {
  min-height: 18px;
  color: #666666;
  font-size: 12px;
}

.contact-status.success {
  color: #0088cc;
}

.contact-status.error {
  color: #666666;
}

.contact-status.pending {
  color: var(--accent-dark);
}

.area-band {
  text-align: center;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.area-chip {
  padding: 11px 20px;
  border: 1px solid rgba(17, 19, 22, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  background: #161616;
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(120px, 1fr));
  gap: 34px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
  text-decoration: none;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

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

@media (max-width: 1080px) {
  .nav-links a:not(.nav-button):not(.is-active) {
    display: none;
  }

  .hero-grid,
  .split,
  .feature-layout,
  .why-grid,
  .faq-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 760px) {
  body {
    max-width: 100vw;
  }

  .container {
    width: min(330px, 82vw);
    max-width: calc(100% - 44px);
    margin-left: 22px;
    margin-right: auto;
  }

  .site-nav .container,
  .site-header .container {
    width: calc(100% - 34px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .dark-wrap,
  .section,
  .footer {
    overflow-x: clip;
  }

  .top-bar {
    display: none;
  }

  .nav {
    height: auto;
    padding: 14px 0;
  }

  .nav-inner {
    position: relative;
    height: auto;
    padding: 14px 0;
  }

  .nav-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: rgba(5, 5, 5, 0.97);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.nav-open .nav-links,
  .site-header.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links a:not(.nav-button),
  .nav-links a:not(.nav-button):not(.is-active) {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--white);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-button {
    justify-content: center;
    margin-top: 2px;
    border-color: rgba(0, 136, 204, 0.62);
  }

  .nav-phone {
    display: none;
  }

  .hero {
    padding: 68px 0 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .problem-grid,
  .article-grid,
  .check-list,
  .feature-grid,
  .why-list,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-line,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .process-head {
    margin: 0 0 28px;
  }

  .seo-process-inner,
  .seo-included-inner {
    max-width: calc(100% - 44px);
  }

  .seo-process-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px 16px;
    padding: 24px 0;
  }

  .seo-step-copy {
    grid-column: 2;
  }

  .seo-step-heading h3 {
    font-size: 14px;
  }

  .seo-step-heading span {
    margin-top: 6px;
  }

  .seo-process-step p {
    font-size: 12px;
    line-height: 1.75;
  }

  .seo-process-step .seo-step-lead {
    font-size: 12px;
  }

  .seo-included-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .founder-note {
    grid-template-columns: 1fr;
  }

  .founder-blank {
    min-height: 190px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

/* Service detail pages */
.service-detail-page,
.website-design-page {
  background: #eeeeee;
}

.service-detail-page .site-nav,
.website-design-page .site-nav {
  box-shadow: 0 1px 0 rgba(0, 136, 204, 0.1);
}

.wd-page {
  color: #14161a;
  background: #eeeeee;
}

.wd-hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  padding: 30px 0 78px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, #f5f5f7 0%, #eeeeee 100%);
}

.wd-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 46%;
  background: none;
  pointer-events: none;
}

.wd-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wd-back {
  align-self: flex-start;
  margin-bottom: 64px;
  color: rgba(20, 22, 26, 0.56);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.wd-back:hover {
  color: var(--accent-dark);
}

.wd-hero h1 {
  max-width: 820px;
  margin: 22px auto 12px;
  color: #000000;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.wd-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(20, 22, 26, 0.62);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
}

.wd-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 490px);
  margin: 34px auto 20px;
  border: 1px solid rgba(0, 102, 153, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(21, 19, 13, 0.08);
}

.wd-stats div {
  padding: 15px 20px;
}

.wd-stats div + div {
  border-left: 1px solid rgba(0, 102, 153, 0.18);
}

.wd-stats strong {
  display: block;
  color: var(--accent-dark);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wd-stats span {
  display: block;
  margin-top: 5px;
  color: rgba(20, 22, 26, 0.55);
  font-size: 10px;
  font-weight: 900;
}

.wd-price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0 auto 18px;
  padding: 0 28px;
  border: 1px solid rgba(0, 102, 153, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.wd-hero-actions .btn {
  min-width: 268px;
}

.wd-section {
  padding: 86px 0;
}

.wd-section-white {
  background: #ffffff;
}

.wd-section-soft {
  background: #eeeeee;
}

.wd-section-tinted {
  background: #eeeeee;
}

.wd-rule {
  border-top: 1px solid rgba(0, 102, 153, 0.32);
}

.wd-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.wd-eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wd-section h2,
.wd-final-cta h2 {
  max-width: 520px;
  margin: 0;
  color: #171a22;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.wd-copy {
  color: rgba(20, 22, 26, 0.64);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 600;
}

.wd-copy h3 {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.wd-copy p {
  margin: 0 0 20px;
}

.wd-copy p:last-child {
  margin-bottom: 0;
}

.wd-section-head {
  margin-bottom: 44px;
}

.wd-process-list {
  max-width: 1010px;
}

.wd-process-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 48px;
}

.wd-process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 8px;
  width: 1px;
  background: rgba(0, 102, 153, 0.38);
}

.wd-step-number {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 102, 153, 0.44);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  background: #eeeeee;
  font-size: 13px;
  font-weight: 900;
}

.wd-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 8px;
}

.wd-step-heading h3 {
  margin: 0;
  color: #000000;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.wd-process-item p {
  max-width: 930px;
  margin: 0;
  color: rgba(20, 22, 26, 0.6);
  font-size: 14px;
  line-height: 1.86;
  font-weight: 600;
}

.wd-process-item .wd-step-lead {
  margin-bottom: 12px;
  color: #111316;
  font-weight: 900;
}

.wd-check-grid,
.wd-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 42px;
  max-width: 1040px;
}

.wd-check,
.wd-upgrade-grid div,
.wd-fit-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(20, 22, 26, 0.66);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.wd-check::before,
.wd-upgrade-grid div::before,
.wd-fit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.wd-small-label {
  margin: 48px 0 20px;
  color: rgba(20, 22, 26, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wd-fit-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wd-faq-list {
  max-width: 860px;
}

.wd-faq-list details {
  border: 1px solid rgba(0, 102, 153, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.wd-faq-list details + details {
  margin-top: 12px;
}

.wd-faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  color: #171a22;
  font-size: 14px;
  font-weight: 900;
}

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

.wd-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--accent-dark);
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 900;
}

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

.wd-faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgba(20, 22, 26, 0.62);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

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

.wd-other-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(0, 102, 153, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.wd-other-card:hover {
  border-color: rgba(0, 102, 153, 0.46);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.wd-card-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 102, 153, 0.24);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  background: rgba(0, 0, 0, 0.045);
  font-size: 13px;
  font-weight: 900;
}

.wd-other-card h3 {
  margin: 22px 0 10px;
  color: #171a22;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.wd-other-card p {
  margin: 0 0 24px;
  color: rgba(20, 22, 26, 0.6);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.wd-other-card strong {
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.wd-final-cta {
  padding: 92px 0 82px;
  background: #ffffff;
  text-align: center;
}

.wd-final-cta h2 {
  margin-inline: auto;
}

.wd-final-cta p {
  max-width: 480px;
  margin: 16px auto 28px;
  color: rgba(20, 22, 26, 0.62);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

@media (max-width: 860px) {
  .wd-hero {
    min-height: auto;
    padding: 22px 0 64px;
  }

  .wd-back {
    margin-bottom: 44px;
  }

  .wd-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .wd-stats,
  .wd-split,
  .wd-check-grid,
  .wd-upgrade-grid,
  .wd-other-grid {
    grid-template-columns: 1fr;
  }

  .wd-stats div + div {
    border-left: 0;
    border-top: 1px solid rgba(0, 102, 153, 0.18);
  }

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

  .wd-split {
    gap: 28px;
  }

  .wd-process-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 38px;
  }

  .wd-process-item:not(:last-child)::after {
    left: 20px;
    top: 42px;
  }

  .wd-step-number {
    width: 42px;
    height: 42px;
  }

  .wd-process-item p {
    font-size: 13px;
  }

  .wd-final-cta {
    padding: 72px 0;
  }
}

/* Apple-store restraint pass: neutral service pages with blue kept to actions and links. */
.service-detail-page,
.website-design-page,
.wd-page {
  background: #f5f5f7;
}

.service-detail-page .site-nav,
.website-design-page .site-nav {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.wd-hero {
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, #f5f5f7 0%, #eeeeee 100%);
}

.wd-hero::after {
  display: none;
}

.wd-stats,
.wd-faq-list details,
.wd-other-card,
.wd-price-pill {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.wd-stats div + div,
.wd-rule {
  border-color: rgba(0, 0, 0, 0.12);
}

.wd-price-pill {
  color: #111111;
}

.wd-section-soft,
.wd-section-tinted,
.seo-process-section,
.contact-panel {
  background: #f5f5f7;
}

.wd-process-item:not(:last-child)::after {
  background: rgba(0, 0, 0, 0.16);
}

.wd-step-number {
  border-color: rgba(0, 0, 0, 0.16);
  background: #ffffff;
}

.wd-faq-list details,
.wd-other-card {
  box-shadow: none;
}

.wd-other-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.wd-card-icon {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.045);
}

@media (max-width: 860px) {
  .wd-stats div + div {
    border-color: rgba(0, 0, 0, 0.12);
  }
}

/* Apple-style service theme pass: SF system type, neutral gray canvas, blue reserved for action. */
:root {
  --black: #000000;
  --black-2: #111111;
  --ink: #000000;
  --muted: #666666;
  --muted-dark: #979797;
  --line: rgba(0, 0, 0, 0.12);
  --line-dark: rgba(0, 0, 0, 0.12);
  --paper: #f5f5f7;
  --white: #ffffff;
  --gold: #0088cc;
  --accent: #0088cc;
  --accent-dark: #0077b6;
  --accent-soft: rgba(0, 136, 204, 0.08);
  --logo-gold: #0088cc;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.065);
}

html,
body,
input,
select,
textarea,
button {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body,
.service-detail-page,
.website-design-page,
.wd-page {
  color: var(--ink);
  background: #f5f5f7;
}

body::after {
  display: none;
}

.site-nav,
.site-header {
  background: rgba(245, 245, 247, 0.9);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.brand,
.nav-logo,
.nav-logo-text,
.nav-phone,
.nav-links,
.nav-links a,
.nav-menu-toggle {
  color: #000000;
}

.nav-links {
  color: rgba(0, 0, 0, 0.68);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #000000;
  background: rgba(0, 0, 0, 0.055);
}

.nav-button {
  border-color: rgba(0, 102, 153, 0.26);
  background: #0088cc;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(0, 102, 153, 0.18);
}

.nav-button:hover {
  background: #0077b6;
  color: #ffffff !important;
}

.nav-menu-toggle {
  border-color: rgba(0, 102, 153, 0.2);
  background: rgba(255, 255, 255, 0.62);
}

.nav-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.92);
}

.skip-link,
.top-bar,
.btn-primary {
  background: #0088cc;
  color: #ffffff;
  border-color: #0088cc;
}

.btn-primary {
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 102, 153, 0.2);
}

.btn-primary:hover {
  background: #0077b6;
  border-color: #0077b6;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: #111111;
  border-color: rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.055);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: rgba(0, 102, 153, 0.32);
}

.dark-wrap {
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.86), transparent 28rem),
    linear-gradient(180deg, #f5f5f7 0%, #eeeeee 100%);
  color: #000000;
}

.hero {
  min-height: 580px;
}

.hero h1 {
  color: #000000;
}

.hero-copy {
  color: rgba(0, 0, 0, 0.66);
}

.section.light,
.section.soft,
.section.dark,
.wd-section-soft,
.wd-section-tinted,
.seo-process-section,
.contact-panel {
  background: #f5f5f7;
}

.section.white,
.wd-section-white,
.wd-final-cta,
.feature-card,
.problem-card,
.wd-stats,
.wd-faq-list details,
.wd-other-card,
.wd-price-pill,
.area-chip {
  background: rgba(255, 255, 255, 0.82);
}

.section.dark {
  color: #000000;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section.dark .section-subtitle,
.section.dark .split-copy,
.section.dark .micro-copy,
.section.dark .check-item,
.section.dark .why-item p,
.section.dark .review-card p,
.check-item,
.process-step ul,
.next-list {
  color: rgba(0, 0, 0, 0.66);
}

.check-item,
.why-item,
.next-list li {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.check-item::before {
  content: "";
  width: 10px;
  height: 6px;
  margin-top: 0.42em;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(38deg);
}

.process-step,
.review-card {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.process-step small,
.step-num,
.reviewer {
  color: #111111;
}

.process-step li::before {
  border-color: var(--accent);
}

.founder-note {
  background: #ffffff;
  box-shadow: var(--shadow);
}

.founder-blank {
  background:
    linear-gradient(135deg, rgba(0, 136, 204, 0.12), rgba(255, 255, 255, 0.18)),
    #eeeeee;
}

.footer {
  background: #161616;
}

.wd-hero {
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(180deg, #f5f5f7 0%, #eeeeee 100%);
}

.wd-back {
  color: rgba(0, 0, 0, 0.58);
}

.wd-back:hover,
.wd-eyebrow,
.kicker,
.kicker.gold,
.accent-text,
.wd-copy h3,
.wd-stats strong,
.wd-step-number,
.wd-faq-list summary::after,
.wd-other-card strong,
.wd-card-icon,
.wd-check::before,
.wd-upgrade-grid div::before,
.wd-fit-list li::before,
.seo-step-index,
.seo-included-item::before {
  color: #0088cc;
}

.wd-price-pill {
  color: #0088cc;
  border-color: rgba(0, 102, 153, 0.2);
}

.wd-stats,
.wd-faq-list details,
.wd-other-card,
.wd-price-pill,
.problem-card,
.feature-card {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.wd-other-card:hover,
.wd-faq-list details:hover {
  border-color: rgba(0, 102, 153, 0.28);
  background: #ffffff;
}

.wd-step-number {
  background: #ffffff;
  border-color: rgba(0, 102, 153, 0.22);
}

.wd-process-item:not(:last-child)::after {
  background: rgba(0, 0, 0, 0.14);
}

.wd-card-icon,
.industry-icon,
.pricing-check {
  background: rgba(0, 136, 204, 0.08);
  border-color: rgba(0, 102, 153, 0.16);
}

.wd-rule,
.seo-process-section,
.seo-included-section {
  border-color: rgba(0, 0, 0, 0.1);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: inherit;
  border-color: rgba(0, 0, 0, 0.12);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(0, 102, 153, 0.42);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.12);
}

@media (max-width: 760px) {
  .nav-links {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
  }

  .nav-links a,
  .nav-links a:not(.nav-button),
  .nav-links a:not(.nav-button):not(.is-active) {
    color: #111111;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    color: #000000;
    background: rgba(0, 0, 0, 0.06);
  }
}

/* Apple-style hero splash shared by every service page. */
.dark-wrap,
.wd-hero {
  background:
    radial-gradient(900px 420px at 50% 7%, rgba(209, 235, 248, 0.94), rgba(232, 246, 252, 0.56) 42%, transparent 72%),
    radial-gradient(760px 360px at 18% 12%, rgba(255, 255, 255, 0.88), transparent 64%),
    radial-gradient(700px 320px at 84% 20%, rgba(0, 136, 204, 0.10), transparent 68%),
    linear-gradient(180deg, #dff1fa 0%, #f5fbfe 48%, #f5f5f7 100%);
}

.wd-hero {
  position: relative;
  overflow: hidden;
}

.wd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 32%, rgba(255, 255, 255, 0.42) 100%),
    radial-gradient(900px 280px at 50% 100%, rgba(255, 255, 255, 0.72), transparent 72%);
}

.wd-hero-inner {
  position: relative;
  z-index: 1;
}
