:root {
  --navy: #05245a;
  --deep-blue: #071c40;
  --royal: #0b55f5;
  --electric: #1285ff;
  --ink: #0b1730;
  --muted: #5f6c80;
  --line: #dce4ef;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --shadow: 0 24px 70px rgba(6, 36, 90, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.site-shell {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: white;
  border-radius: 8px;
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 239, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 220px;
  height: 62px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  color: #314158;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.desktop-nav a:hover {
  color: var(--royal);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  background: var(--navy);
  padding: 12px 17px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.header-call:hover {
  background: var(--royal);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding-top: 82px;
  background: linear-gradient(
    120deg,
    #fff 0%,
    #f8fbff 51%,
    #ecf4ff 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 82px 0 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(4, 64, 155, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 64, 155, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent 0, black 44%, black 100%);
}

.hero-inner {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 74px;
  padding-block: 70px 76px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--royal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 25px;
  color: var(--deep-blue);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.hero h1 em {
  color: var(--royal);
  font-style: normal;
}

.hero-lede {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.2s ease;
}

.button-primary {
  color: white;
  background: var(--royal);
  box-shadow: 0 12px 28px rgba(11, 85, 245, 0.25);
}

.button-primary:hover {
  background: #0846ca;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(11, 85, 245, 0.3);
}

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

.button-secondary:hover {
  border-color: var(--royal);
  color: var(--royal);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 37px;
  padding-top: 29px;
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--royal);
}

.hero-meta span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--muted);
  font-size: 12px;
}

.hero-meta strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-mark {
  position: relative;
  min-height: 625px;
  display: grid;
  place-items: center;
}

.mark-card {
  position: relative;
  z-index: 3;
  width: min(390px, 88%);
  aspect-ratio: 4 / 5;
  margin: 0 0 54px;
  background: var(--deep-blue);
  border: 6px solid rgba(255, 255, 255, 0.95);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  overflow: hidden;
}

.mark-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 28, 64, 0.74) 0,
    rgba(7, 28, 64, 0.12) 36%,
    transparent 57%
  );
  pointer-events: none;
}

.mark-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 27px;
  pointer-events: none;
}

.conversion-photo-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.01) rotate(-1.5deg);
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 17px;
  color: white;
  background: rgba(7, 28, 64, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(7, 28, 64, 0.22);
  transform: rotate(-1.5deg);
}

.photo-caption span {
  color: #73bdff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.photo-caption strong {
  font-size: 15px;
  line-height: 1.25;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(11, 85, 245, 0.19);
}

.orbit-one {
  width: 500px;
  height: 500px;
}

.orbit-two {
  width: 590px;
  height: 590px;
  border-style: dashed;
  opacity: 0.62;
}

.local-badge {
  position: absolute;
  z-index: 5;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  color: white;
  background: var(--deep-blue);
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(7, 28, 64, 0.22);
  font-size: 11px;
  line-height: 1.35;
  white-space: nowrap;
}

.local-badge svg {
  color: #54adff;
  width: 22px;
  height: 22px;
}

.local-badge strong {
  font-size: 14px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--deep-blue);
  color: white;
}

.trust-inner {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--electric);
}

.section {
  padding-block: 108px;
}

.services-section {
  background: white;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 50px;
}

.section-heading h2,
.why-copy > h2 {
  margin: 16px 0 0;
  color: var(--deep-blue);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--soft);
  border: 1px solid #e6ebf2;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--electric));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
}

.service-card:hover {
  background: white;
  border-color: #cbd9ef;
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(5, 36, 90, 0.1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--royal);
  background: white;
  border: 1px solid #dfe8f5;
  border-radius: 15px;
  box-shadow: 0 9px 20px rgba(5, 36, 90, 0.06);
}

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

.service-number {
  color: #a9b5c6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 28px 0 13px;
  color: var(--deep-blue);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 23px 0 25px;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #34435a;
  font-size: 13px;
  font-weight: 650;
}

.service-card li span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--royal);
  background: #e5efff;
  border-radius: 50%;
}

.service-card li svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.4;
}

.service-card > a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--royal);
  font-size: 13px;
  font-weight: 850;
}

.service-card > a svg {
  transition: transform 0.2s;
}

.service-card > a:hover svg {
  transform: translateX(4px);
}

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

.why-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 86px;
}

.why-panel {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  padding: 45px;
  color: white;
  background: radial-gradient(
    circle at 75% 15%,
    #1175ff 0,
    #0a54d0 27%,
    #06347f 61%,
    #071c40 100%
  );
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
}

