:root {
  --blue-980: #081e37;
  --blue-950: #0d2f57;
  --blue-900: #12477f;
  --blue-800: #1761ad;
  --blue-700: #2d82da;
  --blue-100: #e8f3ff;
  --blue-050: #f7fbff;
  --white: #ffffff;
  --ink-950: #0c1c2d;
  --ink-900: #12263a;
  --ink-700: #4c6177;
  --ink-500: #6f8498;
  --line: rgba(18, 71, 127, 0.12);
  --line-strong: rgba(18, 71, 127, 0.2);
  --shadow-lg: 0 28px 70px rgba(8, 30, 55, 0.14);
  --shadow-md: 0 16px 36px rgba(8, 30, 55, 0.1);
  --shadow-sm: 0 10px 24px rgba(8, 30, 55, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(45, 130, 218, 0.15), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #f1f7fd 50%, #edf4fb 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.22;
}

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

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  background: var(--blue-950);
  color: var(--white);
  z-index: 2000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  color: var(--ink-950);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), #4da0f1);
  box-shadow: 0 16px 30px rgba(23, 97, 173, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(23, 97, 173, 0.34);
}

.btn-secondary {
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(18, 71, 127, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(18, 71, 127, 0.34);
  box-shadow: 0 18px 34px rgba(8, 30, 55, 0.14);
}

.btn-text {
  color: var(--blue-900);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(249, 251, 255, 0.88);
  border-bottom: 1px solid rgba(18, 71, 127, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(8, 30, 55, 0.08);
}

.topbar {
  background: var(--blue-980);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.topbar-inner,
.nav-wrap,
.hero-grid,
.split-layout,
.service-area-layout,
.contact-layout,
.footer-grid,
.cta-banner,
.field-row,
.stats-inline,
.team-grid,
.contact-split {
  display: grid;
  gap: 1.5rem;
}

.topbar-inner {
  grid-template-columns: 1fr auto;
  padding: 0.75rem 0;
}

.topbar a,
.topbar-inner p {
  color: var(--white);
  font-weight: 700;
}

.nav-wrap {
  position: relative;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--ink-500);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--blue-900), #59a8f6);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(18, 71, 127, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}

.site-nav a {
  color: var(--ink-700);
  font-weight: 700;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-900);
}

.nav-cta {
  margin-left: 0.4rem;
}

a.btn.btn-primary.nav-cta {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.4rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--blue-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 3.7rem 0 2.6rem;
}

.hero-backdrop,
.page-hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-backdrop {
  position: absolute;
  inset: 1.5rem 1rem auto;
  min-height: 44rem;
  background:
    linear-gradient(112deg, rgba(8, 30, 55, 0.96) 0%, rgba(8, 30, 55, 0.82) 44%, rgba(8, 30, 55, 0.44) 100%),
    url('https://images.pexels.com/photos/6419128/pexels-photo-6419128.jpeg?cs=srgb&dl=pexels-anilkarakaya-6419128.jpg&fm=jpg') center/cover no-repeat;
}

.hero-backdrop::after,
.page-hero-shell::after {
  content: '';
  position: absolute;
  inset: auto 3rem 2.5rem auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 160, 241, 0.4) 0%, rgba(77, 160, 241, 0) 72%);
}

.hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 24rem);
  align-items: end;
  min-height: 44rem;
  padding: 3.5rem 0;
}

.hero-copy,
.hero-panel,
.page-hero-copy,
.page-hero-side,
.content-card,
.media-card,
.testimonial-card,
.info-card,
.map-card,
.form-card,
.cta-banner,
.trust-grid,
.stats-band,
.footer-card,
.service-card,
.service-detail,
.demo-promo,
.quote-card,
.trust-panel,
.coverage-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  max-width: 46rem;
  padding: 2rem 2rem 2.4rem;
  color: var(--white);
}

.hero-copy h1,
.hero-copy p,
.hero-copy li,
.hero-copy .eyebrow,
.page-hero-copy h1,
.page-hero-copy p,
.page-hero-copy li,
.page-hero-copy .eyebrow {
  color: var(--white);
}

.hero-copy .eyebrow::before,
.page-hero-copy .eyebrow::before,
.cta-banner .eyebrow::before,
.demo-promo-copy .eyebrow::before {
  background: rgba(255, 255, 255, 0.72);
}

.hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-bottom: 0.9rem;
  font-size: 1.18rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
}

.hero-lead {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions,
.demo-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin: 2rem 0 1.2rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1.1rem;
  margin-bottom: 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 800;
}

.hero-points,
.feature-list,
.service-benefits,
.footer-links,
.bullet-list {
  display: grid;
  gap: 0.72rem;
}

.hero-points li,
.feature-list li,
.service-benefits li,
.footer-links li,
.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points li {
  color: rgba(255, 255, 255, 0.88);
}

