:root {
  --ink: #102033;
  --deep: #081827;
  --blue: #3b82f6;
  --green: #29b971;
  --amber: #f2b84b;
  --paper: #f6f9fc;
  --white: #ffffff;
  --slate: #5f6d7e;
  --line: #d7dee8;
  --soft-blue: #eaf3ff;
  --soft-green: #eaf8f0;
  --shadow: 0 18px 55px rgba(16, 32, 51, 0.14);
  --shadow-soft: 0 10px 30px rgba(16, 32, 51, 0.08);
  font-family: Inter, Manrope, Avenir Next, Segoe UI, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #f6f9fc 100%);
  line-height: 1.58;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.2);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

#main-content:focus {
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  padding-top: 14px;
  color: var(--white);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 66px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(8, 18, 30, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--white);
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.24);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 13px;
  width: 22px;
  height: 15px;
  border-top: 6px solid var(--blue);
  border-left: 6px solid var(--blue);
  transform: skewY(22deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  border-top: 5px solid var(--green);
  border-right: 5px solid var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-size: 14px;
  color: var(--white);
}

.nav-links a:not(.button) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 11px;
  border-radius: 7px;
  color: var(--white);
  font-weight: 850;
}

.nav-links a:not(.button):hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.nav-cta:hover {
  background: var(--soft-green);
  border-color: var(--green);
}

.cta-short,
.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  min-width: 76px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  color: var(--white);
  background: rgba(16, 32, 51, 0.72);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  font-family: inherit;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-icon {
  width: 20px;
  display: grid;
  gap: 4px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu.is-open .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.is-open .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(280px, calc(100vw - 24px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(8, 18, 30, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-menu-panel[hidden] {
  display: none;
}

.mobile-menu.is-open .mobile-menu-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu-panel a {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
}

.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 42%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(41, 185, 113, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

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

.button:hover::after {
  transform: translateX(130%);
}

.button-primary:hover {
  background: #35c57d;
  box-shadow: 0 14px 34px rgba(41, 185, 113, 0.34);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.14);
}

.button-dark:hover {
  background: #172a42;
}

.hero {
  position: relative;
  min-height: min(720px, 86svh);
  color: var(--white);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(8, 24, 39, 0.96) 0%, rgba(16, 32, 51, 0.84) 42%, rgba(16, 32, 51, 0.22) 74%, rgba(16, 32, 51, 0.08) 100%),
    image-set(
      url("webaidhub-hero.webp") type("image/webp"),
      url("webaidhub-hero.png") type("image/png")
    );
  background-size: cover;
  background-position: center right;
  padding: 128px 24px 78px;
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #baf6d4;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

p,
li,
summary,
label,
input,
select,
textarea {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 940px;
  font-size: 58px;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
}

h3 {
  margin: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: #e6eef8;
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 42px;
  color: #e6eef8;
}

.proof-item {
  border-left: 3px solid var(--green);
  padding: 2px 0 2px 14px;
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

section {
  padding: 76px 24px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 690px;
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
}

.section-head p {
  max-width: 420px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.62;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.benefit-grid .conversion-card {
  grid-column: span 2;
}

.benefit-grid .conversion-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.26);
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.11);
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.58;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--soft-green);
  border: 1px solid rgba(41, 185, 113, 0.25);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.card:hover .icon {
  transform: translateY(-2px) rotate(-2deg);
  background: #dff5ea;
  border-color: rgba(41, 185, 113, 0.4);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.band {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  border-block: 1px solid var(--line);
}

.service-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--slate);
}

.service-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.price-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
}

.combo-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
  max-width: 940px;
  margin: 0 auto;
}

.combo-copy,
.combo-details {
  display: grid;
  align-content: start;
  gap: 14px;
}

.combo-card h3 {
  font-size: 44px;
  line-height: 1.02;
}

.price-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.price-line {
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-line:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.09);
}

.price-line span,
.price-line small {
  display: block;
  color: var(--slate);
  font-size: 13px;
  font-weight: 850;
}

.price-line strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft-blue);
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin: 10px 0 2px;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--slate);
  font-size: 15px;
  font-weight: 750;
}

.package-cta {
  margin-top: auto;
  padding-top: 20px;
}

.package-cta .button {
  width: 100%;
}

.conversion-card {
  min-height: 100%;
  border-top: 4px solid var(--blue);
}

.conversion-card .tag {
  background: var(--soft-green);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}

.rating-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.rating-label {
  margin: 0;
  color: #baf6d4;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.rating-value {
  margin: 8px 0 0;
  max-width: 360px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.rating-card p {
  color: #dbe5f0;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--amber);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.rating-note {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

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

.testimonial-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(234, 243, 255, 0.78), rgba(255, 255, 255, 0)),
    var(--white);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 850;
}

