:root {
  color-scheme: light;
  --blue: #303493;
  --blue-deep: #15185f;
  --blue-glass: rgba(22, 26, 88, 0.78);
  --yellow: #ffcc2f;
  --yellow-deep: #d7a913;
  --white: #ffffff;
  --paper: #f7f7fb;
  --ink: #15172b;
  --muted: #6b7086;
  --line: #e8e9f2;
  --shadow: 0 22px 60px rgba(18, 22, 77, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(21, 24, 95, 0.08);
  box-shadow: 0 10px 35px rgba(21, 24, 95, 0.08);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  box-shadow: 0 16px 38px rgba(21, 24, 95, 0.12);
}

.brand img {
  width: 136px;
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 7px;
  background: #f1f2f6;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--blue-deep);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

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

.site-nav {
  position: fixed;
  inset: 82px 14px auto;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 10px;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 780;
}

.site-nav .is-active {
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.site-nav .nav-phone {
  justify-content: center;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 999px;
}

.section-pad {
  padding: 56px 18px;
}

.hero {
  position: relative;
  min-height: 0;
  padding: 0;
  background: var(--blue-deep);
  isolation: isolate;
}

.hero-bg {
  position: relative;
  inset: auto;
  z-index: 0;
  overflow: hidden;
  height: min(126vw, 500px);
}

.hero-bg picture,
.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center top;
  transform: none;
  animation: none;
}

.hero-bg::after {
  display: none;
}

.hero-bg::before {
  display: none;
}

.hero-content {
  display: none;
}

.hero-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  font-size: clamp(1.36rem, 7vw, 2.3rem);
  line-height: 1;
}

.hero-kicker::after {
  content: "";
  width: min(30vw, 140px);
  height: 2px;
  background: rgba(255, 204, 47, 0.75);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 8vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.16;
}

.hero-content > p:not(.hero-kicker) {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--yellow-deep);
  border-radius: 999px;
}

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

.button.primary {
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 780px;
  margin-top: 34px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(21, 24, 95, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.mobile-hero-cta {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
  z-index: 2;
  display: block;
  max-width: 430px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.mobile-hero-cta .shiny-cta {
  width: 100%;
  min-height: 56px;
  padding: 0.92rem 1.2rem;
  font-size: 0.9rem;
}

.shiny-cta {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.25rem;
  color: var(--white);
  background: var(--blue-deep);
  border: 1.5px solid var(--yellow);
  border-radius: 360px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  font-size: 1.05rem;
  font-weight: 650;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  animation: heroCtaPulse 2s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
  content: "";
  display: none;
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.shiny-cta:active {
  transform: translateY(1px);
}

.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle at var(--position) var(--position),
    white calc(var(--position) / 4),
    transparent 0
  ) padding-box;
  background-repeat: space;
  background-size: var(--space) var(--space);
  border-radius: inherit;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle, 0deg) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  opacity: 0.4;
}

.shiny-cta::after {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--shiny-cta-highlight), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
  animation: shimmer var(--duration) linear infinite;
}

.shiny-cta span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shiny-cta span::after {
  content: "";
  width: 15px;
  height: 15px;
  order: -1;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.shiny-cta span::before {
  --size: calc(100% + 1rem);
  width: var(--size);
  height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
  opacity: 0;
  transition: opacity var(--transition);
  animation: breathe calc(var(--duration) * 1.5) linear infinite;
}

.shiny-cta,
.shiny-cta::before {
  animation: heroCtaPulse 2s ease-in-out infinite;
}

.shiny-cta:is(:hover, :focus-visible) {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
}

.shiny-cta:is(:hover, :focus-visible) span::before {
  opacity: 1;
}

.unit-strip {
  position: absolute;
  right: 0;
  bottom: 58px;
  left: 0;
  z-index: 4;
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
}

.unit-track {
  display: grid;
  grid-auto-columns: minmax(236px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 0 4px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.unit-track::-webkit-scrollbar {
  display: none;
}

.unit-card {
  --delay: 0ms;
  overflow: hidden;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(42px) scale(0.97);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
  transition-delay: var(--delay);
}

.unit-card.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.97);
}

.unit-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.unit-strip.is-visible .unit-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.unit-card:nth-child(2) {
  --delay: 90ms;
}

.unit-card:nth-child(3) {
  --delay: 180ms;
}

.unit-card:nth-child(4) {
  --delay: 270ms;
}

.unit-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 26px 60px rgba(18, 22, 77, 0.2);
}

