:root {
  --navy: #001145;
  --blue: #334d9a;
  --blue-deep: #132a6f;
  --blue-soft: #627bc4;
  --blue-light: #9fb3ef;
  --ice: #d4dfff;
  --white: #ffffff;
  --ink: #07112f;
  --muted: #6a7288;
  --line: rgba(19, 42, 111, 0.14);
  --panel: rgba(255, 255, 255, 0.9);
  --shadow: 0 24px 70px rgba(0, 17, 69, 0.18);
  --radius: 18px;
  --container: 1180px;
  --hero-copy-y: 0px;
  --hero-copy-scale: 1;
  --hero-copy-opacity: 1;
  interpolate-size: allow-keywords;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #f8faff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: clamp(780px, 86svh, 830px);
  padding: 24px clamp(24px, 5vw, 96px) 46px;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(19, 42, 111, 0) 52%, rgba(19, 42, 111, 0.76) 82%, var(--blue-deep) 100%),
    linear-gradient(90deg, rgba(0, 17, 69, 0.94) 0%, rgba(0, 17, 69, 0.9) 32%, rgba(0, 17, 69, 0.5) 52%, rgba(0, 17, 69, 0.08) 74%, rgba(0, 17, 69, 0) 100%),
    url("assets/site/hero-page-1.jpg") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 26%, rgba(159, 179, 239, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(0, 17, 69, 0.04), rgba(0, 17, 69, 0.18) 62%, rgba(19, 42, 111, 0.44));
}

.nav-shell {
  position: relative;
  z-index: 20;
  width: min(var(--container), 100%);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(212, 223, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 17, 69, 0.52);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  --logo-width: 150px;
  --logo-height: 48px;
  --logo-image-width: 160px;
  --logo-offset-x: -5px;
  --logo-offset-y: 0px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 var(--logo-width);
  width: var(--logo-width);
  height: var(--logo-height);
  overflow: hidden;
}

.brand img {
  width: var(--logo-image-width);
  max-width: none;
  transform: translate(var(--logo-offset-x), var(--logo-offset-y));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a,
.main-nav button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav button:hover,
.main-nav button:focus-visible {
  color: var(--white);
  outline: none;
}

.nav-cta {
  padding: 11px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy) !important;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 223, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
}

.hero-content {
  width: min(760px, 100%);
  margin: clamp(154px, 18vh, 190px) auto 0 0;
}

.hero-copy {
  max-width: 760px;
  transform: translate3d(0, var(--hero-copy-y), 0) scale(var(--hero-copy-scale));
  transform-origin: left center;
  opacity: var(--hero-copy-opacity);
  transition: transform 140ms linear, opacity 140ms linear;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 2.44vw, 2.78rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.03rem;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 17, 69, 0.22);
  outline: none;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

