:root {
  --ink: #07111f;
  --muted: #5f6b7a;
  --line: #d9dee7;
  --blue: #0b63ff;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.site-header {
  height: 72px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo {
  font-weight: 750;
  font-size: 22px;
}

.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.95;
  margin: 0 0 20px;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 42px;
  color: #182236;
}

.helper-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.08);
}

.helper-box label {
  display: block;
  font-weight: 650;
  margin-bottom: 12px;
}

.helper-input-row {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 14px;
  align-items: end;
}

textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 18px;
  color: var(--ink);
}

textarea::placeholder {
  color: #8892a0;
}

button {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.prompt-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 28px 0 24px;
}

.prompt-pills a {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 15px;
}

.service-line {
  color: var(--muted);
  font-size: 18px;
}

.intro {
  border-top: 1px solid var(--line);
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  text-align: center;
}

.intro h2 {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.intro p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 20px;
  }

  .site-header nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    padding-top: 56px;
  }

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

  button {
    justify-self: end;
  }
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px;
}

.contact-hero {
  max-width: 720px;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0 0 20px;
}

.contact-hero p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.08);
}

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

.contact-card label {
  font-weight: 650;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
}

.contact-card textarea {
  min-height: 160px;
}

.wide-button {
  width: 100%;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 0;
}

.service-hero {
  max-width: 820px;
  margin-bottom: 56px;
}

.service-hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.065em;
  margin: 0 0 24px;
}

.service-hero p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 750;
}

.primary-link {
  background: var(--blue);
  color: #fff;
}

.secondary-link {
  border: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 44px;
  margin-bottom: 44px;
}

.split-section h2,
.service-grid h2,
.faq-section h2,
.bottom-cta h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
}

.split-section p,
.faq-row p,
.bottom-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.quiet-card,
.service-grid article,
.bottom-cta {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}

.quiet-card h3 {
  margin-top: 0;
}

.quiet-card li,
.service-grid li {
  margin-bottom: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}

.faq-section {
  border-top: 1px solid var(--line);
  padding-top: 36px;
  margin-bottom: 44px;
}

.faq-row {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-row h3 {
  margin: 0 0 8px;
}

.bottom-cta {
  background: #f7f9fc;
  text-align: center;
}

@media (max-width: 780px) {
  .split-section,
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* Shared footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 72px;
  padding: 44px 40px 28px;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.site-footer h2 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.site-footer a:not(.footer-logo) {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  max-width: 1120px;
  margin: 36px auto 0 !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 780px) {
  .site-footer {
    padding: 36px 24px 24px;
  }

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

/* Homepage polish */
.home-hero {
  padding-bottom: 72px;
}

.home-hero .eyebrow {
  margin: 0 0 18px;
}

.home-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px;
}

.home-intro,
.home-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.home-intro h2,
.home-proof h2,
.section-heading h2,
.local-strip h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0;
}

.home-intro p,
.home-proof p,
.local-strip p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.home-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.055);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-card:hover {
  transform: translateY(-2px);
  border-color: #b9c4d3;
  box-shadow: 0 22px 55px rgba(7, 17, 31, 0.08);
}

.home-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.home-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.local-strip {
  max-width: 1080px;
  margin: 8px auto;
  padding: 44px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(11, 99, 255, 0.08), transparent 32%),
    #f8fafc;
}

.local-strip p {
  max-width: 780px;
  margin: 18px auto 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #182236;
  font-size: 18px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 750;
  color: var(--blue);
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

@media (max-width: 900px) {
  .home-intro,
  .home-proof {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .home-card-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 56px 20px;
  }

  .local-strip {
    margin: 0 20px;
  }
}


/* Dark homepage concept */
.dark-home {
  --hd-bg: #07111f;
  --hd-bg-2: #0b1728;
  --hd-card: rgba(13, 27, 48, 0.78);
  --hd-card-strong: rgba(16, 32, 57, 0.94);
  --hd-border: rgba(160, 181, 215, 0.18);
  --hd-text: #f7fbff;
  --hd-muted: #a8b6c9;
  --hd-blue: #4c75ff;
  --hd-blue-2: #2f63ff;
  --hd-green: #8de079;
  --hd-orange: #ff8b5f;
  --hd-purple: #a783ff;
  --hd-red: #ff6f6f;
  background:
    radial-gradient(circle at 50% 0%, rgba(71, 111, 255, 0.22), transparent 34rem),
    linear-gradient(180deg, #07111f 0%, #081424 58%, #050b15 100%);
  color: var(--hd-text);
}

.dark-home a {
  color: inherit;
}

.dark-home .hd-dark-header {
  height: 74px;
  border-bottom: 1px solid rgba(160, 181, 215, 0.12);
  background: rgba(5, 11, 21, 0.42);
  backdrop-filter: blur(16px);
  color: var(--hd-text);
}

.dark-home .logo,
.dark-home .footer-logo {
  color: var(--hd-text);
}

.dark-home .site-header nav a {
  color: #dbe7f7;
}

.hd-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 24px 34px;
}

.hd-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0) 0%, rgba(7, 17, 31, 0.94) 88%),
    radial-gradient(circle at 16% 52%, rgba(76, 117, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 84% 48%, rgba(62, 202, 255, 0.11), transparent 22rem);
}

