:root {
  --navy: #08152b;
  --navy-2: #102344;
  --blue: #1e66ff;
  --blue-2: #35a3ff;
  --ink: #182235;
  --muted: #60708a;
  --line: #dce5f2;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 21, 43, 0.14);
  --shadow-strong: 0 34px 90px rgba(8, 21, 43, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

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

.section-dark {
  background:
    linear-gradient(180deg, rgba(30, 102, 255, 0.12), rgba(8, 21, 43, 0)),
    var(--navy);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 229, 242, 0.7);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  box-shadow: 0 10px 30px rgba(30, 102, 255, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #38465c;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--navy), #123c7d);
  box-shadow: 0 12px 28px rgba(8, 21, 43, 0.2);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.nav-cta:hover {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 16px 34px rgba(30, 102, 255, 0.28);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: auto;
  padding: 72px 0 56px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 21, 43, 0.96), rgba(16, 35, 68, 0.86)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(8, 21, 43, 0), rgba(8, 21, 43, 0.24));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.45rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 660px;
  margin: 20px 0 0;
  color: #d8e5f8;
  font-size: 1.16rem;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(30, 102, 255, 0.35);
}

.btn-primary:hover {
  background: #1558e7;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d8e5f8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.proof-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.proof-strip span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e8f1ff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: center;
}

.hero-image-card {
  position: relative;
  margin: 0;
  max-width: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(8, 21, 43, 0.2);
}

.hero-image-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.hero-image-card figcaption {
  position: static;
  padding: 12px 14px;
  border-radius: 0;
  color: var(--white);
  background: rgba(8, 21, 43, 0.9);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel .main-pipeline {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
}

.pipeline-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.main-pipeline {
  overflow: hidden;
  padding: 22px;
  color: var(--ink);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.main-pipeline:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.main-pipeline::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(53, 163, 255, 0.18) 48%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}

.main-pipeline.is-updating::before {
  animation: dashboardSweep 900ms ease;
}

.pipeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pipeline-header strong {
  color: var(--navy);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.metric-grid div {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbff;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.metric-grid div:hover {
  border-color: rgba(30, 102, 255, 0.38);
  background: #eef5ff;
  transform: translateY(-3px);
}

.metric-grid span,
.funnel span,
.contact-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.45rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.main-pipeline.is-updating .metric-grid strong {
  color: var(--blue);
  transform: translateY(-2px);
}

.funnel {
  display: grid;
  gap: 14px;
}

.funnel div {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
}

.funnel div::after,
.funnel div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  border-radius: 999px;
}

.funnel div::before {
  width: 100%;
  background: #e8eef7;
}

.funnel div::after {
  width: var(--w);
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transition: width 700ms cubic-bezier(0.19, 1, 0.22, 1);
  animation: barPulse 2600ms ease-in-out infinite;
}

.activity-feed {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid #dce9ff;
  border-radius: var(--radius);
  background: #f7fbff;
}

.activity-feed p {
  margin: 0;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.activity-pulse {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #21c477;
  box-shadow: 0 0 0 0 rgba(33, 196, 119, 0.35);
  animation: livePulse 1600ms ease-out infinite;
}

.status-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #21c477;
  box-shadow: 0 0 0 7px rgba(33, 196, 119, 0.16);
  animation: livePulse 1600ms ease-out infinite;
}

@keyframes dashboardSweep {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes barPulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.35) brightness(1.06);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(33, 196, 119, 0.38);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(33, 196, 119, 0);
  }
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-band-grid div {
  min-height: 120px;
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}

.trust-band-grid div:last-child {
  border-right: 1px solid var(--line);
}

.trust-band-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
}

.trust-band-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.light h2,
.section-heading.light p:not(.eyebrow) {
  color: var(--white);
}

.section-heading.light p:not(.eyebrow) {
  color: #cbd9ee;
}

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

.industry-grid,
.service-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.slider-shell {
  overflow: hidden;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.slider-header span {
  color: var(--navy);
  font-weight: 800;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button,
.result-dots button {
  border: 1px solid var(--line);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.slider-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}

.slider-controls button:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.industry-slider {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 24px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.industry-slider::-webkit-scrollbar {
  display: none;
}

.industry-slide {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 21, 43, 0.08);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.industry-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(8, 21, 43, 0.14);
}

.industry-slide img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.industry-slide div {
  padding: 22px;
}

.industry-slide p {
  margin: 0;
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.split-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.mini-card,
.feature-card,
.pricing-card,
.lead-form,
.process-step,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 21, 43, 0.06);
}

.mini-card {
  padding: 24px;
  color: var(--navy);
  font-weight: 800;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.mini-card:hover,
.feature-card:hover,
.pricing-card:hover {
  border-color: rgba(30, 102, 255, 0.36);
  transform: translateY(-4px);
}

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

.feature-card {
  padding: 28px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.feature-card p,
.process-step p,
.pricing-card li,
details p,
.contact-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eaf2ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-wide {
  grid-column: span 3;
}

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

.credibility-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.credibility-media {
  position: relative;
}

.credibility-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

.media-stat {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: none;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(8, 21, 43, 0.78);
  box-shadow: 0 18px 48px rgba(8, 21, 43, 0.22);
  backdrop-filter: blur(14px);
}

.media-stat strong,
.assurance-list strong {
  display: block;
  margin-bottom: 5px;
}

.media-stat strong {
  color: var(--white);
}

.assurance-list strong {
  color: var(--navy);
}

.assurance-list span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.media-stat span {
  display: block;
  color: #d8e5f8;
  font-size: 0.92rem;
}

.credibility-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.assurance-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.assurance-list div {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.assurance-list div::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(30, 102, 255, 0.11);
}

.process-list {
  position: relative;
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
}

.process-step span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.results-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 21, 43, 0.92), rgba(8, 21, 43, 0.72)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.result-slider {
  max-width: 900px;
  margin: 0 auto;
}

.result-track {
  position: relative;
  min-height: 270px;
}

.result-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-strong);
  transform: translateY(14px);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 240ms ease;
  backdrop-filter: blur(14px);
}

.result-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quote {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
  font-weight: 800;
}

.result-card strong {
  display: block;
  margin-top: 28px;
  color: var(--white);
}

.result-card span {
  display: block;
  color: #cbd9ee;
}

.result-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.result-dots button {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.result-dots button.is-active {
  width: 52px;
  border-color: var(--blue-2);
  background: var(--blue-2);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.pricing-card.featured {
  border-color: rgba(53, 163, 255, 0.68);
  box-shadow: 0 24px 70px rgba(30, 102, 255, 0.22);
}

.plan-name {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0 0 24px;
  font-size: 2.3rem;
}

.pricing-card h3 span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.pricing-card .btn {
  margin-top: auto;
}

.badge {
  align-self: flex-start;
  margin: -6px 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: #dff0ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 52px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 20px 22px;
}

summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin-top: 12px;
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.86), rgba(255, 255, 255, 1)),
    var(--white);
}

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