body[data-scroll-dir="up"] .reveal:not(.is-visible) {
  transform: translate3d(0, -22px, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
}

.button.secondary {
  border-color: rgba(212, 223, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.proof-numbers strong {
  display: block;
  color: var(--ice);
  font-size: 1.7rem;
  line-height: 1;
}

.proof-numbers span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(19, 42, 111, 0.16);
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(98, 123, 196, 0.22);
  background: var(--white);
}

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

.section,
.logo-slider-section,
.footer {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.keep-together {
  white-space: nowrap;
}

.section-heading p,
.benefits-grid p,
.service-panel p,
.about-copy p,
.pillars-grid p,
.segments-grid p,
.faq-answer p,
.proof-copy p {
  color: var(--muted);
}

.logo-slider-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 88px 0 60px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, var(--blue-deep) 0%, var(--navy) 100%);
}

.clients-heading {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto 30px;
}

.clients-heading h2 {
  margin-inline: auto;
  max-width: 920px;
  color: var(--white);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
}

.clients-heading p:last-child {
  max-width: 620px;
  margin-inline: auto;
}

.clients-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.logos-slider {
  position: relative;
  width: 100%;
  height: 104px;
  overflow: hidden;
  border-block: 1px solid rgba(159, 179, 239, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(159, 179, 239, 0.2), transparent 62%),
    linear-gradient(90deg, rgba(0, 17, 69, 0.88), rgba(51, 77, 154, 0.62) 48%, rgba(0, 17, 69, 0.88));
  box-shadow: 0 22px 70px rgba(0, 17, 69, 0.18);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  width: max-content;
  height: 100%;
  padding-inline: max(26px, calc((100vw - var(--container)) / 2));
  animation: logo-scroll 30s linear infinite;
  will-change: transform;
}

.logos-slider:hover .logos-track {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: clamp(150px, 14vw, 220px);
  height: 100%;
  flex: 0 0 auto;
}

.logo-item img {
  max-width: min(168px, 100%);
  max-height: 48px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.logo-item:hover img {
  opacity: 1;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
  transform: translateY(-1px);
}

.progressive-blur {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.progressive-blur::after,
.progressive-blur span {
  position: absolute;
  inset: 0;
  content: "";
}

.progressive-blur span {
  --blur-size: 0px;
  --start: 0%;
  --mid-start: 11.111%;
  --mid-end: 22.222%;
  --end: 33.333%;
  -webkit-backdrop-filter: blur(var(--blur-size));
  backdrop-filter: blur(var(--blur-size));
  -webkit-mask-image: linear-gradient(
    var(--blur-angle),
    transparent var(--start),
    #000 var(--mid-start),
    #000 var(--mid-end),
    transparent var(--end)
  );
  mask-image: linear-gradient(
    var(--blur-angle),
    transparent var(--start),
    #000 var(--mid-start),
    #000 var(--mid-end),
    transparent var(--end)
  );
}

.progressive-blur span:nth-child(1) { --blur-size: 0px; --start: 0%; --mid-start: 11.111%; --mid-end: 22.222%; --end: 33.333%; }
.progressive-blur span:nth-child(2) { --blur-size: 1px; --start: 11.111%; --mid-start: 22.222%; --mid-end: 33.333%; --end: 44.444%; }
.progressive-blur span:nth-child(3) { --blur-size: 2px; --start: 22.222%; --mid-start: 33.333%; --mid-end: 44.444%; --end: 55.555%; }
.progressive-blur span:nth-child(4) { --blur-size: 3px; --start: 33.333%; --mid-start: 44.444%; --mid-end: 55.555%; --end: 66.666%; }
.progressive-blur span:nth-child(5) { --blur-size: 4px; --start: 44.444%; --mid-start: 55.555%; --mid-end: 66.666%; --end: 77.777%; }
.progressive-blur span:nth-child(6) { --blur-size: 5px; --start: 55.555%; --mid-start: 66.666%; --mid-end: 77.777%; --end: 88.888%; }
.progressive-blur span:nth-child(7) { --blur-size: 6px; --start: 66.666%; --mid-start: 77.777%; --mid-end: 88.888%; --end: 100%; }
.progressive-blur span:nth-child(8) { --blur-size: 7px; --start: 77.777%; --mid-start: 88.888%; --mid-end: 100%; --end: 111.111%; }

.progressive-blur.left {
  left: 0;
  --blur-angle: 270deg;
}

.progressive-blur.left::after {
  background: linear-gradient(90deg, var(--navy), rgba(0, 17, 69, 0));
}

.progressive-blur.right {
  right: 0;
  --blur-angle: 90deg;
}

.progressive-blur.right::after {
  background: linear-gradient(270deg, var(--navy), rgba(0, 17, 69, 0));
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.pain-section {
  padding-top: 58px;
}

.benefits-grid,
.pillars-grid,
.segments-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-grid article,
.pillars-grid article,
.segments-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 17, 69, 0.06);
}

.benefits-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.risk-section,
.testimonials-section,
.quote-section {
  max-width: none;
  width: 100%;
  padding-inline: max(18px, calc((100vw - var(--container)) / 2));
  border-radius: 0;
}

.risk-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  color: var(--white);
}

.risk-section h2,
.testimonials-section h2,
.quote-section h2 {
  color: var(--white);
}

.risk-copy p,
.testimonials-section .section-heading p,
.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.risk-list {
  display: grid;
  gap: 14px;
}

.risk-list article {
  padding: 22px;
  border: 1px solid rgba(212, 223, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.risk-list h3 {
  color: var(--ice);
}

.risk-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.services-section .section-heading {
  max-width: 900px;
  margin-inline: auto;
}

.services-section .section-heading h2 {
  font-size: clamp(1.9rem, 2.65vw, 2.65rem);
}

.services-section {
  padding-bottom: 58px;
}

.services-accordion {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  width: min(1080px, 100%);
  margin-inline: auto;
}

.services-preview {
  align-self: start;
  height: var(--services-preview-height, auto);
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  box-shadow: var(--shadow);
}

.services-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.service-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(19, 42, 111, 0.13);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 17, 69, 0.06);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.service-accordion-item[open] {
  border-color: rgba(98, 123, 196, 0.42);
  box-shadow: 0 22px 56px rgba(0, 17, 69, 0.11);
  transform: translateY(-2px);
}

.service-accordion-item::details-content {
  block-size: 0;
  overflow: hidden;
  transition:
    block-size 360ms cubic-bezier(0.22, 1, 0.36, 1),
    content-visibility 360ms allow-discrete;
}

.service-accordion-item[open]::details-content {
  block-size: auto;
}

.service-accordion-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 22px;
  color: var(--blue-deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.service-accordion-item summary::-webkit-details-marker {
  display: none;
}

.service-accordion-item summary span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
}

.service-accordion-item summary strong {
  flex: 1;
  min-width: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.service-accordion-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--ice);
  font-size: 1.18rem;
  transition: transform 240ms ease, color 240ms ease, background 240ms ease;
}

.service-accordion-item[open] summary::after {
  content: "-";
  color: var(--white);
  background: var(--blue);
  transform: rotate(180deg);
}

.service-panel {
  opacity: 0;
  transform: translateY(-8px);
  padding: 0 22px 24px 78px;
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-accordion-item[open] .service-panel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms;
}

.service-panel p {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(98, 123, 196, 0.22);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(212, 223, 255, 0.42);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding-top: 58px;
}

.about-copy {
  order: 1;
}

.about-media {
  order: 2;
}

.about-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--navy), var(--blue-deep));
  box-shadow: var(--shadow);
}

