:root {
  --blue: #10108c;
  --blue-dark: #08085b;
  --accent: #303aff;
  --ink: #111827;
  --muted: #5f6472;
  --line: #d9dce8;
  --surface: #f6f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgb(16 16 140 / 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  font-family: Montserrat, Inter, Arial, sans-serif;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px 32px;
  background: rgb(255 255 255 / 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  color: #151515;
  font-weight: 700;
}

.site-nav a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--accent);
}

.phone-link {
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--blue);
}

.hero {
  min-height: 670px;
  display: grid;
  align-items: center;
  padding: 88px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(4 4 29 / 0.84), rgb(16 16 140 / 0.54), rgb(4 4 29 / 0.18)),
    url("assets/hero.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.hero p {
  max-width: 690px;
  margin-top: 18px;
  font-size: 1.2rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.blue .eyebrow,
.cta .eyebrow {
  color: #bfc5ff;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 10px 24px rgb(48 58 255 / 0.34);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 0.62);
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

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

.wide-gap {
  gap: 72px;
}

.intro p,
.split p,
.faq-grid p,
.cta p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.blue p {
  color: rgb(255 255 255 / 0.86);
}

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

.service-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.check-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.check-panel ul,
.pill-list {
  margin-top: 18px;
}

.check-panel li {
  margin-top: 8px;
}

.check-panel p {
  margin-top: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
}

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

.faq-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-grid p {
  margin-top: 12px;
}

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

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-box div {
  max-width: 800px;
}

.site-footer {
  padding: 58px 0 24px;
  color: var(--white);
  background: #050520;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
}

.site-footer img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
  color: rgb(255 255 255 / 0.75);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.copyright {
  width: min(1140px, calc(100% - 40px));
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .site-header,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .split,
  .service-card,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    max-height: 340px;
  }
}

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

  .site-header {
    padding: 12px 18px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero {
    padding: 64px 14px;
  }

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

  .section {
    padding: 58px 0;
  }

  .service-card,
  .check-panel,
  .faq-grid article {
    padding: 20px;
  }
}

.page-hero {
  padding: 110px 0 92px;
  color: var(--white);
  background: linear-gradient(90deg, rgb(4 4 29 / 0.9), rgb(16 16 140 / 0.7)), url("assets/hero.jpg") center / cover no-repeat;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgb(255 255 255 / 0.88);
  font-size: 1.16rem;
}

.content-grid,
.service-list,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-grid article,
.service-list article,
.contact-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.blue .service-list article {
  color: var(--ink);
}

.content-grid p,
.service-list p,
.contact-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.pill-list.dark span {
  color: var(--blue);
  border-color: var(--line);
  background: var(--surface);
}

@media (max-width: 860px) {
  .content-grid,
  .service-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.site-nav .active {
  color: var(--accent);
}

.page-hero {
  padding: 110px 0 92px;
  color: var(--white);
  background: linear-gradient(90deg, rgb(4 4 29 / 0.9), rgb(16 16 140 / 0.7)), url("assets/hero.jpg") center / cover no-repeat;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgb(255 255 255 / 0.88);
  font-size: 1.16rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 42px;
  align-items: start;
}

.article-content {
  display: grid;
  gap: 24px;
}

.content-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgb(16 16 140 / 0.08);
}

.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.content-section p + p,
.content-section p + ul,
.content-section p + ol,
.content-section ul + p,
.content-section ol + p {
  margin-top: 14px;
}

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 1.04rem;
}

.content-section ul,
.content-section ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.page-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.page-image img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.related {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}

.related h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.related-grid {
  display: grid;
  gap: 10px;
}

.related-grid a {
  padding: 10px 12px;
  border-radius: 6px;
  background: rgb(255 255 255 / 0.1);
}

.related-grid a:hover {
  background: rgb(255 255 255 / 0.18);
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .related {
    position: static;
  }
}

.footer-grid{grid-template-columns:1.1fr 1fr 1fr .9fr}.sab-note{margin-top:12px;font-size:.95rem}.cta-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-end}.estimate-form{display:grid;gap:16px}.estimate-form label{display:grid;gap:7px;color:var(--ink);font-weight:800}.estimate-form input,.estimate-form select,.estimate-form textarea{width:100%;min-height:48px;padding:11px 12px;border:1px solid var(--line);border-radius:6px;color:var(--ink);font:inherit;background:var(--white)}.estimate-form textarea{resize:vertical}.contact-methods{display:grid;gap:10px}.area-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.area-grid a,.text-link{color:var(--blue);font-weight:900}.area-grid a{padding:12px 14px;border:1px solid var(--line);border-radius:6px;background:var(--surface)}.blog-list{display:grid;gap:18px}.blog-list article{padding-bottom:18px;border-bottom:1px solid var(--line)}.blog-list article:last-child{padding-bottom:0;border-bottom:0}@media(max-width:860px){.footer-grid,.area-grid{grid-template-columns:1fr}.cta-actions{justify-content:flex-start}}



/* united-inspired visual refresh */
body {
  background: #ffffff;
}

.container {
  width: min(1220px, calc(100% - 48px));
}

