:root {
  --Blue950: #061847;
  --Blue900: #082F89;
  --Blue700: #0A4DB8;
  --Red600: #D91F3F;
  --Ink: #182033;
  --Muted: #5D667A;
  --Line: #DCE2EF;
  --Surface: #F5F7FB;
  --White: #FFFFFF;
  --Shadow: 0 22px 60px rgba(6, 24, 71, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.SkipLink {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  color: var(--White);
  background: var(--Blue900);
  transition: top 0.2s ease;
}

.SkipLink:focus {
  top: 1rem;
}

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

.SiteHeader {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 226, 239, 0.9);
  backdrop-filter: blur(14px);
}

.HeaderInner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
}

.Brand {
  flex: 0 1 300px;
  min-width: 190px;
}

.Brand img {
  width: min(300px, 100%);
  height: auto;
}

.MainNav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  color: var(--Blue950);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.MainNav a,
.FooterGrid a {
  text-decoration: none;
}

.MainNav a:hover,
.FooterGrid a:hover {
  color: var(--Red600);
}

.HeaderCTA,
.Button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.HeaderCTA {
  flex: 0 0 auto;
  gap: 0.5rem;
  color: var(--White);
  background: var(--Blue900);
  white-space: nowrap;
  font-size: 0.92rem;
}

.HeaderCTAIcon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.HeaderCTAText {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
}

.HeaderCTAHours {
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.88;
}

.ButtonPrimary {
  color: var(--White);
  background: var(--Red600);
}

.ButtonSecondary {
  color: var(--Blue900);
  background: var(--White);
  border-color: var(--Line);
}

.HeaderCTA:hover,
.ButtonPrimary:hover {
  background: var(--Blue950);
}

.ButtonSecondary:hover {
  border-color: var(--Blue700);
}

.Hero {
  color: var(--White);
  background:
    linear-gradient(110deg, rgba(6, 24, 71, 0.96) 0%, rgba(8, 47, 137, 0.9) 54%, rgba(217, 31, 63, 0.78) 100%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.24), transparent 30%);
}

.HeroGrid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 3.5rem;
  padding-block: 5rem;
}

.Eyebrow {
  margin: 0 0 0.8rem;
  color: var(--Red600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.Hero .Eyebrow,
.ContactSection .Eyebrow {
  color: #FFBDC9;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 5.2vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
  font-size: 1.25rem;
}

.HeroLead {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.HeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.TrustRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 2.8rem 0 0;
}

.TrustRow div {
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
}

.TrustRow dt {
  font-weight: 900;
}

.TrustRow dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.ConsultPanel {
  padding: 2rem;
  color: var(--Ink);
  background: var(--White);
  border-top: 5px solid var(--Red600);
  border-radius: 8px;
  box-shadow: var(--Shadow);
}

.ConsultPanel h2 {
  color: var(--Blue950);
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.ConsultPanel p {
  color: var(--Muted);
}

.PanelTopline {
  margin-bottom: 0.65rem;
  color: var(--Red600);
  font-weight: 900;
  text-transform: uppercase;
}

.CheckList {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.CheckList li {
  position: relative;
  padding-left: 1.7rem;
  font-weight: 700;
}

.CheckList li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.05rem;
  height: 1.05rem;
  content: "";
  border-radius: 50%;
  background: var(--Red600);
  box-shadow: inset 0 0 0 4px var(--White);
  outline: 1px solid var(--Red600);
}

.PanelLink {
  color: var(--Blue900);
  font-weight: 900;
}

.IntroSection,
.ServicesSection,
.WhySection,
.ProcessSection,
.ContactSection {
  padding-block: 5.5rem;
}

.IntroGrid,
.WhyGrid,
.ContactGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.IntroGrid p:last-child,
.WhyCopy p,
.ContactGrid p {
  margin: 0;
  color: var(--Muted);
  font-size: 1.08rem;
}

.SectionHeading {
  max-width: 760px;
  margin-bottom: 2.3rem;
}

.ServicesSection,
.ProcessSection {
  background: var(--Surface);
}

.ServiceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ServiceCard {
  min-height: 250px;
  padding: 1.5rem;
  background: var(--White);
  border: 1px solid var(--Line);
  border-radius: 8px;
}

.ServiceCard span {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--Red600);
  font-weight: 900;
}

.ServiceCard h3 {
  color: var(--Blue950);
}

.ServiceCard p,
.ProcessList p,
.ReasonsList p {
  color: var(--Muted);
}

.WhySection {
  background: var(--Blue950);
  color: var(--White);
}

.WhyCopy {
  position: sticky;
  top: 130px;
}

.WhyCopy p {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}

.ReasonsList {
  display: grid;
  gap: 1rem;
}

.ReasonsList article {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.ReasonsList strong {
  display: block;
  font-size: 1.12rem;
}

.ReasonsList p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.ProcessList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ProcessList li {
  padding: 1.4rem;
  background: var(--White);
  border: 1px solid var(--Line);
  border-radius: 8px;
}

.ProcessList span {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--White);
  background: var(--Blue900);
  border-radius: 50%;
  font-weight: 900;
}

.ProcessList h3 {
  color: var(--Blue950);
}

.ContactSection {
  color: var(--White);
  background: linear-gradient(120deg, var(--Blue900), var(--Blue950));
}

.ContactSection .ContactGrid > div > p:not(.Eyebrow) {
  color: var(--White);
}

.ContactForm {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  color: var(--Ink);
  background: var(--White);
  border-radius: 8px;
  box-shadow: var(--Shadow);
}

.ContactForm label {
  display: grid;
  gap: 0.35rem;
  color: var(--Blue950);
  font-weight: 800;
}

.ContactForm input,
.ContactForm textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--Ink);
  background: #FBFCFF;
  border: 1px solid var(--Line);
  border-radius: 6px;
  font: inherit;
}