.about-media img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 96%;
  object-fit: contain;
  object-position: bottom center;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-copy .button {
  margin-top: 24px;
}

.about-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--ice);
  font-size: 0.86rem;
  font-weight: 800;
}

.pillars-section {
  background:
    linear-gradient(180deg, rgba(212, 223, 255, 0.48), rgba(248, 250, 255, 0)),
    #f8faff;
}

.pillars-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pillars-grid article {
  min-height: 250px;
  border-top: 5px solid var(--blue-soft);
}

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

.segments-grid article {
  min-height: 190px;
}

.segments-grid h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 11px;
  border-radius: 99px;
  background: var(--blue-light);
}

.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(159, 179, 239, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 48%, var(--blue) 100%);
}

.testimonials-section .section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.testimonials-section .section-heading h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2rem, 2.65vw, 2.7rem);
}

.testimonials-slider {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.testimonials-slider.reveal {
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
}

.testimonials-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  padding-block: 4px 8px;
  animation: testimonial-scroll 46s linear infinite;
  will-change: transform;
}

.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-button {
  display: block;
  flex: 0 0 clamp(230px, 16vw, 300px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  cursor: zoom-in;
}

.testimonial-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(212, 223, 255, 0.22);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.testimonials-slider .progressive-blur {
  width: clamp(96px, 9vw, 170px);
}

.testimonials-slider .progressive-blur.left::after {
  background: linear-gradient(90deg, var(--navy), rgba(0, 17, 69, 0));
}

.testimonials-slider .progressive-blur.right::after {
  background: linear-gradient(270deg, var(--blue), rgba(51, 77, 154, 0));
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-33.333% - 7.333px));
  }
}