.bolt-pattern {
  position: absolute;
  top: -78px;
  right: -10px;
  color: rgba(255, 255, 255, 0.11);
  font-family: Arial Black, sans-serif;
  font-size: 460px;
  line-height: 1;
  transform: rotate(7deg);
}

.why-panel-content {
  position: relative;
  z-index: 2;
}

.panel-kicker {
  color: #9dccff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.why-panel h2 {
  max-width: 430px;
  margin: 16px 0;
  font-size: clamp(36px, 3.3vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.why-panel p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.why-intro {
  margin: 24px 0 35px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.benefit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.benefit-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list > div > span {
  color: var(--royal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  padding-top: 4px;
}

.benefit-list h3 {
  margin: 0 0 7px;
  color: var(--deep-blue);
  font-size: 17px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-section {
  padding: 86px 0;
  background: white;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 65px;
  padding: 64px 70px;
  color: white;
  background: var(--deep-blue);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -280px;
  top: -310px;
  border: 90px solid rgba(18, 133, 255, 0.16);
  border-radius: 50%;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 39%;
  bottom: -170px;
  background: var(--royal);
  filter: blur(90px);
  opacity: 0.38;
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.eyebrow-light {
  color: #6ab6ff;
}

.contact-copy h2 {
  margin: 18px 0;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.contact-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions > a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  transition: 0.2s ease;
}

.contact-actions > a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--electric);
  background: white;
  border-radius: 10px;
}

.contact-actions > a > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-actions small {
  color: #9cabc0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.contact-actions > a > svg {
  color: #6ab6ff;
}

.site-footer {
  padding: 34px 0 40px;
  background: white;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  width: 190px;
  height: 54px;
  overflow: hidden;
}

.footer-inner p {
  margin: 0;
  color: #778397;
  font-size: 11px;
}

.footer-inner p span {
  color: var(--royal);
  margin-inline: 7px;
}

.copyright {
  text-align: right;
}

.mobile-contact-bar {
  display: none;
}

a:focus-visible {
  outline: 3px solid #68b5ff;
  outline-offset: 3px;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 70px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-mark {
    min-height: 610px;
  }

  .mark-card {
    width: min(370px, 80%);
  }

  .orbit-two {
    width: 520px;
    height: 520px;
  }

  .orbit-one {
    width: 450px;
    height: 450px;
  }

  .local-badge {
    left: 50%;
    right: auto;
    bottom: 0;
  }

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

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .why-panel {
    min-height: 500px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 64px;
  }

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

  .site-header {
    height: 70px;
  }

  .brand {
    width: 168px;
    height: 51px;
  }

  .header-call {
    width: 43px;
    height: 43px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .header-call span {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    inset: 70px 0 0;
  }

  .hero-inner {
    padding-block: 56px 52px;
    gap: 26px;
  }

  .hero h1 {
    margin-block: 17px 20px;
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    margin-top: 27px;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
  }

  .hero-mark {
    min-height: min(570px, 138vw);
  }

  .mark-card {
    width: min(350px, 84%);
    margin-bottom: 50px;
    border-width: 4px;
    border-radius: 26px;
  }

  .mark-card::after {
    border-radius: 21px;
  }

  .photo-caption {
    right: 13px;
    bottom: 13px;
    left: 13px;
    padding: 13px 14px;
  }

  .orbit-one {
    width: 350px;
    height: 350px;
  }

  .orbit-two {
    width: 415px;
    height: 415px;
  }

  .local-badge {
    left: 50%;
    right: auto;
    bottom: 0;
  }

  .trust-inner {
    min-height: 58px;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
    gap: 18px;
    font-size: 9px;
  }

  .trust-inner span:last-child,
  .trust-inner i:last-of-type {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    display: grid;
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .why-copy > h2 {
    font-size: 39px;
  }

  .service-card {
    padding: 25px;
  }

  .why-panel {
    min-height: 450px;
    padding: 30px;
    border-radius: 22px;
  }

  .bolt-pattern {
    font-size: 360px;
  }

  .benefit-list > div {
    grid-template-columns: 39px 1fr;
    gap: 12px;
  }

  .contact-section {
    padding: 55px 0;
  }

  .contact-card {
    width: calc(100% - 30px);
    padding: 43px 24px;
    border-radius: 22px;
  }

  .contact-copy h2 {
    font-size: 39px;
  }

  .contact-actions > a {
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
    padding: 12px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-inner > p:first-of-type {
    line-height: 1.8;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 150;
    inset: auto 0 0;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: white;
    background: var(--deep-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -10px 30px rgba(7, 28, 64, 0.18);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .mobile-contact-bar a:last-child {
    background: var(--royal);
    border: 0;
  }

  .mobile-contact-bar svg {
    width: 16px;
    height: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
