:root {
  --navy-950: #071521;
  --navy-900: #0b1f33;
  --navy-850: #0f2a43;
  --navy-800: #163b5c;
  --blue-600: #1681c4;
  --blue-500: #1e97dc;
  --blue-100: #eaf6fc;
  --orange-600: #cf651f;
  --orange-500: #e7782c;
  --orange-100: #fff1e7;
  --slate-900: #17212b;
  --slate-800: #243240;
  --slate-700: #3d4b58;
  --slate-600: #5b6874;
  --slate-500: #74818d;
  --slate-300: #cbd5dc;
  --slate-200: #dde5ea;
  --slate-100: #edf2f5;
  --slate-50: #f7f9fa;
  --white: #ffffff;

  --shadow-sm: 0 8px 24px rgba(7, 21, 33, 0.08);
  --shadow-md: 0 18px 44px rgba(7, 21, 33, 0.12);
  --shadow-lg: 0 28px 80px rgba(7, 21, 33, 0.18);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--blue-100);
  color: var(--navy-950);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 74px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-180%);
  box-shadow: var(--shadow-sm);
}

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

.practice-notice {
  position: relative;
  z-index: 120;
  color: #d7e5ef;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.practice-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 35px;
  padding-block: 6px;
}

.practice-notice p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}

.practice-notice__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #85c9ec;
  box-shadow: 0 0 0 4px rgba(133, 201, 236, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  backdrop-filter: blur(12px);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: var(--navy-900);
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 11px;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 9.5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  position: fixed;
  inset: 108px 16px auto;
  display: grid;
  gap: 2px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 180ms ease;
}

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

.primary-nav a {
  padding: 12px 13px;
  color: var(--slate-700);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--navy-900);
  background: var(--slate-50);
}

.nav-toggle {
  display: grid;
  width: 45px;
  height: 45px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--slate-200);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 999px;
  transition: 180ms ease;
}

.nav-toggle {
  gap: 0;
}

.nav-toggle span + span {
  margin-top: -10px;
}

.nav-toggle span:nth-child(3) {
  margin-top: -10px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.desktop-call {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(30, 151, 220, 0.3);
  outline-offset: 3px;
}

.button--primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 10px 22px rgba(207, 101, 31, 0.22);
}

.button--primary:hover {
  background: #b95719;
  box-shadow: 0 14px 28px rgba(207, 101, 31, 0.28);
}

.button--secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--slate-200);
}

.button--secondary:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
}

.button--call {
  color: var(--white);
  background: var(--navy-900);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(30, 151, 220, 0.11), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(22, 129, 196, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(22, 129, 196, 0.025),
    0 0 0 88px rgba(22, 129, 196, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow__icon {
  color: var(--orange-500);
  font-size: 9px;
}

.hero h1,
.section-heading h2,
.area-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 15px 0 0;
  color: var(--navy-950);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 9vw, 4.75rem);
}

.hero-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--slate-600);
  font-size: 16px;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.trust-item {
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}

.trust-item strong {
  color: var(--navy-900);
  font-size: 14px;
}

.trust-item small {
  display: block;
  margin-top: 2px;
  color: var(--slate-600);
  font-size: 11px;
  line-height: 1.45;
}

.trust-item__top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #f3a51a;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.stock-photo {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  min-height: 390px;
  padding: 22px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(5, 17, 28, 0.05) 25%, rgba(5, 17, 28, 0.88) 100%),
    linear-gradient(135deg, #2b5b78 0%, #17384f 38%, #7b8f99 39%, #cad4d9 62%, #587081 63%, #17364d 100%);
  box-shadow: var(--shadow-lg);
}