.testimonial-button:hover img,
.testimonial-button:focus-visible img {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.testimonial-button:focus-visible {
  outline: 3px solid rgba(212, 223, 255, 0.65);
  outline-offset: 4px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-numbers div {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--navy);
}

.faq-section {
  padding-top: 56px;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 70px;
  padding: 18px 58px 18px 20px;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue-deep);
  font-size: 1.2rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
  color: var(--white);
  background: var(--blue);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.quote-section {
  display: block;
  background:
    radial-gradient(circle at 78% 18%, rgba(159, 179, 239, 0.16), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 58%, var(--blue) 100%);
}

.quote-copy {
  max-width: 660px;
}

.quote-copy .button {
  margin-top: 8px;
}

.quote-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
  border: 1px solid rgba(212, 223, 255, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quote-form .wide,
.quote-form .full,
.quote-form .form-status {
  grid-column: 1 / -1;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 17, 69, 0.76);
  backdrop-filter: blur(16px);
}

.modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92svh, 900px);
  overflow: auto;
  border: 1px solid rgba(212, 223, 255, 0.28);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.form-modal-panel {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(212, 223, 255, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 179, 239, 0.16), transparent 36%),
    linear-gradient(145deg, var(--navy) 0%, var(--blue-deep) 58%, var(--blue) 100%);
  color: var(--white);
}

.modal-heading {
  max-width: 560px;
  padding-right: 0;
  margin: 0 auto 24px;
  text-align: center;
}

.modal-heading h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.12;
}

.modal-heading p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}

.form-modal-panel .quote-form {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(212, 223, 255, 0.42);
  border-radius: 18px;
  background: rgba(0, 17, 69, 0.28);
  box-shadow: 0 24px 70px rgba(0, 17, 69, 0.22);
}

.form-modal-panel .quote-form label {
  gap: 0;
}