.unit-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
}

.unit-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
}

.unit-card strong {
  color: var(--blue-deep);
  font-size: 0.92rem;
}

.unit-card a {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-deep);
  background: #f6f6f8;
  border-radius: 999px;
  font-weight: 900;
}

.strip-control {
  position: absolute;
  top: 58px;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 48px;
  place-items: center;
  border: 0;
  color: var(--white);
  background: rgba(21, 24, 95, 0.84);
  cursor: pointer;
  font-size: 1.6rem;
}

.strip-control.prev {
  left: 0;
  border-radius: 0 8px 8px 0;
}

.strip-control.next {
  right: 0;
  border-radius: 8px 0 0 8px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow-deep);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p:not(.eyebrow),
.about-copy p,
.content-card p,
.cta-box p {
  color: var(--muted);
}

.about {
  display: grid;
  gap: 34px;
  align-items: center;
  background: var(--white);
}

.about-collage {
  position: relative;
  min-height: 380px;
  padding: 0 0 62px 34px;
}

.about-main {
  width: min(100%, 520px);
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  min-width: 156px;
  height: 154px;
  object-fit: cover;
  object-position: 50% 72%;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 22, 77, 0.18);
}

.experience-badge {
  position: absolute;
  top: 64px;
  left: 0;
  display: grid;
  gap: 2px;
  width: 128px;
  min-height: 94px;
  padding: 14px 13px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(21, 24, 95, 0.22);
}

.experience-badge strong {
  line-height: 1.08;
}

.experience-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.2;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--blue-deep);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--white), 0 0 0 1px var(--yellow-deep);
}

.dark-services,
.social-proof {
  color: var(--white);
  background: var(--blue-deep);
}

.dark-services {
  padding-top: 28px;
  padding-bottom: 38px;
}

.dark-services .section-head {
  margin-bottom: 22px;
}

.dark-services h2,
.dark-services h3,
.dark-services .section-head p:not(.eyebrow),
.social-proof h2 {
  color: var(--white);
}

.pain-grid,
.content-grid,
.testimonial-grid,
.review-grid,
.action-grid {
  display: grid;
  gap: 14px;
}

.quick-actions {
  padding-bottom: 34px;
  background: var(--white);
}

.news-carousel {
  position: relative;
  overflow: visible;
  margin-bottom: 24px;
  background: transparent;
  border-radius: 12px;
  border: 0;
  box-shadow: none;
}

.news-carousel-head {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue-deep);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px 12px 0 0;
}

.news-carousel-head::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: conic-gradient(
    from 0deg,
    transparent 0 74%,
    rgba(255, 255, 255, 0.78) 78%,
    rgba(210, 218, 232, 0.9) 82%,
    transparent 88% 100%
  );
  animation: newsBorderOrbit 6s linear infinite;
}

.news-carousel-head::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: var(--blue-deep);
  border-radius: inherit;
}

.news-carousel .eyebrow {
  margin: 0;
  color: var(--white);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.news-viewport {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--paper);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 18px 44px rgba(21, 24, 95, 0.1);
}

.news-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  min-height: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.news-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.news-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper);
}

.news-slide picture {
  display: contents;
}

.news-slide::after {
  display: none;
}

.news-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 18px 14px;
}

.news-dots button {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 1px 5px rgba(21, 24, 95, 0.2);
  cursor: pointer;
}

.news-dots button.is-active {
  background: var(--yellow);
}

.action-card {
  overflow: hidden;
  display: grid;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 24, 95, 0.08);
}

.action-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.action-card strong {
  padding: 16px 16px 4px;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 950;
}

.action-card span {
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-content: center;
}

.service-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.service-photo.tall {
  grid-row: auto;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-photo:hover img {
  transform: scale(1.05);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 42, 0.74));
}

.service-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  z-index: 1;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.pains {
  background: #fbfcff;
}

.pains {
  padding-top: 28px;
  padding-bottom: 34px;
}

.customer-reviews {
  padding-top: 18px;
  padding-bottom: 6px;
  background: #fbfcff;
}

.review-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(21, 24, 95, 0.06);
}

.review-score {
  color: var(--yellow-deep);
  font-size: 0.82rem;
  font-weight: 950;
}

.review-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.review-card strong {
  color: var(--blue-deep);
  font-size: 0.9rem;
}

