:root {
  --ink: #111827;
  --muted: #536276;
  --line: #d6dee8;
  --panel: #ffffff;
  --soft: #eef7ff;
  --brand: #1689d5;
  --brand-dark: #0b4871;
  --black: #05070a;
  --bg: #f4f7fb;
  --shadow: 0 16px 42px rgba(5, 7, 10, 0.1);
  --shadow-soft: 0 10px 28px rgba(5, 7, 10, 0.08);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  padding: 12px 18px 16px;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
}

.brand {
  display: inline-flex;
  max-width: min(300px, 86vw);
}

.brand img {
  display: block;
  width: 100%;
  max-height: 92px;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a,
.header-call,
.button,
.footer a {
  text-decoration: none;
}

.header-call {
  color: var(--brand-dark);
  font-weight: 900;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 18px;
  margin: 16px 0 14px;
  padding: clamp(22px, 5.4vw, 52px);
  border-radius: 8px;
  background:
    linear-gradient(112deg, rgba(5, 7, 10, 0.96), rgba(7, 31, 53, 0.94) 58%, rgba(21, 115, 184, 0.9)),
    #06111c;
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #54b9ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 6.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.subhead {
  max-width: 780px;
  margin: 16px 0 0;
  color: #eef8ff;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.cta-row,
.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 11px 16px;
  text-align: center;
}

.button.primary {
  background: #fff;
  color: var(--black);
}

.button.primary.dark,
button {
  background: var(--black);
  color: #fff;
}

.button.light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.call {
  background: var(--brand);
  color: #fff;
}

.quick-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-logo-mark {
  display: block;
  width: min(240px, 100%);
  margin-bottom: 2px;
  border-radius: 4px;
  background: #000;
}

.quick-card h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.quick-card p {
  margin: 0;
  color: #e5f3ff;
}

.quick-label {
  color: #9ed8ff !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-bar span {
  padding-left: 12px;
  border-left: 4px solid var(--brand);
  color: var(--brand-dark);
  font-weight: 900;
}

.choice-section,
.section,
.contact-band {
  margin: 16px 0;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.choice-section {
  display: grid;
  gap: 14px;
}

.choice-section article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.choice-section h2,
.section-lead h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.1;
}

.choice-section p {
  color: var(--muted);
}

.section-lead {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-lead p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.steps,
.service-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

.example-grid,
.handoff-grid,
.internal-link-grid {
  display: grid;
  gap: 14px;
}

.steps article,
.service-grid article,
.review-grid blockquote,
.example-grid article,
.handoff-grid article {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.steps h3,
.service-grid h3 {
  margin: 12px 0 8px;
}

.steps p,
.service-grid p,
blockquote p,
.handoff-grid p {
  margin: 0;
  color: var(--muted);
}

.example-grid h3,
.handoff-grid h3 {
  margin: 0 0 12px;
}

pre {
  min-height: 120px;
  max-height: 360px;
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #182233;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 12px;
}

.tech-list {
  display: grid;
  gap: 10px;
}

.tech-list p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--muted);
  font-weight: 700;
}

.pricing-layout {
  display: grid;
  gap: 16px;
}

.brand-video {
  overflow: hidden;
}

.video-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #05070a;
}

.video-shell img,
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-shell img {
  display: block;
  object-fit: cover;
  opacity: 0.82;
}

.video-play {
  position: absolute;
  min-width: 140px;
  background: #fff;
  color: var(--black);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.lead-form,
.pricing-note {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.form-intro {
  display: grid;
  gap: 6px;
}

.form-intro h3,
.form-intro p,
.pricing-note p {
  margin: 0;
}

.form-intro p,
.pricing-note p {
  color: var(--muted);
}

.deal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deal-strip span {
  border: 1px solid #b9d9ee;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 7px 10px;
}

.pricing-note {
  align-self: start;
}

.grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c8d3df;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #0f654b;
  font-size: 0.92rem;
  font-weight: 900;
}

.pricing-note h3 {
  margin: 0;
}

.pricing-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 900;
  padding: 8px 12px;
}

.contact-band {
  display: grid;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(5, 7, 10, 0.95), rgba(8, 45, 76, 0.95)),
    var(--black);
  color: #fff;
}

.contact-band .eyebrow {
  color: #9ed8ff;
}

.footer {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 calc(118px + env(safe-area-inset-bottom, 0px));
  color: var(--muted);
}

.sticky-mobile-cta {
  position: fixed;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom, 0px));
  left: 10px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.94);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.26);
}

.sticky-mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  background: #fff;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.sticky-mobile-cta a:nth-child(2) {
  background: var(--brand);
  color: #fff;
}

.footer img {
  display: block;
  width: min(260px, 80vw);
}

.footer p {
  max-width: 560px;
}

.footer div:last-child {
  display: grid;
  gap: 10px;
}

.footer a {
  color: var(--brand-dark);
  font-weight: 900;
}

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
    padding: 14px clamp(24px, 4vw, 48px);
  }

  .brand {
    max-width: 260px;
  }

  nav {
    align-self: center;
  }

  .header-call {
    align-self: center;
    justify-self: end;
  }

  .cta-row,
  .contact-actions,
  .trust-bar,
  .choice-section,
  .grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .review-grid,
  .handoff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .internal-link-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: end;
  }

  .trust-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .contact-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding-bottom: 42px;
  }

  .sticky-mobile-cta {
    display: none;
  }
}
