:root {
  --red: #c91d23;
  --blue: #185aa8;
  --navy: #101827;
  --text: #151820;
  --muted: #5b6472;
  --line: #dfe4ed;
  --paper: #ffffff;
  --bg: #f5f7fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 8px clamp(18px, 4vw, 64px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 24, 39, 0.06);
}

.hero {
  min-height: 640px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.96) 0%, rgba(16, 24, 39, 0.82) 36%, rgba(16, 24, 39, 0.18) 68%),
    url("assets/hero-home-background.png") center right / cover no-repeat,
    #101827;
  color: #fff;
}

.nav,
.heroContent,
.intro,
.process,
.services,
.faq,
.cta,
.footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.logoLink {
  width: min(210px, 48vw);
  display: block;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.navToggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menuButton {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.menuButton span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--navy);
}

.navLinks {
  display: flex;
  gap: 10px;
  font-weight: 800;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navLinks a {
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.navLinks .navCall {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.heroContent {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 28px;
  align-items: start;
}

.heroCopy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta .eyebrow {
  color: #ff6b70;
}

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

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.serviceArea {
  max-width: 600px;
  margin: 16px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
}

.actions,
.ctaLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin-top: 32px;
}

.button,
.ctaLinks a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-weight: 900;
  border: 2px solid transparent;
}

.primary,
.ctaLinks a:first-child {
  background: var(--red);
  color: #fff;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.contactCard {
  width: min(520px, 100%);
  padding: 22px 0 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-width: 1px 0 0;
}

.contactCard span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contactCard a {
  display: inline-block;
  margin-top: 10px;
  margin-right: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.trustStrip {
  width: 100%;
  padding: 18px clamp(18px, 4vw, 64px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.trustStrip p {
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  line-height: 1.5;
  border-left: 1px solid var(--line);
}

.trustStrip p:first-child {
  border-left: 0;
}

.trustStrip strong {
  color: var(--navy);
  margin-right: 6px;
}

.intro {
  padding: 76px clamp(18px, 4vw, 64px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.introCopy p:not(.eyebrow),
.sectionTitle p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.introCopy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
}

.introChecklist {
  display: grid;
  gap: 0;
  padding-top: 34px;
}

.introChecklist p {
  margin: 0;
  padding: 18px 0;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--line);
}

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

.whyChoose {
  width: min(1120px, 100%);
  margin: 44px auto 0;
  padding: 0 clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.whyChoose article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.whyChoose h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.whyChoose p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.sectionTitle {
  margin-bottom: 30px;
  max-width: 820px;
}

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

.sectionTitle p {
  margin: 18px 0 0;
}

.process,
.services,
.faq {
  padding: 72px clamp(18px, 4vw, 64px) 0;
}

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

.processGrid article {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.processGrid span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.processGrid h3 {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.processGrid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.serviceAccordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  align-items: start;
}

.serviceColumn {
  display: grid;
  gap: 12px;
  align-content: start;
}

.servicePanel {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.servicePanel:hover {
  border-color: #c9d3e4;
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
}

.servicePanel summary {
  min-height: 120px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 38px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.servicePanel summary span {
  display: grid;
  gap: 7px;
  align-content: center;
  min-width: 0;
}

.servicePanel summary strong {
  display: block;
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.15;
}

.servicePanel summary small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  max-width: 36rem;
}

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

.servicePanel summary::after {
  content: "+";
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 3px;
}

.servicePanel[open] summary::after {
  content: "-";
  background: var(--red);
}

.servicePanel summary img {
  width: 104px;
  height: 104px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #f7f8fb;
  border: 1px solid var(--line);
}

.panelBody {
  padding: 0 28px 26px 134px;
  border-top: 1px solid var(--line);
}

.panelBody p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faqList {
  display: grid;
  gap: 12px;
}

.faqList details {
  background: var(--paper);
  border: 1px solid var(--line);
}

.faqList summary {
  padding: 20px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.faqList p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  margin-top: 72px;
  margin-bottom: 0;
  padding: clamp(28px, 5vw, 44px);
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta h2 {
  color: #fff;
}

.ctaLinks {
  justify-content: flex-end;
}

.ctaLinks a {
  background: #fff;
  color: var(--navy);
  min-width: 150px;
}

.footer {
  padding: 34px clamp(18px, 4vw, 64px) 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}

.footer img {
  width: min(260px, 60vw);
  display: block;
}

.footer p {
  max-width: 520px;
  margin: 14px 0 0;
  line-height: 1.55;
}

.footer a {
  display: block;
  color: var(--navy);
  font-weight: 900;
  text-align: right;
  line-height: 1.6;
}

.mobileCallBar {
  display: none;
}

@media (max-width: 980px) {
  .heroContent,
  .trustStrip,
  .intro,
  .whyChoose,
  .processGrid,
  .serviceAccordion,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(16, 24, 39, 0.96), rgba(16, 24, 39, 0.72)),
      url("assets/hero-home-background.png") center right / cover no-repeat,
      #101827;
  }

  .trustStrip {
    gap: 0;
  }

  .trustStrip p {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trustStrip p:first-child {
    border-top: 0;
  }

  .introChecklist {
    padding-top: 0;
  }

  .ctaLinks {
    justify-content: flex-start;
  }

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

  .footer a {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 76px;
  }

  .siteHeader {
    padding: 8px 14px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 10px;
  }

  .logoLink {
    width: min(100%, 150px);
  }

  .menuButton {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-self: end;
    border-color: #cbd5e1;
  }

  .navToggle:checked ~ .menuButton {
    border-color: var(--blue);
  }

  .navToggle:checked ~ .navLinks {
    display: grid;
  }

  .navLinks,
  .navLinks a,
  .ctaLinks a {
    width: 100%;
  }

  .navLinks {
    grid-column: 1 / -1;
    display: none;
    gap: 0;
    padding: 10px 0 2px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .navLinks a {
    min-height: 46px;
    padding: 12px 14px;
    border-width: 0 0 1px;
    text-align: center;
    font-size: 0.95rem;
  }

  .navLinks .navCall {
    margin-top: 8px;
    border: 0;
    background: var(--red);
    color: #fff;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 1.05;
  }

  .sectionTitle {
    margin-bottom: 24px;
  }

  .sectionTitle p,
  .introCopy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero {
    padding: 54px 18px;
  }

  .actions {
    margin-top: 26px;
  }

  .actions .primary,
  .contactCard {
    display: none;
  }

  .actions .secondary {
    width: 100%;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .intro {
    padding-top: 54px;
  }

  .services {
    padding-top: 54px;
  }

  .process,
  .faq {
    padding-top: 54px;
  }

  .servicePanel summary {
    min-height: auto;
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 10px;
    font-size: 1rem;
  }

  .servicePanel summary strong {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .servicePanel summary small {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .servicePanel summary img {
    width: 58px;
    height: 58px;
  }

  .servicePanel summary::after {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .panelBody {
    padding: 0 14px 18px;
  }

  .panelBody p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .mobileCallBar {
    min-height: 54px;
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(16, 24, 39, 0.28);
    font-size: 1rem;
    font-weight: 900;
  }
}