.testimonial-card p {
  color: var(--slate);
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-meta strong {
  font-size: 15px;
}

.testimonial-meta span {
  color: var(--slate);
  font-size: 13px;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.split > div:first-child {
  display: grid;
  gap: 16px;
  align-content: start;
}

.split h2,
.split p {
  margin: 0;
}

.split h2 {
  max-width: 640px;
}

.split > div:first-child > p:not(.section-kicker) {
  max-width: 560px;
  color: var(--slate);
  font-size: 17px;
}

.audit-panel {
  background:
    linear-gradient(145deg, rgba(59, 130, 246, 0.14), rgba(41, 185, 113, 0.08)),
    var(--ink);
  color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.audit-panel h3 {
  margin: 0 0 20px;
  font-size: 24px;
}

.audit-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.audit-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.check {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
}

.audit-row strong {
  display: block;
  font-size: 16px;
}

.audit-row span {
  color: #cbd7e5;
  font-size: 14px;
}

.status {
  color: #baf6d4;
  font-size: 13px;
  font-weight: 850;
}

.process {
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.step:hover::before {
  transform: translateY(-2px);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(41, 185, 113, 0.22);
}

.step h3,
.step p {
  grid-column: 2;
  min-width: 0;
}

.step h3 {
  margin-top: 0;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

details:hover,
details[open] {
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
}

summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: var(--soft-blue);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
  color: var(--ink);
  background: var(--soft-green);
}

details p {
  margin: 12px 0 0;
  color: var(--slate);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.cta {
  background: var(--ink);
  color: var(--white);
}

.cta .section-head {
  align-items: center;
  margin-bottom: 0;
}

.cta .section-head p {
  color: #cbd7e5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 20px;
  max-width: 540px;
}

.contact-copy h2,
.contact-copy p {
  margin: 0;
}

.contact-copy p {
  color: #cbd7e5;
  font-size: 17px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  color: #dbe5f0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.direct-email {
  color: #baf6d4;
  font-weight: 850;
}

.lead-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid rgba(215, 222, 232, 0.9);
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-form[data-form-disabled="true"] input,
.lead-form[data-form-disabled="true"] select,
.lead-form[data-form-disabled="true"] textarea,
.lead-form[data-form-disabled="true"] button {
  cursor: not-allowed;
  opacity: 0.68;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

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

label {
  font-size: 13px;
  font-weight: 850;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: #7b8797;
}

textarea {
  min-height: 106px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(59, 130, 246, 0.18);
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: 13px;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.turnstile-field {
  min-height: 65px;
  display: flex;
  align-items: center;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 13px;
}

.form-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-blue);
  color: var(--ink);
  font-weight: 750;
}

.site-footer {
  padding: 32px 24px;
  background: #0b1726;
  color: #dbe5f0;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
      opacity 520ms ease,
      transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 180ms ease,
      border-color 180ms ease,
      background-color 180ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .motion-ready .reveal-item:not(.is-visible) {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  .motion-ready .conversion-card.reveal-item {
    transition:
      opacity 430ms ease,
      transform 620ms cubic-bezier(0.18, 0.89, 0.32, 1.12),
      box-shadow 180ms ease,
      border-color 180ms ease,
      background-color 180ms ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

  .motion-ready .conversion-card.reveal-item:not(.is-visible) {
    opacity: 0;
    transform: translateY(26px) scale(0.92);
  }

  .motion-ready .card.reveal-item.is-visible:hover {
    transform: translateY(-2px) scale(1);
  }

  .motion-ready .button.reveal-item.is-visible:hover {
    transform: translateY(-1px);
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > .hero-copy,
  .hero-content > .hero-actions {
    animation: heroIn 520ms ease-out both;
  }

  .hero-content > h1 {
    animation-delay: 60ms;
  }

  .hero-content > .hero-copy {
    animation-delay: 120ms;
  }

  .hero-content > .hero-actions {
    animation-delay: 180ms;
  }

  .brand-mark::before,
  .brand-mark::after {
    transition: transform 220ms ease;
  }

  .brand:hover .brand-mark::before {
    transform: translateX(1px) skewY(22deg);
  }

  .brand:hover .brand-mark::after {
    transform: translate(-1px, -1px);
  }

  @keyframes heroIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-height: 44px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(90deg, rgba(16, 32, 51, 0.94) 0%, rgba(16, 32, 51, 0.78) 100%),
      image-set(
        url("webaidhub-hero.webp") type("image/webp"),
        url("webaidhub-hero.png") type("image/png")
    );
    background-position: center;
    padding-top: 126px;
    padding-bottom: 64px;
  }

  section {
    padding: 68px 24px;
  }

  h1 {
    font-size: 48px;
    line-height: 1.04;
  }

  .section-head h2 {
    font-size: 40px;
  }

  h2 {
    font-size: 40px;
  }

  .combo-card h3 {
    font-size: 38px;
  }

  .hero-proof,
  .reviews-layout,
  .review-grid,
  .grid-3,
  .benefit-grid,
  .grid-2,
  .split,
  .combo-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid .conversion-card,
  .benefit-grid .conversion-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .section-head {
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
  }

  .section-head p {
    max-width: 680px;
    margin-top: 0;
  }

  .split,
  .contact-grid {
    gap: 28px;
  }

  .hero-proof {
    max-width: 560px;
    margin-top: 36px;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.5;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav {
    width: calc(100% - 20px);
    gap: 8px;
    padding: 8px;
    border-radius: 10px;
  }

  .wrap {
    width: 100%;
    max-width: 100%;
  }

  .brand {
    gap: 8px;
    font-size: 17px;
    overflow: hidden;
  }

  .brand-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .brand-mark::before {
    left: 8px;
    top: 12px;
    width: 20px;
    height: 14px;
    border-top-width: 5px;
    border-left-width: 5px;
  }

  .brand-mark::after {
    right: 7px;
    bottom: 7px;
    width: 15px;
    height: 15px;
    border-top-width: 4px;
    border-right-width: 4px;
  }

  .hero {
    padding-inline: 16px;
    padding-top: 104px;
    padding-bottom: 42px;
    min-height: auto;
  }

  section {
    padding: 42px 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.07;
    overflow-wrap: break-word;
  }

  .section-head h2 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  h2 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .eyebrow,
  .section-kicker,
  .rating-label {
    font-size: 12px;
    line-height: 1.35;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.52;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 10px 14px;
    line-height: 1.15;
    white-space: normal;
  }

  .nav .nav-cta {
    width: auto;
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .mobile-menu-panel {
    left: 0;
    right: 0;
    width: auto;
    z-index: 20;
  }

  .hero-proof {
    gap: 10px;
    margin-top: 26px;
  }

  .proof-item {
    padding-left: 12px;
  }

  .proof-item span {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .grid,
  .review-grid,
  .reviews-layout,
  .faq {
    gap: 14px;
  }

  .card {
    gap: 10px;
    padding: 18px;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-head p,
  .contact-copy p,
  .split > div:first-child > p:not(.section-kicker) {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .proof-item strong {
    font-size: 20px;
  }

  .card h3,
  .step h3,
  .testimonial-card blockquote {
    font-size: 20px;
    line-height: 1.18;
  }

  .tag {
    max-width: 100%;
    min-height: 0;
    padding-block: 6px;
    line-height: 1.2;
    white-space: normal;
  }

  .service-list {
    gap: 8px;
  }

  .price {
    font-size: 34px;
  }

  .combo-card {
    gap: 18px;
  }

  .combo-card h3 {
    font-size: 28px;
    line-height: 1.08;
  }

  .price-lines {
    grid-template-columns: 1fr;
  }

  .price-line {
    min-height: 0;
    padding: 14px;
  }

  .price-line strong {
    font-size: 34px;
  }

  .package-cta {
    padding-top: 16px;
  }

  .rating-card,
  .testimonial-card {
    gap: 14px;
  }

  .audit-panel {
    padding: 18px;
  }

  .audit-row {
    gap: 12px;
    padding: 14px 0;
  }

  details {
    padding: 15px 16px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .rating-value {
    font-size: 38px;
  }

  .step {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
  }

  .step::before {
    width: 38px;
    height: 38px;
  }

  .audit-row {
    grid-template-columns: 36px 1fr;
  }

  .status {
    grid-column: 2;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-form {
    padding: 16px;
    box-shadow: none;
  }

  .form-note {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .contact-grid {
    gap: 22px;
  }

  .contact-copy {
    gap: 16px;
  }

  .contact-actions {
    flex-direction: column;
  }

  label {
    font-size: 14px;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    padding: 12px;
    font-size: 16px;
  }

  .site-footer {
    padding: 24px 16px;
  }

  .footer-inner {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    max-width: 118px;
  }

  .mobile-menu-toggle {
    min-width: 44px;
    padding: 0;
  }

  .menu-text {
    display: none;
  }
}

@media (max-width: 340px) {
  .brand-name {
    display: none;
  }

  .mobile-menu-toggle {
    min-width: 44px;
    padding: 0;
  }

  .menu-text {
    display: none;
  }
}