.stock-photo::before {
  content: "";
  position: absolute;
  inset: 12% 14% auto auto;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 0 0 9px rgba(7, 21, 33, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.stock-photo::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 10%;
  width: 32%;
  height: 54%;
  border-radius: 16px 16px 5px 5px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.16) 0 15%, transparent 15% 22%, rgba(255,255,255,.12) 22% 40%, transparent 40% 46%, rgba(255,255,255,.13) 46% 64%, transparent 64% 71%, rgba(255,255,255,.12) 71% 100%),
    rgba(11, 31, 51, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stock-photo__overlay {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  max-width: 360px;
}

.stock-photo__label {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  color: #d9edf8;
  background: rgba(11, 31, 51, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stock-photo strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.stock-photo small {
  color: #d3dee6;
  font-size: 11px;
}

.hero-card {
  position: relative;
  z-index: 4;
  display: flex;
  width: calc(100% - 34px);
  max-width: 360px;
  align-items: flex-start;
  gap: 12px;
  margin: -24px auto 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.hero-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 11px;
  font-size: 18px;
}

.hero-card div {
  display: grid;
}

.hero-card strong {
  color: var(--navy-900);
  font-size: 13px;
}

.hero-card span {
  color: var(--slate-600);
  font-size: 11px;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  gap: 16px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.area-copy h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #bfd7e5;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 14px;
}

.service-icon--warm {
  color: var(--orange-600);
  background: var(--orange-100);
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3,
.proof-card h3,
.review-placeholder h3,
.process-card h3 {
  margin: 19px 0 0;
  color: var(--navy-900);
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 10px 0 22px;
  color: var(--slate-600);
  font-size: 13px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.service-card--general {
  background:
    linear-gradient(145deg, rgba(22, 129, 196, 0.06), rgba(231, 120, 44, 0.04)),
    var(--white);
}

.area-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.area-copy > p {
  margin: 18px 0 0;
  color: var(--slate-600);
  font-size: 14px;
}

.address-card {
  display: flex;
  gap: 13px;
  margin-top: 24px;
  padding: 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 15px;
}

.address-card__pin {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 11px;
}

.address-card div {
  display: grid;
  line-height: 1.35;
}

.address-card small {
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.address-card strong {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 13px;
}

.address-card span {
  color: var(--slate-600);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  gap: 6px;
  margin-top: 16px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.service-map {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #eef4f6;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 51, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 51, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotate(-8deg) scale(1.2);
}

.map-road {
  position: absolute;
  z-index: 1;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: #d6dfe3;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(11, 31, 51, 0.06);
}

.map-road--one {
  top: 40%;
  left: -12%;
  width: 130%;
  transform: rotate(-12deg);
}

.map-road--two {
  top: 55%;
  left: -18%;
  width: 145%;
  transform: rotate(28deg);
}

.map-road--three {
  top: 22%;
  left: 24%;
  width: 80%;
  transform: rotate(72deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
}

.map-pin span {
  color: var(--orange-500);
}

.map-pin--main {
  top: 37%;
  left: 18%;
}

.map-pin--secondary {
  top: 58%;
  right: 15%;
}

.map-note {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 4;
  display: grid;
  padding: 13px 14px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.map-note strong {
  font-size: 12px;
}

.map-note span {
  color: var(--slate-600);
  font-size: 10px;
}

.trust-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(30, 151, 220, 0.16), transparent 31%),
    radial-gradient(circle at 95% 100%, rgba(231, 120, 44, 0.12), transparent 28%),
    var(--navy-950);
}

.section-heading--light h2,
.contact-copy h2 {
  color: var(--white);
}

.section-heading--light p {
  color: #bac9d3;
}

.section-kicker--light {
  color: #81c7ee;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-card {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 17px;
}

.proof-card--rating {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.rating-big {
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stars--large {
  font-size: 15px;
}

.proof-card h3 {
  color: var(--white);
}

.proof-card p,
.proof-card--rating p {
  margin: 8px 0 0;
  color: #b9c7d1;
  font-size: 12px;
}

.proof-card--rating strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.proof-card__badge {
  display: inline-grid;
  min-width: 48px;
  min-height: 34px;
  padding: 4px 8px;
  place-items: center;
  color: #cceeff;
  background: rgba(30, 151, 220, 0.12);
  border: 1px solid rgba(130, 202, 240, 0.22);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.review-placeholder {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 17px;
}

.review-placeholder h3 {
  margin-top: 8px;
  color: var(--white);
}

.review-placeholder p {
  margin: 0;
  color: #c4d0d8;
  font-size: 13px;
  font-style: italic;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.process-number {
  display: inline-flex;
  color: var(--blue-600);
  font-family: Manrope, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-card h3 {
  margin-top: 12px;
}

.process-card p {
  margin: 9px 0 0;
  color: var(--slate-600);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  gap: 30px;
}

.faq-intro p {
  margin: 16px 0 22px;
  color: var(--slate-600);
  font-size: 14px;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}

.faq-list summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 17px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 8px;
  font-size: 17px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 17px 16px;
}

.faq-answer p {
  margin: 0;
  color: var(--slate-600);
  font-size: 13px;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(22, 129, 196, 0.08), transparent 40%),
    var(--navy-900);
}

.contact-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.contact-copy > p {
  margin: 17px 0 0;
  color: #c1d0da;
  font-size: 14px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  color: var(--white);
  text-decoration: none;
}

.contact-phone__icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(207, 101, 31, 0.2);
}

.contact-phone span:last-child {
  display: grid;
}

.contact-phone small {
  color: #9fb5c5;
  font-size: 11px;
}

.contact-phone strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.contact-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-facts div {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-facts small,
.contact-facts strong {
  display: block;
}

.contact-facts small {
  color: #89a5b8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-facts strong {
  margin-top: 4px;
  color: #eaf2f6;
  font-size: 12px;
  font-weight: 600;
}

.lead-form {
  position: relative;
  padding: 22px;
  color: var(--slate-900);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.demo-label {
  display: inline-flex;
  padding: 5px 8px;
  color: #8e4a17;
  background: var(--orange-100);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 11px 0 0;
  color: var(--navy-900);
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.form-heading p {
  margin: 7px 0 20px;
  color: var(--slate-600);
  font-size: 11px;
}

.field-grid {
  display: grid;
  gap: 13px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
}

.field label {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--slate-300);
  color: var(--slate-900);
  background: var(--white);
  border-radius: 11px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 47px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 120px;
  padding: 11px 12px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #99a4ad;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(30, 151, 220, 0.10);
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 11px;
  text-align: center;
}

.form-status.is-success {
  color: #28734b;
}

.form-status.is-error {
  color: #9d3c30;
}

.site-footer {
  padding: 50px 0 92px;
  color: #b8c6cf;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand-copy small {
  color: #96aab8;
}

.footer-brand > p {
  max-width: 320px;
  margin: 15px 0 0;
  color: #91a5b4;
  font-size: 12px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: #9eb1bf;
  font-size: 12px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #728b9a;
  font-size: 9px;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 10px;
  left: 12px;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 55px;
  border: 1px solid rgba(7, 21, 33, 0.08);
  border-radius: 15px;
  box-shadow: 0 16px 38px rgba(7, 21, 33, 0.22);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta__call {
  color: var(--white);
  background: var(--orange-600);
}

.mobile-cta__estimate {
  color: var(--navy-900);
  background: var(--white);
}

@media (min-width: 560px) {
  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

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

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

  .review-placeholder {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (min-width: 820px) {
  .section-pad {
    padding: 96px 0;
  }

  .nav-shell {
    min-height: 78px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav a {
    padding: 10px 9px;
    font-size: 12px;
  }

  .desktop-call {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.78fr);
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
  }

  .stock-photo {
    min-height: 500px;
  }

  .section-heading {
    grid-template-columns: 1.1fr 0.8fr;
    gap: 50px;
  }

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

  .area-grid {
    grid-template-columns: 0.8fr 1.1fr;
    gap: 70px;
  }

  .service-map {
    min-height: 430px;
  }

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

  .proof-card--rating {
    grid-column: auto;
  }

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

  .faq-layout {
    grid-template-columns: 0.72fr 1.2fr;
    gap: 72px;
  }

  .faq-intro {
    position: sticky;
    top: 130px;
    align-self: start;
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.05fr;
    gap: 76px;
  }

  .lead-form {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.8fr 0.8fr 0.65fr;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (min-width: 1080px) {
  .primary-nav {
    gap: 7px;
  }

  .primary-nav a {
    padding-inline: 10px;
    font-size: 12.5px;
  }

  .desktop-call {
    padding-inline: 17px;
    font-size: 13px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .service-card {
    padding: 24px;
  }
}

@media (max-width: 379px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    max-width: 170px;
    font-size: 8.6px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .nav-toggle {
    width: 41px;
    height: 41px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .stock-photo {
    min-height: 350px;
  }

  .mobile-cta {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .mobile-cta a {
    padding-inline: 8px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