.hero-points li::before,
.feature-list li::before,
.service-benefits li::before,
.footer-links li::before,
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--blue-700);
}

.hero-panel,
.page-hero-side,
.quote-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.metric-card,
.mini-stat,
.quote-card,
.trust-pill {
  border-radius: var(--radius-md);
}

.metric-card {
  padding: 1.4rem;
  background: linear-gradient(180deg, #fffaf2, #ffffff);
}

.metric-card span,
.stats-band strong,
.metric-list strong,
.mini-stat strong,
.trust-value {
  display: block;
  color: var(--blue-900);
  font-family: 'Sora', sans-serif;
}

.metric-card span {
  font-size: 1.7rem;
}

.metric-list,
.mini-proof,
.mini-proof-grid {
  display: grid;
  gap: 1rem;
}

.metric-list {
  margin-top: 1rem;
}

.metric-list article,
.mini-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.hero-panel-note {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #eef7ff, #ffffff);
  border: 1px solid var(--line);
}

.hero-panel-label {
  color: var(--blue-900);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-actions {
  display: grid;
  gap: 0.7rem;
}

.mini-stat strong {
  font-size: 1.5rem;
}

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

.trust-bar {
  padding-bottom: 2rem;
}

.trust-grid,
.card-grid,
.review-grid,
.city-grid,
.team-grid {
  display: grid;
  gap: 1.25rem;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
}

.trust-item {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.95rem;
  align-items: center;
  min-height: 100%;
  padding: 0.55rem 0.35rem;
}

.trust-icon,
.info-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  min-width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--blue-100), #d9ecff);
  color: var(--blue-950);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink-950);
  font-size: 1rem;
  line-height: 1.15;
}

.trust-item p {
  color: var(--ink-700);
  font-size: 0.93rem;
  line-height: 1.45;
}

.section {
  padding: 6rem 0;
}

.section-tight {
  padding-top: 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(233, 243, 255, 0.5), rgba(255, 255, 255, 0.78));
}

.section-head {
  max-width: 48rem;
  margin-bottom: 2.6rem;
}

.section-head h2,
.content-card h2,
.service-detail-copy h2,
.form-card h2,
.footer-card h3,
.demo-promo-copy h2,
.page-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p {
  margin-top: 1rem;
}

.cta-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.55rem 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.cta-ribbon p:last-child {
  margin-top: 0.7rem;
}

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

.service-card,
.info-card,
.testimonial-card,
.content-card,
.media-card,
.map-card,
.form-card,
.service-detail,
.footer-card,
.trust-panel,
.coverage-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
}

.service-card,
.testimonial-card,
.info-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.testimonial-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(8, 30, 55, 0.16);
}

.service-card img,
.team-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.service-card-body,
.info-card,
.testimonial-card,
.content-card,
.form-card,
.trust-panel,
.coverage-card {
  padding: 1.55rem;
}

.service-chip {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-body h3,
.info-card h3,
.testimonial-card strong,
.team-card h3 {
  font-size: 1.28rem;
}

.service-card-body p {
  margin-top: 0.7rem;
}

.service-benefits {
  margin-top: 1rem;
}

.split-layout,
.service-area-layout,
.contact-layout,
.contact-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-layout-reverse .content-card {
  order: 1;
}

.split-layout-reverse .media-card {
  order: 2;
}

.media-card {
  overflow: hidden;
}

.media-card img,
.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

.content-card,
.form-card {
  padding: 2rem;
}

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

.mini-card,
.stat-box {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.stat-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-900);
  font-family: 'Sora', sans-serif;
  font-size: 1.55rem;
}

.cta-section {
  padding-top: 1rem;
}

.cta-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(8, 30, 55, 0.97), rgba(18, 71, 127, 0.9)),
    url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.cta-banner h2,
.cta-banner p,
.cta-banner .eyebrow,
.demo-promo-copy h2,
.demo-promo-copy p,
.demo-promo-copy .eyebrow {
  color: var(--white);
}

.page-hero {
  padding: 4rem 0 3rem;
}

.page-hero-shell {
  background:
    linear-gradient(115deg, rgba(8, 30, 55, 0.95) 4%, rgba(8, 30, 55, 0.82) 46%, rgba(8, 30, 55, 0.48) 100%);
}