.hd-hero-bg::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 0;
  height: 68%;
  opacity: 0.18;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(160, 181, 215, 0.26) 49% 51%, transparent 52% 100%),
    linear-gradient(45deg, transparent 0 48%, rgba(160, 181, 215, 0.18) 49% 51%, transparent 52% 100%);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent);
}

.hd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hd-hero h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  color: var(--hd-text);
}

.hd-hero-sub {
  margin: 22px 0 0;
  font-size: clamp(22px, 3vw, 31px);
  color: #e3edf9;
}

.hd-hero-sub-2 {
  margin-top: 4px;
  color: #cad6e8;
}

.hd-diagnosis-box {
  max-width: 760px;
  margin: 34px auto 26px;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(103, 133, 255, 0.62);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 32, 57, 0.96), rgba(8, 18, 34, 0.94));
  box-shadow:
    0 0 0 1px rgba(103, 133, 255, 0.1) inset,
    0 24px 80px rgba(0, 0, 0, 0.35),
    0 0 44px rgba(76, 117, 255, 0.2);
}

.hd-ai-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.hd-ai-badge {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(103, 133, 255, 0.72);
  background: rgba(76, 117, 255, 0.18);
  color: #dce6ff;
  font-weight: 800;
}

.hd-ai-row label {
  display: block;
  color: var(--hd-text);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hd-ai-row p {
  margin: 4px 0 0;
  color: var(--hd-muted);
  line-height: 1.5;
}

.hd-input-row {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 12px;
  align-items: end;
  border: 1px solid rgba(160, 181, 215, 0.22);
  border-radius: 14px;
  padding: 14px;
  background: rgba(2, 8, 18, 0.42);
}

.hd-input-row textarea {
  min-height: 78px;
  color: var(--hd-text);
  background: transparent;
  font-size: 17px;
}

.hd-input-row textarea::placeholder {
  color: #94a7c2;
}

.hd-input-row button {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hd-blue), var(--hd-blue-2));
  box-shadow: 0 14px 34px rgba(47, 99, 255, 0.32);
}

.hd-prompt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.hd-prompt-pills a {
  border: 1px solid rgba(160, 181, 215, 0.24);
  border-radius: 999px;
  padding: 9px 18px;
  color: #dce7f7;
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
}

.hd-hero-actions,
.hd-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hd-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hd-blue), var(--hd-blue-2));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(47, 99, 255, 0.28);
}

.hd-secondary-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #e5eefb;
  font-weight: 750;
}

.hd-timeline {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.hd-line {
  position: absolute;
  top: 0;
  bottom: 24px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(160, 181, 215, 0.38), transparent);
}

.hd-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
  min-height: 210px;
}

.hd-step::before {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hd-blue);
  box-shadow: 0 0 0 7px rgba(76, 117, 255, 0.14), 0 0 28px rgba(76, 117, 255, 0.9);
}

.hd-step-card {
  min-height: 132px;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  background: var(--hd-card);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  padding: 30px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px 24px;
  align-items: center;
}

.hd-step-card span:not(.hd-icon) {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: rgba(160, 181, 215, 0.13);
}

.hd-icon {
  grid-row: span 3;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(160, 181, 215, 0.2);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 900;
  font-size: 25px;
}

.hd-icon-red { color: var(--hd-red); }
.hd-icon-blue { color: var(--hd-blue); }
.hd-icon-purple { color: var(--hd-purple); }
.hd-icon-orange { color: var(--hd-orange); }
.hd-icon-green { color: var(--hd-green); }

.hd-step-copy {
  max-width: 390px;
}

.hd-step-left .hd-step-copy {
  justify-self: end;
}

.hd-step-number {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 24px;
}