.form-modal-panel input,
.form-modal-panel select {
  min-height: 52px;
  border: 1px solid rgba(212, 223, 255, 0.2);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.form-modal-panel input::placeholder,
.form-modal-panel select:invalid {
  color: #6a7288;
}

.form-modal-panel input:focus,
.form-modal-panel select:focus {
  border-color: var(--blue-light);
  outline: 3px solid rgba(159, 179, 239, 0.28);
}

.form-modal-panel .button.primary {
  min-height: 52px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  text-transform: uppercase;
  font-weight: 800;
}

.form-modal-panel .button.primary:hover,
.form-modal-panel .button.primary:focus-visible {
  box-shadow: 0 16px 34px rgba(98, 123, 196, 0.32);
}

.form-modal-panel .button.primary:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-modal-panel .form-status {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.form-modal-panel .modal-close {
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
}

.testimonial-modal-panel {
  width: min(920px, 100%);
  padding: 16px;
  background: rgba(255, 255, 255, 0.97);
}

.testimonial-modal-panel img {
  width: 100%;
  max-height: 82svh;
  border-radius: 18px;
  object-fit: contain;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  padding: 38px max(18px, calc((100vw - var(--container)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer img {
  width: 140px;
  margin-bottom: 10px;
}

.footer p {
  margin: 0;
}

.footer-links {
  justify-content: center;
  font-weight: 700;
}

.footer-links button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--white);
  outline: none;
}

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

  .logos-track {
    animation: none;
  }

  .testimonials-track {
    animation: none;
  }

  .hero-copy,
  .reveal,
  .service-accordion-item,
  .service-panel,
  .service-accordion-item::details-content {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

@media (max-width: 1280px) {
  :root {
    --container: 1080px;
  }

  .hero {
    min-height: clamp(760px, 84svh, 820px);
    padding-inline: clamp(28px, 4vw, 64px);
  }

  .nav-shell {
    width: min(var(--container), 100%);
  }

  .main-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .hero-content {
    width: min(720px, 100%);
    margin-top: clamp(138px, 17vh, 178px);
  }

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

  h1 {
    max-width: 720px;
    font-size: clamp(2.28rem, 2.55vw, 2.58rem);
  }

  .hero-copy > p {
    max-width: 590px;
  }
}

@media (max-width: 1120px) {
  .benefits-grid,
  .pillars-grid,
  .segments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-numbers {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: 930px;
  }

  .hero {
    min-height: clamp(720px, 84svh, 790px);
    padding-inline: clamp(28px, 4.2vw, 48px);
    background:
      linear-gradient(180deg, rgba(19, 42, 111, 0) 54%, rgba(19, 42, 111, 0.78) 84%, var(--blue-deep) 100%),
      linear-gradient(90deg, rgba(0, 17, 69, 0.96) 0%, rgba(0, 17, 69, 0.9) 38%, rgba(0, 17, 69, 0.48) 64%, rgba(0, 17, 69, 0) 100%),
      url("assets/site/hero-page-1.jpg") 58% top / cover no-repeat;
  }

  .nav-shell {
    min-height: 68px;
    padding-block: 10px;
  }

  .brand {
    --logo-width: 134px;
    --logo-height: 43px;
    --logo-image-width: 143px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero-content {
    width: min(650px, 100%);
    margin-top: clamp(112px, 15vh, 152px);
  }

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

  h1 {
    max-width: 650px;
    font-size: clamp(2.15rem, 3.4vw, 2.45rem);
  }

  .hero-copy > p {
    max-width: 560px;
  }

  .section {
    padding-block: 76px;
  }

  .logo-slider-section {
    padding-block: 74px 54px;
  }

  .logos-slider {
    height: 96px;
  }

  .services-accordion {
    gap: 22px;
  }

  .testimonials-section .section-heading h2 {
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .services-accordion {
    grid-template-columns: 1fr;
  }

  .services-preview {
    min-height: 0;
    aspect-ratio: auto;
  }

  .about-copy {
    order: 1;
  }

  .about-media {
    order: 2;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: clamp(760px, 94svh, 830px);
    padding: 20px clamp(22px, 5vw, 38px) 42px;
    background:
      linear-gradient(180deg, rgba(19, 42, 111, 0) 58%, rgba(19, 42, 111, 0.82) 86%, var(--blue-deep) 100%),
      linear-gradient(180deg, rgba(0, 17, 69, 0.96) 0%, rgba(0, 17, 69, 0.88) 42%, rgba(0, 17, 69, 0.5) 100%),
      url("assets/site/hero-page-1.jpg") 62% top / cover no-repeat;
  }

  .nav-shell {
    border-radius: 24px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 22px;
    border: 1px solid rgba(212, 223, 255, 0.22);
    border-radius: 24px;
    background: rgba(0, 17, 69, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a,
  .main-nav button {
    padding: 13px 4px;
  }

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

  .hero-content {
    width: min(620px, 100%);
    margin-top: clamp(52px, 8vh, 78px);
  }

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

  h1 {
    max-width: 620px;
    font-size: clamp(2.08rem, 5.6vw, 2.9rem);
  }

  .hero-copy > p {
    max-width: 540px;
  }

  .about-section,
  .risk-section,
  .proof-section,
  .quote-section,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 460px;
  }

  .progressive-blur {
    width: 90px;
  }

  .quote-copy {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: min(800px, 96svh);
    padding: 18px 24px 40px;
    background:
      linear-gradient(180deg, rgba(0, 17, 69, 0.98) 0%, rgba(0, 17, 69, 0.94) 38%, rgba(19, 42, 111, 0.56) 66%, var(--blue-deep) 100%),
      radial-gradient(circle at 50% 70%, rgba(159, 179, 239, 0.18), transparent 38%),
      url("assets/site/hero-mobile-1080x1920.jpg") center top / cover no-repeat;
  }

  .nav-shell {
    min-height: 74px;
    padding: 12px 16px;
  }

  .hero-content {
    width: 100%;
    margin-top: 34px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(1.95rem, 8vw, 2.22rem);
    line-height: 1.07;
  }

  h1 span {
    display: inline;
  }

  .hero-copy > p {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .brand {
    --logo-width: 122px;
    --logo-height: 39px;
    --logo-image-width: 130px;
    --logo-offset-x: -4px;
    --logo-offset-y: 0px;
  }

  .hero-actions,
  .footer-links {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .benefits-grid,
  .pillars-grid,
  .segments-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .clients-heading h2,
  .services-section .section-heading h2 {
    font-size: 2rem;
  }

  .logo-slider-section {
    padding-block: 68px 48px;
  }

  .clients-heading {
    width: min(100% - 36px, var(--container));
    margin-bottom: 24px;
  }

  .clients-actions {
    width: min(100% - 48px, 390px);
    margin: 22px auto 0;
  }

  .logos-slider {
    height: 88px;
  }

  .logos-track {
    gap: 30px;
  }

  .testimonials-section .section-heading h2 {
    font-size: 1.8rem;
  }

  .pain-section {
    padding-top: 54px;
  }

  .benefits-grid article,
  .pillars-grid article,
  .segments-grid article {
    padding: 24px;
  }

  .benefits-grid span {
    margin-bottom: 20px;
  }

  .services-section {
    padding-bottom: 54px;
  }

  .services-accordion {
    gap: 18px;
  }

  .services-preview {
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 18px;
  }

  .service-accordion-item summary {
    min-height: 68px;
    padding: 15px 16px;
    gap: 12px;
  }

  .service-accordion-item summary span {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .service-accordion-item summary::after {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .service-panel {
    padding: 0 16px 18px 66px;
  }

  .service-panel p {
    font-size: 0.92rem;
  }

  .service-tags {
    gap: 7px;
  }

  .service-tags span {
    font-size: 0.78rem;
  }

  .quote-form {
    padding: 20px;
  }

  .quote-section {
    padding-inline: 24px;
  }

  .quote-copy {
    max-width: 100%;
  }

  .quote-section h2 {
    font-size: clamp(1.75rem, 7vw, 2rem);
  }

  .quote-copy p {
    max-width: 100%;
  }

  .form-modal-panel {
    padding: 22px;
  }

  .form-modal-panel .quote-form {
    padding: 24px;
  }

  .about-media {
    min-height: 380px;
  }

  .logo-item {
    width: 128px;
  }

  .testimonial-button {
    flex-basis: 230px;
  }

  .testimonial-button img {
    aspect-ratio: 4 / 4.8;
  }
}

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

  .section,
  .logo-slider-section,
  .footer {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding-block: 64px;
  }

  .risk-section,
  .testimonials-section,
  .quote-section {
    width: 100%;
    margin-inline: 0;
  }

  .hero {
    min-height: min(800px, 96svh);
    padding: 18px 18px 36px;
    background:
      linear-gradient(180deg, rgba(0, 17, 69, 0.98) 0%, rgba(0, 17, 69, 0.94) 38%, rgba(19, 42, 111, 0.58) 66%, var(--blue-deep) 100%),
      radial-gradient(circle at 50% 70%, rgba(159, 179, 239, 0.18), transparent 38%),
      url("assets/site/hero-mobile-1080x1920.jpg") center top / cover no-repeat;
  }

  .nav-shell {
    border-radius: 22px;
  }

  .hero-content {
    margin-top: 32px;
  }

  h1 {
    font-size: clamp(1.86rem, 8.2vw, 2.08rem);
  }

  .hero-copy > p {
    font-size: 0.94rem;
  }

  .clients-heading h2,
  .services-section .section-heading h2,
  .section-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2rem);
  }

  .clients-heading h2 {
    font-size: clamp(1.62rem, 6.4vw, 1.85rem);
  }

  .logo-slider-section {
    width: 100%;
    padding-block: 64px 44px;
  }

  .logos-slider {
    height: 82px;
  }

  .logo-item {
    width: 128px;
  }

  .logo-item img {
    max-width: 118px;
    max-height: 40px;
  }

  .progressive-blur {
    width: 62px;
  }

  .benefits-grid article,
  .pillars-grid article,
  .segments-grid article {
    padding: 22px;
  }

  .services-preview {
    border-radius: 16px;
  }

  .service-accordion-item {
    border-radius: 14px;
  }

  .service-accordion-item summary {
    min-height: 66px;
    padding: 14px;
  }

  .service-accordion-item summary strong {
    font-size: 0.98rem;
  }

  .service-panel {
    padding: 0 14px 18px;
  }

  .service-panel p {
    margin-bottom: 12px;
  }

  .about-media {
    min-height: 340px;
    border-radius: 22px;
  }

  .about-badges span,
  .service-tags span {
    font-size: 0.76rem;
  }

  .testimonials-section {
    padding-inline: 0;
  }

  .testimonials-section .section-heading {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .testimonials-slider .progressive-blur {
    width: 68px;
  }

  .testimonial-button {
    flex-basis: 220px;
  }

  .faq-item button {
    min-height: 64px;
    padding: 16px 54px 16px 18px;
    font-size: 0.94rem;
  }

  .modal-backdrop {
    padding: 14px;
  }

  .modal-panel {
    border-radius: 22px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: min(760px, 96svh);
    padding-inline: 16px;
  }

  .brand {
    --logo-width: 112px;
    --logo-height: 36px;
    --logo-image-width: 120px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 1.76rem;
  }

  .hero-copy > p {
    font-size: 0.9rem;
  }

  .button {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 0.92rem;
  }
}