.page-hero-services {
  background: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-hero-about {
  background: url('https://images.pexels.com/photos/6169002/pexels-photo-6169002.jpeg?cs=srgb&dl=pexels-tima-miroshnichenko-6169002.jpg&fm=jpg') center/cover no-repeat;
}

.page-hero-reviews {
  background: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-hero-area {
  background: url('https://images.unsplash.com/photo-1514565131-fce0801e5785?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-hero-contact {
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-hero-inner {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  max-width: none;
}

.page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 22rem);
  gap: 1.6rem;
  align-items: stretch;
  padding: 2.1rem;
}

.page-hero-copy {
  padding: 1.2rem 0.3rem 0.7rem;
}

.page-hero-copy p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero-copy .hero-actions {
  margin: 1.6rem 0 0;
}

.page-hero-side {
  display: grid;
  gap: 1rem;
}

.page-hero-side .mini-stat {
  background: rgba(255, 255, 255, 0.98);
}

.stack-layout,
.service-stack {
  display: grid;
  gap: 1.6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.service-detail-copy {
  padding: 2rem;
}

.service-cta-inline,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

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

.testimonial-card {
  display: grid;
  gap: 1rem;
}

.stars {
  color: #f3b646;
  letter-spacing: 0.15em;
}

.testimonial-card span {
  display: block;
  color: var(--ink-500);
  font-size: 0.94rem;
}

.review-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.7rem;
}

.quote-card {
  background:
    linear-gradient(135deg, rgba(8, 30, 55, 0.97), rgba(18, 71, 127, 0.92)),
    url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.quote-card h2,
.quote-card p,
.quote-card .eyebrow {
  color: var(--white);
}

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

.stats-band article {
  padding: 1rem;
}

.stats-band strong {
  font-size: 2rem;
}

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

.city-grid span {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--blue-100);
  color: var(--blue-950);
  font-weight: 700;
  text-align: center;
}

.map-card,
.form-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 30rem;
  border: 0;
}

.contact-stack {
  display: grid;
  gap: 1.25rem;
}

.estimate-form,
.field-row label,
.estimate-form label {
  display: grid;
  gap: 0.6rem;
}

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

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(18, 71, 127, 0.16);
  background: #fcfdff;
  color: var(--ink-900);
}

.estimate-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
  color: var(--ink-500);
}

.urgency-strip {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--blue-100);
}

.urgency-strip strong {
  color: var(--blue-950);
}

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

.team-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.team-card-body {
  padding: 1.35rem;
}

.trust-panel {
  display: grid;
  gap: 1rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: var(--blue-100);
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.coverage-card {
  display: grid;
  gap: 1rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #0d2139;
  color: rgba(255, 255, 255, 0.88);
}

.demo-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.8rem 1.95rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(77, 160, 241, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  align-items: start;
}

.footer-copy,
.site-footer .footer-links a,
.site-footer .footer-links li,
.site-footer p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-links li::before {
  background: #5eaef8;
}

.footer-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
}

.footer-card .eyebrow,
.footer-card h3,
.footer-card p {
  color: var(--white);
}

.footer-card a.btn.btn-primary {
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--blue-900), #3590ea);
  color: var(--white);
  box-shadow: 0 22px 40px rgba(23, 97, 173, 0.3);
  z-index: 950;
}

.floating-call span {
  font-size: 0.8rem;
  opacity: 0.84;
}

.floating-call strong {
  font-size: 0.98rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy.reveal.is-visible {
    background: linear-gradient(180deg, #ffffff00, #4da0f1);
    border: 0;
}
.section-action.reveal.is-visible a.btn.btn-secondary {
    margin-top: 30px;
}
article.info-card.reveal.is-visible span.info-icon {
    margin-bottom: 10px;
}
.cta-actions {
    margin-top: 20px;
}

@media (max-width: 1100px) {
  .services-grid,
  .review-grid,
  .team-grid,
  .footer-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .service-area-layout,
  .contact-layout,
  .contact-split,
  .hero-grid,
  .cta-banner,
  .cta-ribbon,
  .demo-promo,
  .review-highlight,
  .page-hero-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .topbar-inner,
  .field-row,
  .review-grid,
  .stats-band,
  .trust-grid,
  .city-grid,
  .services-grid,
  .reasons-grid,
  .footer-grid,
  .stats-inline,
  .team-grid,
  .mini-proof-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.75rem;
    justify-items: start;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .hero-section {
    padding-top: 1.5rem;
  }

  .hero-backdrop {
    inset: 1rem 0.75rem auto;
    min-height: 49rem;
    border-radius: 1.6rem;
  }

  .hero-grid {
    min-height: 49rem;
    padding: 2.2rem 0;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-content,
  .content-card,
  .form-card,
  .cta-banner,
  .cta-ribbon,
  .demo-promo,
  .service-detail-copy {
    padding: 1.4rem;
  }

  .hero-kicker-row {
    gap: 0.55rem;
  }

  .hero-kicker {
    font-size: 0.74rem;
  }

  .section,
  .page-hero {
    padding: 4rem 0;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail-media img,
  .media-card img {
    min-height: 18rem;
  }

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

  .topbar-inner {
    gap: 0.2rem;
    grid-template-columns: 1fr auto !important;
  }

  p {
    line-height: 1.55;
  }

  .floating-call {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.82rem 0.95rem;
  }
}

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

  .reveal,
  .btn,
  .service-card,
  .testimonial-card,
  .info-card,
  .site-nav,
  .nav-toggle span {
    transition: none;
  }
}