.hd-step-number.red { color: var(--hd-red); }
.hd-step-number.blue { color: var(--hd-blue); }
.hd-step-number.purple { color: var(--hd-purple); }
.hd-step-number.orange { color: var(--hd-orange); }
.hd-step-number.green { color: var(--hd-green); }

.hd-step h2 {
  margin: 0 0 12px;
  color: var(--hd-text);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hd-step p:not(.hd-step-number) {
  margin: 0;
  color: var(--hd-muted);
  line-height: 1.6;
  font-size: 17px;
}

.hd-services-panel,
.hd-local-panel,
.hd-cta-panel {
  max-width: 1180px;
  margin: 28px auto;
  border: 1px solid var(--hd-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 32, 57, 0.9), rgba(8, 18, 34, 0.86));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.hd-services-panel {
  padding: 32px;
  text-align: center;
}

.hd-services-panel h2,
.hd-local-panel h2,
.hd-cta-panel h2 {
  margin: 0;
  color: var(--hd-text);
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.045em;
}

.hd-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 28px;
}

.hd-services-grid a {
  padding: 8px 18px;
  border-left: 1px solid rgba(160, 181, 215, 0.12);
}

.hd-services-grid a:first-child {
  border-left: 0;
}

.hd-services-grid span {
  display: block;
  color: var(--hd-blue);
  font-size: 34px;
  margin-bottom: 12px;
}

.hd-services-grid strong {
  display: block;
  color: var(--hd-text);
  margin-bottom: 8px;
}

.hd-services-grid p {
  margin: 0;
  color: var(--hd-muted);
  line-height: 1.45;
}

.hd-local-panel {
  padding: 30px;
  text-align: center;
}

.hd-local-panel .hd-pin {
  margin: 0 0 10px;
  color: #b9c8ff;
  font-size: 28px;
}

.hd-local-panel p:last-child {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--hd-muted);
  font-size: 18px;
  line-height: 1.7;
}

.hd-cta-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  margin-bottom: 36px;
}

.hd-cta-panel p {
  color: var(--hd-muted);
  font-size: 18px;
}

.hd-lighthouse {
  height: 120px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 28%, rgba(185, 200, 255, 0.8), transparent 4px),
    linear-gradient(90deg, transparent 34%, rgba(185, 200, 255, 0.28) 35% 37%, transparent 38%),
    linear-gradient(135deg, transparent 0 48%, rgba(185, 200, 255, 0.22) 49% 51%, transparent 52% 100%),
    radial-gradient(circle at 20% 70%, rgba(76, 117, 255, 0.18), transparent 50%);
  border: 1px solid rgba(160, 181, 215, 0.12);
}

.dark-home .hd-dark-footer {
  color: var(--hd-muted);
  background: rgba(3, 8, 15, 0.62);
  border-top: 1px solid rgba(160, 181, 215, 0.12);
}

.dark-home .hd-dark-footer h2,
.dark-home .hd-dark-footer .footer-logo {
  color: var(--hd-text);
}

.dark-home .hd-dark-footer a {
  color: #c8d5e8;
}

.dark-home .footer-bottom {
  color: #8797ad;
}

@media (max-width: 900px) {
  .hd-hero {
    padding-top: 56px;
  }

  .hd-input-row,
  .hd-step,
  .hd-cta-panel {
    grid-template-columns: 1fr;
  }

  .hd-line,
  .hd-step::before {
    display: none;
  }

  .hd-step {
    gap: 18px;
    min-height: auto;
    margin: 34px 0;
  }

  .hd-step-left .hd-step-copy {
    justify-self: start;
  }

  .hd-step-left .hd-step-copy {
    order: 2;
  }

  .hd-step-left .hd-step-card {
    order: 1;
  }

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

  .hd-services-grid a {
    border-left: 0;
    border-top: 1px solid rgba(160, 181, 215, 0.12);
    padding: 22px 12px;
  }

  .hd-services-grid a:nth-child(-n+2) {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  .dark-home .hd-dark-header {
    padding: 0 18px;
  }

  .hd-diagnosis-box {
    padding: 18px;
  }

  .hd-ai-row {
    gap: 12px;
  }

  .hd-ai-row label {
    font-size: 19px;
  }

  .hd-services-grid {
    grid-template-columns: 1fr;
  }

  .hd-services-grid a:nth-child(-n+2) {
    border-top: 1px solid rgba(160, 181, 215, 0.12);
  }

  .hd-services-grid a:first-child {
    border-top: 0;
  }

  .hd-services-panel,
  .hd-local-panel,
  .hd-cta-panel {
    margin-left: 18px;
    margin-right: 18px;
  }
}
/* End dark homepage concept */