.review-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 21, 43, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.review-card:hover {
  border-color: rgba(30, 102, 255, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.featured-review {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(30, 102, 255, 0.95), rgba(8, 21, 43, 0.96)),
    var(--navy);
}

.review-stars {
  color: #f7b731;
  font-size: 1rem;
  letter-spacing: 0;
}

.review-card p {
  margin: 22px 0 28px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
}

.featured-review p,
.featured-review .review-author strong,
.featured-review .review-author small {
  color: var(--white);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-author span {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-weight: 800;
}

.featured-review .review-author span {
  color: var(--navy);
  background: var(--white);
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  color: var(--navy);
}

.review-author small {
  color: var(--muted);
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.review-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.review-stats strong,
.review-stats span {
  display: block;
}

.review-stats strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.review-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 52px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.closing-box {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(30, 102, 255, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(30, 102, 255, 0.1), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: 0 18px 46px rgba(8, 21, 43, 0.08);
}

.closing-box strong,
.closing-box span {
  display: block;
}

.closing-box strong {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.closing-box span {
  margin-top: 8px;
  color: var(--muted);
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.contact-proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-proof strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 102, 255, 0.12);
}

textarea {
  resize: vertical;
}

.address-search {
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 12;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.address-suggestions.is-open {
  display: block;
}

.address-option {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.address-option:last-child {
  border-bottom: 0;
}

.address-option:hover,
.address-option:focus {
  color: var(--navy);
  background: #eef5ff;
  outline: none;
}

.address-option strong,
.address-option span {
  display: block;
}

.address-option strong {
  font-size: 0.92rem;
}

.address-option span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.address-status {
  padding: 12px 14px;
  color: var(--muted);
  background: #f7faff;
  font-size: 0.84rem;
}

.address-link {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.success {
  color: #0b7a47;
  font-weight: 800;
}

.form-note.error {
  color: #b42318;
  font-weight: 800;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.chat-toggle {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 48px rgba(8, 21, 43, 0.24);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.chat-toggle:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #21c477;
  animation: livePulse 1600ms ease-out infinite;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: none;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.chat-panel.is-open {
  display: block;
  animation: chatEnter 180ms ease;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: #d8e5f8;
  font-size: 0.86rem;
}

.chat-header button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.35rem;
  cursor: pointer;
}

.chat-body {
  padding: 18px;
}

.chat-bubble {
  margin-bottom: 16px;
  padding: 13px 14px;
  border-radius: 14px 14px 14px 4px;
  color: var(--ink);
  background: #eef5ff;
  font-size: 0.94rem;
}

.chat-form {
  display: grid;
  gap: 9px;
}

.chat-form label {
  font-size: 0.82rem;
}

.chat-form input,
.chat-form textarea {
  padding: 11px 12px;
}

.chat-form button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.chat-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.chat-form p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.chat-form p.success {
  color: #0b7a47;
  font-weight: 800;
}

.chat-form p.error {
  color: #b42318;
  font-weight: 800;
}

@keyframes chatEnter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-panel {
    max-width: 720px;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: var(--radius);
    transition:
      background 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .nav-links a:hover {
    background: #eef5ff;
    transform: translateX(2px);
  }

  .nav-links .nav-cta {
    min-height: 52px;
    margin-top: 8px;
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--blue), #0b4fd9);
    box-shadow: 0 18px 36px rgba(30, 102, 255, 0.28);
    font-size: 1rem;
    text-align: center;
  }

  .nav-links .nav-cta::after {
    content: " →";
    font-weight: 800;
  }

  .faq-layout,
  .contact-grid,
  .credibility-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .service-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .industry-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .feature-wide {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 58px;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image-card {
    margin: 0;
  }

  .hero-image-card img {
    height: 210px;
  }

  .hero-image-card figcaption {
    background: var(--navy);
  }

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

  .hero-actions {
    align-items: stretch;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .main-pipeline {
    padding: 20px;
  }

  .metric-grid,
  .industry-grid,
  .service-grid,
  .pricing-grid,
  .reviews-grid,
  .lead-form,
  .contact-proof,
  .trust-band-grid,
  .review-stats {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    display: none;
  }

  .industry-slider {
    grid-auto-columns: 86%;
  }

  .industry-slide img {
    height: 180px;
  }

  .credibility-media img {
    height: 360px;
  }

  .media-stat {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px;
  }

  .result-track {
    min-height: 360px;
  }

  .result-card {
    padding: 24px;
  }

  .feature-wide,
  .form-full {
    grid-column: auto;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

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

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-toggle {
    min-height: 50px;
    padding: 12px 15px;
  }
}