.pains .section-head {
  max-width: 680px;
  margin-bottom: 18px;
}

.pains h2 {
  max-width: 700px;
}

.pains .section-head p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.pain-item,
.content-card,
.testimonial-grid blockquote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(21, 24, 95, 0.06);
}

.pain-item {
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border-left: 6px solid var(--yellow);
}

.pain-item strong {
  color: var(--blue-deep);
}

.pain-item span {
  color: var(--muted);
  font-size: 0.96rem;
}

.content-card {
  padding: 22px;
}

.content-card h3 {
  color: var(--blue-deep);
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.testimonial-grid p {
  color: var(--white);
  font-size: 1.04rem;
}

.testimonial-grid cite {
  color: var(--yellow);
  font-style: normal;
  font-weight: 900;
}

.final-cta {
  padding-top: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 204, 47, 0.36), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef1ff);
}

.cta-box {
  overflow: hidden;
  position: relative;
  padding: 30px 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -74px;
  width: 190px;
  height: 190px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.3;
}

.cta-box h2,
.cta-box .eyebrow {
  color: var(--white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-box .button {
  font-weight: 500;
}

.site-footer {
  display: grid;
  gap: 20px;
  justify-items: start;
  padding: 34px 18px 86px;
  color: var(--white);
  background: var(--blue-deep);
  text-align: left;
}

.site-footer img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.footer-brand,
.footer-info {
  display: grid;
  gap: 6px;
}

.footer-brand p,
.footer-info span {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-info {
  max-width: 360px;
  font-style: normal;
}

.footer-info strong {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

.footer-info a {
  color: var(--white);
  font-weight: 400;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--yellow);
  border-radius: 999px;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social path {
  fill: currentColor;
  stroke: none;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 70;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(21, 24, 95, 0.24);
  font-weight: 950;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes heroDrift {
  to {
    transform: scale(1.06) translateX(-1.2%);
  }
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {
  from,
  to {
    scale: 1;
  }

  50% {
    scale: 1.2;
  }
}

@keyframes heroCtaPulse {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(255, 204, 47, 0.34);
  }

  50% {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 0 8px rgba(255, 204, 47, 0);
  }
}

@keyframes newsBorderOrbit {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 720px) {
  .section-pad {
    padding: 58px 34px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-top: 118px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .unit-track {
    grid-auto-columns: 1fr;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .strip-control {
    display: none;
  }

  .about {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .check-list,
  .pain-grid,
  .content-grid,
  .testimonial-grid,
  .review-grid,
  .action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-photo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    max-width: 1040px;
  }

  .dark-services {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .dark-services .section-head {
    max-width: 720px;
    margin-bottom: 18px;
  }

  .dark-services h2 {
    max-width: 720px;
    font-size: clamp(2.3rem, 4.4vw, 3.25rem);
  }

  .service-photo figcaption {
    font-size: 0.82rem;
  }

  .cta-box {
    padding: 48px;
  }

  .news-viewport,
  .news-slide {
    min-height: 0;
    aspect-ratio: var(--news-ratio, 16 / 9);
  }

  .news-carousel {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
  }

  .news-slide img {
    object-fit: contain;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding: 12px max(42px, calc((100vw - 1180px) / 2));
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .nav-phone {
    min-height: 36px;
    padding-inline: 18px;
  }

  .section-pad {
    padding-inline: max(42px, calc((100vw - 1180px) / 2));
  }

  .hero {
    min-height: 0;
    padding-inline: 0;
  }

  .hero-bg {
    height: min(32.9vw, 625px);
  }

  .hero-content {
    display: none;
  }

  .unit-strip {
    bottom: 66px;
  }

  .pain-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .content-grid,
  .testimonial-grid,
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .action-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-sticky-cta {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1.4fr 1fr auto;
    align-items: start;
    padding-bottom: 38px;
    padding-inline: max(42px, calc((100vw - 1180px) / 2));
  }
}

@media (max-width: 520px) {
  .section-pad {
    padding: 42px 22px;
  }

  .quick-actions {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 26px;
    padding-left: 0;
  }

  .quick-actions .action-grid {
    padding-right: 22px;
    padding-left: 22px;
  }

  .news-carousel {
    margin: 0 0 28px;
    border-radius: 0;
    box-shadow: none;
  }

  .news-carousel-head {
    padding: 12px 22px;
    border-radius: 0;
  }

  .news-carousel .eyebrow {
    font-size: 0.72rem;
  }

  .news-viewport {
    border-radius: 0;
    box-shadow: none;
  }

  .hero {
    min-height: 0;
    padding: 0;
    background: var(--blue-deep);
  }

  .hero-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    overflow: hidden;
    height: auto;
  }

  .hero-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transform: none;
    animation: none;
  }

  .hero-bg::before,
  .hero-bg::after {
    display: none;
  }

  .hero-content {
    display: none;
  }

  .mobile-hero-cta {
    position: absolute;
    right: 22px;
    bottom: 26px;
    left: 22px;
    z-index: 2;
    display: block;
    padding: 0;
    background: transparent;
  }

  .mobile-hero-cta .shiny-cta {
    width: 100%;
    min-height: 56px;
    padding: 0.92rem 1.2rem;
    font-size: 0.9rem;
  }

  .hero-kicker {
    font-size: 1.16rem;
  }

  h1 {
    max-width: 9.2em;
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 1.02;
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 320px;
    min-width: 0;
    font-size: 0.98rem;
  }

  .hero-content .button {
    width: min(100%, 300px);
  }

  .hero-actions {
    margin-top: auto;
  }

  .hero-proof {
    margin-top: 16px;
  }

  .unit-strip {
    position: relative;
    bottom: auto;
    width: min(100% - 36px, 380px);
    margin-top: 0;
    padding: 20px 0 34px;
    background: var(--paper);
  }

  .unit-track {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .unit-card {
    min-height: 0;
    scroll-snap-align: none;
  }

  .unit-card.reveal:nth-child(odd) {
    transform: translateY(44px) translateX(-10px) scale(0.97);
  }

  .unit-card.reveal:nth-child(even) {
    transform: translateY(44px) translateX(10px) scale(0.97);
  }

  .unit-card.reveal.is-visible,
  .unit-strip.is-visible .unit-card.reveal.is-visible {
    transform: translateY(0) translateX(0) scale(1);
  }

  .unit-card img {
    height: 164px;
  }

  .action-card img {
    height: 205px;
  }

  .strip-control {
    display: none;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .about {
    padding-bottom: 38px;
  }

  .dark-services {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .pains {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .customer-reviews {
    padding-top: 20px;
    padding-bottom: 4px;
  }

  .pains .section-head {
    margin-bottom: 16px;
  }

  .pain-item {
    min-height: 0;
    padding: 13px 16px;
  }

  .social-proof {
    padding-top: 46px;
  }

  .final-cta {
    padding-top: 18px;
  }
}

/* Current homepage hierarchy: header, news carousel, location CTA. */
.hero {
  display: none;
}

.quick-actions {
  padding-top: 0;
}

.news-carousel {
  margin-top: 0;
  margin-bottom: 8px;
}

.news-cta {
  display: flex;
  justify-content: center;
  padding: 0 22px 18px;
}

.news-cta .shiny-cta {
  width: min(100%, 540px);
  min-height: 58px;
}

.mobile-sticky-cta {
  display: none;
}

@media (min-width: 720px) {
  .quick-actions {
    padding-top: 0;
  }

  .news-carousel {
    width: min(100%, 1800px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .news-viewport,
  .news-slide {
    aspect-ratio: var(--news-ratio, 3 / 1);
  }

  .news-slide img {
    object-fit: cover;
  }
}

@media (max-width: 720px) {
  [data-desktop-only] {
    display: none;
  }
}

@media (max-width: 520px) {
  .news-carousel {
    margin-bottom: 8px;
  }

  .news-cta {
    padding: 0 28px 18px;
  }

  .news-cta .shiny-cta {
    min-height: 56px;
    padding: 0.92rem 1.2rem;
    font-size: 0.86rem;
  }
}

.links-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, #007ac3, #007ac3 350px, #f7f7fb 351px),
    #f7f7fb;
}

.links-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 18px;
}

.links-logo img {
  width: 132px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.links-back {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--blue-deep);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.links-main {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 0 18px 32px;
}

.links-hero {
  display: grid;
  justify-items: center;
  padding: 26px 0 26px;
  color: var(--white);
  text-align: center;
}

.links-hero-logo {
  width: clamp(84px, 26vw, 128px);
  height: clamp(84px, 26vw, 128px);
  margin-bottom: 14px;
  padding: 3px;
  object-fit: contain;
  object-position: center;
  background: #007ac3;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.links-hero h1 {
  max-width: 720px;
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(1.45rem, 6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
}

.links-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 3.8vw, 1.12rem);
  font-weight: 400;
}

.city-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(21, 24, 95, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 24, 95, 0.08);
}

.city-intro strong {
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 500;
}

.city-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.links-list {
  display: grid;
  gap: 10px;
}

.links-list > .link-unit {
  display: none;
}

.city-group {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(48, 52, 147, 0.42);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(21, 24, 95, 0.05);
}

.city-group:hover {
  border-color: rgba(48, 52, 147, 0.82);
}

.city-group summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 14px 16px;
  color: var(--blue-deep);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  list-style: none;
  outline-offset: -4px;
}

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

.city-group summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.city-group[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.city-group summary small {
  justify-self: end;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.city-units {
  display: grid;
  gap: 10px;
  padding: 0 12px 12px;
}

.link-unit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  box-shadow: none;
}

.link-unit.featured {
  border-left-color: var(--blue);
}

.link-unit strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 500;
}

.link-unit span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.link-unit a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 500;
}

.link-unit[hidden] {
  display: none;
}

.links-footer {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}

.links-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  color: #007ac3;
  background: var(--white);
  border: 1px solid rgba(0, 122, 195, 0.28);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  box-shadow: 0 12px 26px rgba(0, 122, 195, 0.12);
}

.links-footer svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (min-width: 680px) {
  .links-header {
    padding-top: 24px;
  }

  .links-logo img {
    width: 150px;
  }

  .city-intro {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px;
  }

  .link-unit {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .link-unit a {
    min-width: 136px;
  }
}

.admin-page {
  min-height: 100vh;
  color: var(--ink);
  background: #f7f7fb;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-nav a,
.ghost-button,
.admin-unit-actions a,
.admin-unit-actions button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
}

.ghost-button.danger,
.admin-unit-actions button:last-child {
  color: #9a2531;
}

.admin-main {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 6px 18px 44px;
}

.admin-hero {
  margin-bottom: 20px;
  padding: 26px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  border-radius: 8px;
}

.admin-hero .eyebrow {
  color: var(--yellow);
  font-weight: 500;
}

.admin-hero h1 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
}

.admin-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-form,
.admin-login,
.admin-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(21, 24, 95, 0.06);
}

.admin-login {
  display: grid;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto 20px;
  padding: 18px;
}

.admin-form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 18px;
}

.admin-form-head,
.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-form h2,
.admin-login h2,
.admin-panel h2 {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 500;
}

.admin-form label,
.admin-login label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 0.9rem;
}

.admin-form input,
.admin-login input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  outline: none;
}

.admin-form input:focus,
.admin-login input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(48, 52, 147, 0.1);
}

.admin-check {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.admin-check input {
  width: 18px;
  min-height: 18px;
}

.admin-submit {
  min-height: 46px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 7px;
  font: inherit;
  cursor: pointer;
}

.admin-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-panel {
  overflow: hidden;
}

.admin-panel-head {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-report {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-report-head {
  margin-bottom: 12px;
}

.admin-report h3 {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 500;
}

.admin-report p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 8px;
}

.admin-report-grid article {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-report-grid strong {
  color: var(--blue-deep);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.admin-report-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.admin-city-group {
  overflow: hidden;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-city-group summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 13px 14px;
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.admin-city-group summary::-webkit-details-marker {
  display: none;
}

.admin-city-group summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.admin-city-group[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.admin-city-group summary small {
  justify-self: end;
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-city-units {
  display: grid;
  gap: 8px;
  padding: 0 10px 10px;
}

.admin-unit {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-unit span {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-unit h3 {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 500;
}

.admin-unit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-unit .admin-clicks {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  color: var(--blue-deep);
  background: rgba(48, 52, 147, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
}

.admin-unit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 900px) {
  .admin-grid {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.4fr);
    align-items: start;
  }

  .admin-unit {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .admin-unit-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  .admin-header,
  .admin-form-head,
  .admin-panel-head {
    display: grid;
  }

  .admin-nav,
  .admin-actions {
    justify-content: stretch;
  }

  .admin-nav a,
  .admin-actions button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .links-hero {
    padding-top: 22px;
  }

  .links-hero-logo {
    width: 92px;
    height: 92px;
    margin-bottom: 12px;
  }

  .links-hero h1 {
    max-width: 360px;
  }
}