.ContactForm textarea {
  resize: vertical;
}

.ContactDetails {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.ContactDetails p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.ContactDetails a,
.MapLink {
  color: var(--White);
  font-weight: 800;
}

.MapLink {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.35rem;
}

.SiteFooter {
  padding-block: 3rem 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  background: #04102f;
}

.FooterGrid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 3rem;
}

.DigitalBadge {
  width: 100%;
  max-width: 125px;
  max-height: 190px;
  margin-bottom: 1rem;
}

.DigitalBadge > div {
  position: relative;
  height: auto;
  overflow: hidden;
  padding-bottom: 152%;
}

.DigitalBadge iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.FooterGrid h2 {
  margin-bottom: 1rem;
  color: var(--White);
  font-size: 1rem;
}

.FooterGrid a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
}

.FooterBottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.FooterBottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .HeaderInner {
    min-height: 78px;
  }

  .Brand {
    flex-basis: 230px;
    min-width: 175px;
  }

  .MainNav {
    justify-content: flex-end;
    gap: 0.9rem;
    font-size: 0.9rem;
  }

  .HeaderCTA {
    flex: 0 0 46px;
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    padding: 0;
    border-radius: 50%;
    text-align: center;
  }

  .HeaderCTAText {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .HeroGrid,
  .IntroGrid,
  .WhyGrid,
  .ContactGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .HeroGrid {
    min-height: auto;
  }

  .WhyCopy {
    position: static;
  }

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

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

  .HeaderInner {
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    gap: 0.7rem;
    padding-block: 0.65rem;
  }

  .Brand {
    flex: 0 0 clamp(132px, 40vw, 180px);
    width: clamp(132px, 40vw, 180px);
    min-width: 0;
  }

  .MainNav {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.85rem;
    padding-bottom: 0.35rem;
    font-size: 0.82rem;
    scrollbar-width: thin;
  }

  .HeroGrid,
  .IntroSection,
  .ServicesSection,
  .WhySection,
  .ProcessSection,
  .ContactSection {
    padding-block: 3.6rem;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .TrustRow,
  .ServiceGrid,
  .ProcessList,
  .FooterGrid {
    grid-template-columns: 1fr;
  }

  .ConsultPanel,
  .ContactForm {
    padding: 1.2rem;
  }

  .ServiceCard {
    min-height: auto;
  }

  .ServiceCard span {
    margin-bottom: 1.4rem;
  }

  .FooterBottom {
    flex-direction: column;
    gap: 0.75rem;
  }
}
