:root {
  --blue: #083ac7;
  --blue-dark: #08246b;
  --blue-soft: #eef3ff;
  --orange: #f57b0b;
  --orange-dark: #d95d00;
  --green: #42a85a;
  --ink: #0e1b3d;
  --muted: #63708d;
  --line: #dce4f1;
  --surface: #ffffff;
  --surface-alt: #f7f9fd;
  --shadow: 0 24px 60px rgba(17, 47, 111, .13);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, .91);
  border-bottom: 1px solid rgba(220, 228, 241, .75);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  width: 260px;
  max-width: 42vw;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #26385f;
  font-size: .94rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9e32);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(245, 123, 11, .25);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 99px;
  transition: .25s ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 100px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(8, 58, 199, .10), transparent 33%),
    radial-gradient(circle at 12% 86%, rgba(66, 168, 90, .11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: -240px;
  right: -190px;
  width: 620px;
  height: 620px;
  content: "";
  border: 90px solid rgba(8, 58, 199, .035);
  border-radius: 50%;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  top: 120px;
  left: 4%;
  width: 18px;
  height: 18px;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(245, 123, 11, .10);
}

.hero-orb-two {
  right: 6%;
  bottom: 120px;
  width: 20px;
  height: 20px;
  background: var(--green);
  box-shadow: 0 0 0 14px rgba(66, 168, 90, .10);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #cdd9ff;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.15vw, 5.15rem);
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #245ce8);
  box-shadow: 0 14px 30px rgba(8, 58, 199, .24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(17, 47, 111, .08);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 9px;
}

.hero-tags span {
  padding: 9px 13px;
  color: #34476f;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.logo-card {
  position: absolute;
  inset: 42px 12px 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(220, 228, 241, .9);
  border-radius: 44px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.logo-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  content: "";
  background: linear-gradient(135deg, transparent 48%, rgba(245, 123, 11, .08) 49%);
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 270px;
  object-fit: contain;
  transform: rotate(-1.2deg);
}

.logo-card-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(8, 58, 199, .09);
  border-radius: 50%;
  filter: blur(45px);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 9px;
  color: #243458;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(17, 47, 111, .13);
  font-size: .83rem;
  font-weight: 800;
}

.chip-one {
  top: 10px;
  left: 10px;
}

.chip-two {
  top: 110px;
  right: -12px;
}

.chip-three {
  right: 24px;
  bottom: 12px;
}

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.chip-dot.blue {
  background: var(--blue);
}

.chip-dot.orange {
  background: var(--orange);
}

.chip-dot.green {
  background: var(--green);
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(17, 47, 111, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: rgba(8, 58, 199, .28);
  box-shadow: 0 24px 54px rgba(17, 47, 111, .13);
  transform: translateY(-8px);
}

.service-card::after {
  position: absolute;
  right: -58px;
  bottom: -74px;
  width: 160px;
  height: 160px;
  content: "";
  background: var(--blue-soft);
  border-radius: 50%;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 56px;
  place-items: center;
  border-radius: 20px;
}

.service-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue-icon {
  color: var(--blue);
  background: rgba(8, 58, 199, .10);
}

.orange-icon {
  color: var(--orange);
  background: rgba(245, 123, 11, .12);
}

.green-icon {
  color: var(--green);
  background: rgba(66, 168, 90, .12);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #d6dff0;
  font-size: 1.1rem;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.highlight {
  padding-top: 25px;
}

.highlight-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  min-height: 410px;
  padding: 64px 70px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, .14), transparent 24%),
    linear-gradient(135deg, #08246b, #083ac7 68%, #0b4de0);
  border-radius: 38px;
  box-shadow: 0 30px 70px rgba(8, 36, 107, .25);
}

.highlight-panel::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  content: "";
  border: 65px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.highlight-copy {
  position: relative;
  z-index: 2;
}

.highlight-copy h2 {
  max-width: 680px;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 13px;
}

.highlight-list span {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 9px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
}

.highlight-list i {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.highlight-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.highlight-mark svg {
  width: min(100%, 230px);
  fill: none;
  stroke: rgba(255, 255, 255, .78);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coverage {
  background: var(--surface-alt);
}

.coverage-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: 40px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.map-card::before,
.map-card::after {
  position: absolute;
  content: "";
  border: 1px solid #dbe4f5;
  border-radius: 50%;
}

.map-card::before {
  width: 330px;
  height: 330px;
}

.map-card::after {
  width: 220px;
  height: 220px;
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image:
    linear-gradient(rgba(8, 58, 199, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 58, 199, .08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle, #000 0, transparent 72%);
}

.location-pin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #ff9836);
  border-radius: 30px 30px 30px 7px;
  box-shadow: 0 18px 35px rgba(245, 123, 11, .28);
  place-items: center;
  transform: rotate(-45deg);
}

.location-pin svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transform: rotate(45deg);
}

.map-card > span {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  z-index: 3;
  padding: 13px 16px;
  text-align: center;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: 15px;
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.coverage-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 800;
}

.text-link svg {
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.contact {
  padding-bottom: 115px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  padding: 66px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(245, 123, 11, .24), transparent 28%),
    linear-gradient(135deg, #08246b, #0a338f);
  border-radius: 38px;
  box-shadow: 0 32px 70px rgba(8, 36, 107, .22);
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d9e1f7;
}

.button-white {
  color: var(--blue-dark);
  background: #fff;
}

.button-facebook {
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .27);
}

.contact-info {
  display: grid;
  align-content: center;
  gap: 14px;
}

.contact-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 17px;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: #bdcae8;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  font-size: 1rem;
  font-weight: 800;
}

.site-footer {
  padding: 65px 0 25px;
  color: #d8e0f3;
  background: #061a4a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr .8fr;
  align-items: start;
  gap: 55px;
}

.footer-brand img {
  width: 260px;
  max-width: 100%;
  height: 72px;
  padding: 8px 12px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 0;
  color: #aab9d9;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact span {
  color: #aab9d9;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 24px;
  color: #8092ba;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .88rem;
}

.floating-call {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9630);
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(217, 93, 0, .34);
  font-size: .87rem;
  font-weight: 800;
  transition: transform .2s ease;
}

.floating-call:hover {
  transform: translateY(-4px);
}

.floating-call svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

.reveal.will-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    top: 84px;
    right: 20px;
    left: 20px;
    display: grid;
    padding: 22px;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-tags {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 40px;
  }

  .highlight-panel,
  .coverage-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .highlight-mark {
    display: none;
  }

  .coverage-grid {
    gap: 48px;
  }

  .coverage-copy {
    text-align: center;
  }

  .coverage-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .brand {
    width: 205px;
    max-width: 66vw;
  }

  .brand img {
    height: 48px;
  }

  .site-nav {
    top: 74px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .logo-card {
    inset: 28px 5px 38px;
    padding: 25px;
    border-radius: 28px;
  }

  .logo-card img {
    max-height: 210px;
  }

  .floating-chip {
    padding: 9px 11px;
    font-size: .71rem;
  }

  .chip-one {
    top: 3px;
    left: 0;
  }

  .chip-two {
    top: 90px;
    right: -4px;
  }

  .chip-three {
    right: 4px;
    bottom: 2px;
  }

  .section {
    padding: 78px 0;
  }

  .service-card {
    padding: 26px;
    border-radius: 22px;
  }

  .highlight {
    padding-top: 0;
  }

  .highlight-panel,
  .contact-card {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .highlight-list {
    display: grid;
  }

  .map-card {
    min-height: 330px;
    padding: 24px;
    border-radius: 26px;
  }

  .contact-actions {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
    width: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-call span {
    display: none;
  }

  .floating-call svg {
    margin: auto;
  }
}