.site-header {
  min-height: 90px;
  padding: 16px 34px;
  border-bottom-color: rgb(217 220 232 / 0.72);
  box-shadow: 0 10px 28px rgb(16 16 140 / 0.04);
}

.brand {
  gap: 10px;
}

.site-nav {
  gap: 10px 26px;
  font-size: 0.97rem;
}

.hero {
  min-height: 760px;
  padding: 96px 20px;
  background:
    linear-gradient(90deg, rgb(8 8 46 / 0.86), rgb(16 16 140 / 0.58), rgb(8 8 46 / 0.14)),
    url("assets/hero.jpg") center / cover no-repeat;
}

.hero p {
  max-width: 760px;
  margin-top: 22px;
  line-height: 1.75;
}

.page-hero {
  padding: 124px 0 108px;
  background:
    linear-gradient(90deg, rgb(8 8 46 / 0.88), rgb(16 16 140 / 0.70), rgb(8 8 46 / 0.18)),
    url("assets/hero.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 840px;
  margin-top: 22px;
  line-height: 1.75;
}

.section {
  padding: 96px 0;
}

.visual-strip {
  padding: 32px 0 6px;
}

.visual-strip-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
  gap: 20px;
}

.visual-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  min-height: 250px;
}

.visual-strip figure:first-child {
  min-height: 360px;
}

.visual-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-strip picture {
  display: block;
  width: 100%;
  height: 100%;
}

.visual-strip picture img,
.page-image picture img {
  display: block;
}

.page-image picture {
  display: block;
  width: 100%;
}

.final-callout {
  padding: 42px;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #070722, #171766 58%, #2f4fd1);
}

.final-callout h2,
.final-callout p {
  color: var(--white);
}

.final-callout .cta-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.final-callout .button.secondary {
  color: var(--white);
}

.article-layout {
  display: block;
  width: min(980px, 100%);
  margin: 0 auto;
}

.article-content {
  display: block;
}

.content-section {
  padding: 0 0 54px;
  margin: 0 0 54px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 1.12;
}

.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
  font-size: clamp(1.28rem, 2.05vw, 1.75rem);
}

.content-section p,
.content-section li {
  max-width: 840px;
  font-size: clamp(1.03rem, 1.12vw, 1.12rem);
  line-height: 1.82;
}

.content-section p + p,
.content-section p + ul,
.content-section p + ol,
.content-section ul + p,
.content-section ol + p {
  margin-top: 18px;
}

.content-section ul,
.content-section ol {
  gap: 10px;
  margin-top: 18px;
}

.page-image {
  width: min(1080px, 100%);
  margin: 14px auto 68px;
  border-radius: 18px;
  box-shadow: 0 26px 76px rgb(16 16 140 / 0.12);
}

.page-image img {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 16 / 9;
}

.service-card {
  grid-template-columns: 360px 1fr;
  gap: 38px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-card:first-child {
  border-top: 0;
}

.service-card img {
  border-radius: 18px;
  box-shadow: 0 18px 48px rgb(16 16 140 / 0.10);
}

.service-grid {
  gap: 30px;
}

.faq-grid,
.content-grid,
.service-list,
.contact-grid {
  gap: 38px 48px;
}

.faq-grid article,
.content-grid article,
.service-list article,
.contact-grid article,
.check-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.check-panel {
  padding-top: 8px;
}

.area-onepage {
  gap: 72px;
}

.area-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: start;
}

.area-intro > div:first-child,
.area-preview,
.area-card,
.area-quick-links {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.area-intro > div:first-child,
.area-preview {
  padding: 0;
}

.area-quick-links {
  position: sticky;
  top: 112px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
}

.area-quick-links a {
  background: var(--white);
  border: 1px solid var(--line);
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.area-card {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.area-card-kicker {
  margin-bottom: 10px;
}

.area-card h3 {
  font-size: 1.42rem;
}

.area-card p:not(.area-card-kicker) {
  margin-top: 10px;
  line-height: 1.75;
}

.related {
  width: min(1080px, 100%);
  margin: 68px auto 0;
  padding: 30px 32px;
  border-radius: 18px;
}

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

.related-grid a {
  padding: 14px 16px;
  border-radius: 10px;
}

.cta {
  background: linear-gradient(135deg, #070722, #171766 58%, #2f4fd1);
}

.cta-box {
  gap: 42px;
}

.site-footer {
  padding-top: 84px;
}

.site-footer img {
  width: 96px;
  height: 96px;
}

@media (max-width: 980px) {
  .visual-strip-grid,
  .area-intro,
  .area-card-grid,
  .service-card,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-strip figure,
  .visual-strip figure:first-child {
    min-height: 240px;
  }

  .area-quick-links {
    position: static;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 1220px);
  }

  .site-header {
    padding: 12px 18px;
  }

  .hero,
  .page-hero {
    padding: 80px 14px;
    min-height: auto;
  }

  .section {
    padding: 74px 0;
  }

  .content-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .area-quick-links {
    grid-template-columns: 1fr;
  }
}
/* end united-inspired visual refresh */
