:root {
  --blue: #0375be;
  --blue-deep: #053574;
  --blue-dark: #062b56;
  --blue-soft: #eaf5fc;
  --berry: #a40e4c;
  --ink: #182b34;
  --muted: #58707b;
  --line: #dce6ea;
  --paper: #ffffff;
  --soft: #f4f8f9;
  --warm: #fff8f4;
  --success: #188b76;
  --shadow-sm: 0 8px 24px rgba(13, 51, 73, 0.08);
  --shadow-lg: 0 26px 70px rgba(4, 39, 73, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--berry);
}

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

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

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: #fff;
  background: var(--berry);
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--berry);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.icon {
  width: 1.3em;
  height: 1.3em;
  flex: 0 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #90d6ff;
}

.lead {
  max-width: 690px;
  color: inherit;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button .icon {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

.button:hover .icon {
  transform: translateX(3px);
}

.button--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(3, 117, 190, 0.24);
}

.button--primary:hover {
  color: #fff;
  background: var(--blue-deep);
}

.button--secondary {
  color: var(--blue-deep);
  background: #fff;
  border-color: #bcd3df;
}

.button--secondary:hover {
  color: var(--blue-deep);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.button--ghost {
  color: var(--blue-deep);
  background: transparent;
  border-color: #acc6d4;
}

.button--ghost:hover {
  color: var(--blue-deep);
  background: #fff;
}

.button--light {
  color: var(--blue-deep);
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
}

.button--light:hover {
  color: var(--berry);
  background: #fff;
}

.button--outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button--outline-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(13, 51, 73, 0.08);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 124px;
  height: 57px;
  object-fit: contain;
}

.brand span {
  max-width: 100px;
  padding-left: 16px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a {
  position: relative;
  color: #334d58;
  font-size: 0.86rem;
  font-weight: 740;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--blue-deep);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: 999px;
}

.site-nav .nav-contact:hover {
  color: #fff;
  background: var(--blue);
}

.nav-contact .icon {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.home-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(62, 175, 232, 0.25), transparent 26%),
    radial-gradient(circle at 18% 110%, rgba(164, 14, 76, 0.23), transparent 34%),
    linear-gradient(125deg, #062951 0%, #053b78 56%, #056ca8 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), transparent 90%);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 660px;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  padding-block: 76px 100px;
}

.home-hero__content h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.7vw, 6.15rem);
}

.home-hero__content h1 em {
  color: #91dbff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.home-hero__content .lead {
  max-width: 680px;
  color: #d8eaf4;
}

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

.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 54px;
}

.hero-proof > div {
  display: grid;
  min-width: 105px;
  gap: 2px;
}

.hero-proof strong {
  color: #fff;
  font-size: 1.38rem;
  line-height: 1.2;
}

.hero-proof span {
  max-width: 120px;
  color: #a9cbdc;
  font-size: 0.75rem;
  line-height: 1.35;
}

.home-hero__art {
  position: relative;
  min-height: 510px;
}

.paper-stack,
.paper-card {
  position: absolute;
  width: min(78%, 360px);
  height: 460px;
  border-radius: 8px;
  box-shadow: 0 34px 70px rgba(0, 12, 35, 0.3);
}

.paper-stack--back {
  top: 5px;
  right: 11%;
  background: #dbe9ee;
  transform: rotate(11deg);
}

.paper-stack--mid {
  top: 20px;
  right: 18%;
  background: #f8d6e3;
  transform: rotate(-7deg);
}

.paper-card {
  top: 24px;
  right: 11%;
  z-index: 2;
  overflow: hidden;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  transform: rotate(2deg);
}

.paper-card__mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--blue);
}

.paper-card__mast img {
  width: 102px;
  height: auto;
}

.paper-card__mast span {
  color: var(--berry);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.paper-card__hero {
  height: 118px;
  margin-block: 18px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.9) 0 7%, transparent 8%),
    linear-gradient(140deg, #bfe4f5 0%, #6bc0dd 48%, #e7f5f9 49% 100%);
  border-radius: 6px;
}

.paper-card__lines {
  display: grid;
  gap: 9px;
}

.paper-card__lines i {
  height: 8px;
  background: #dce8ec;
  border-radius: 99px;
}

.paper-card__lines i:nth-child(1) {
  width: 78%;
  height: 13px;
  background: var(--blue-deep);
}

.paper-card__lines i:nth-child(3) {
  width: 90%;
}

.paper-card__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.paper-card__columns span {
  height: 105px;
  background: repeating-linear-gradient(to bottom, #d6e1e5 0 5px, transparent 5px 12px);
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 15, 45, 0.27);
  font-size: 0.85rem;
}

.floating-note > span {
  display: grid;
  width: 35px;
  height: 35px;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  place-items: center;
}

.floating-note .icon {
  width: 18px;
  height: 18px;
}

.hero-wave {
  position: absolute;
  right: -3%;
  bottom: -62px;
  left: -3%;
  height: 110px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}

.trust-bar {
  padding: 26px 0 12px;
  background: #fff;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-strip > div {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  color: #334d58;
  font-size: 0.85rem;
  font-weight: 750;
  text-align: center;
}

.feature-strip > div + div {
  border-left: 1px solid var(--line);
}

.feature-strip .icon {
  color: var(--blue);
}

.section {
  padding-block: 110px;
}

.section--tight {
  padding-block: 48px;
}

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

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
}

.section-heading--split > p {
  margin-bottom: 6px;
  color: var(--muted);
}

.section-heading--center {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:not(.eyebrow) {
  color: var(--muted);
}

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

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(15, 53, 73, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.service-card__image {
  display: grid;
  height: 225px;
  overflow: hidden;
  background: #f7fafb;
  place-items: center;
}

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

.service-card:hover .service-card__image img {
  transform: scale(1.035);
}

.service-card__content {
  padding: 30px;
}

.service-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 0.92rem;
  font-style: italic;
}

.service-card h3 {
  font-size: 1.55rem;
}

.service-card p {
  min-height: 82px;
  color: var(--muted);
}

.why-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 90px;
}

.why-intro {
  position: sticky;
  top: 130px;
}

.why-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.why-intro .button {
  margin-top: 14px;
}

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

.benefit {
  min-height: 260px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit > span,
.feature-cards article > .icon,
.support-card > span,
.contact-aside__mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 14px;
  place-items: center;
}

.benefit > span .icon,
.support-card > span .icon,
.contact-aside__mark .icon {
  width: 25px;
  height: 25px;
}

.benefit p {
  color: var(--muted);
  font-size: 0.95rem;
}

.process-section {
  overflow: hidden;
}

.steps {
  display: grid;
  padding: 0;
  margin: 0;
  counter-reset: none;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  padding: 30px 32px 30px 0;
  grid-template-columns: auto 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.steps li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 0;
  width: 9px;
  height: 9px;
  background: var(--berry);
  border-radius: 50%;
  content: "";
}

.step-number {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 0.86rem;
  font-style: italic;
}

.steps p {
  color: var(--muted);
  font-size: 0.92rem;
}

.client-section {
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.client-logos {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
}

.client-logos img {
  max-width: 190px;
  max-height: 68px;
  margin: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 180ms ease, opacity 180ms ease;
}

.client-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.cta-band {
  padding-block: 85px;
  color: #fff;
  background:
    radial-gradient(circle at 87% 30%, rgba(107, 205, 255, 0.3), transparent 25%),
    linear-gradient(125deg, var(--blue-deep), #04679e);
}

.cta-band__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
  color: #cae4f1;
}

.cta-band__actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.cta-band__actions > a:not(.button) {
  color: #fff;
  font-size: 0.86rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(3, 117, 190, 0.13), transparent 32%),
    linear-gradient(135deg, #f2f8fb, #fff 62%);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(3, 117, 190, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 630px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 74px;
  padding-block: 78px;
}

.page-hero h1 {
  max-width: 760px;
  color: var(--blue-dark);
  font-size: clamp(3rem, 5.5vw, 5.1rem);
}

.page-hero .lead {
  color: var(--muted);
}

.page-hero__visual {
  position: relative;
  padding: 28px 0 32px 34px;
}

.image-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e4e9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-frame--hero {
  position: relative;
}

.image-frame--hero::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
}

.experience-card {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  min-width: 178px;
  gap: 3px;
  padding: 18px 20px;
  color: #fff;
  background: var(--berry);
  border-radius: 15px;
  box-shadow: 0 16px 36px rgba(83, 7, 42, 0.25);
}

.experience-card strong {
  font-size: 1.2rem;
}

.experience-card span {
  max-width: 140px;
  font-size: 0.74rem;
  line-height: 1.35;
  opacity: 0.86;
}

.hero-note {
  display: flex;
  max-width: 560px;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  color: #4a6875;
  font-size: 0.82rem;
}

.hero-note .icon {
  color: var(--success);
}

.two-column {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.sticky-heading {
  position: sticky;
  top: 130px;
}

.sticky-heading p:not(.eyebrow) {
  color: var(--muted);
}

.two-column .steps {
  grid-template-columns: 1fr;
}

.two-column .steps li {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.two-column .steps li::after {
  display: none;
}

.two-column .step-number {
  min-width: 34px;
  font-size: 1rem;
}

.two-column .steps h3 {
  font-size: 1.5rem;
}

.two-column .steps p {
  max-width: 590px;
  font-size: 1rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-cards article {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-cards article > .icon {
  width: 52px;
  height: 52px;
  padding: 13px;
}

.feature-cards p {
  color: var(--muted);
  font-size: 0.94rem;
}

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

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

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

.pricing-grid--two {
  max-width: 850px;
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(13, 51, 73, 0.05);
}

.price-card--featured {
  border: 2px solid var(--blue);
  box-shadow: 0 22px 55px rgba(3, 117, 190, 0.16);
}

.price-badge {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 6px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 0 0 9px 9px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card h3 {
  padding-right: 24px;
  font-size: 1.17rem;
}

.price {
  display: grid;
  min-height: 88px;
  align-content: start;
  gap: 3px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.price span {
  color: var(--blue-deep);
  font-size: 2.4rem;
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.check-list {
  display: grid;
  padding: 0;
  margin: 0 0 28px;
  gap: 11px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #3c5661;
  font-size: 0.83rem;
  line-height: 1.45;
}

.check-list .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--success);
  stroke-width: 2.4;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.fine-print {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.price-card .fine-print {
  margin-top: 14px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 34px;
  right: 8px;
  width: 16px;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 45px 24px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.standards-note {
  display: grid;
  align-items: start;
  margin-top: 28px;
  padding: 28px;
  color: #d7ebf5;
  background: var(--blue-dark);
  border-radius: var(--radius);
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.standards-note > div:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  color: #90d6ff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  place-items: center;
}

.standards-note h3 {
  color: #fff;
}

.standards-note p {
  font-size: 0.87rem;
}

.standards-note a {
  color: #b8e6ff;
}

.simple-hero {
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(92, 196, 240, 0.28), transparent 28%),
    linear-gradient(125deg, var(--blue-dark), #064e89);
}

.simple-hero__inner {
  padding-block: 105px 115px;
}

.simple-hero h1 {
  max-width: 920px;
}

.simple-hero .lead {
  color: #cce4ef;
}

.simple-hero--compact .simple-hero__inner {
  padding-block: 75px 82px;
}

.simple-hero--compact h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-card {
  min-height: 490px;
  padding: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.support-card--primary {
  background: var(--warm);
  border-color: #f1dfe6;
}

.support-card > span {
  margin-bottom: 70px;
}

.support-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.support-card > p:not(.eyebrow) {
  color: var(--muted);
}

.support-card .button {
  margin-top: 24px;
}

.contact-strip {
  padding-block: 48px;
  color: #fff;
  background: var(--blue-dark);
}

.contact-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-strip .container > div {
  display: grid;
  align-content: start;
  padding: 12px 40px;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
}

.contact-strip .container > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-strip .icon {
  color: #8dd7ff;
  grid-row: 1 / 3;
}

.contact-strip span {
  color: #9fc6d9;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-strip a,
.contact-strip address {
  color: #fff;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.contact-panel,
.contact-aside {
  padding: 52px;
  border-radius: var(--radius-lg);
}

.contact-panel {
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-aside {
  color: #fff;
  background: var(--blue-dark);
}

.contact-aside .eyebrow {
  color: #8dd7ff;
}

.contact-aside p:not(.eyebrow) {
  color: #bfd9e6;
}

.contact-methods {
  display: grid;
  margin-top: 38px;
  gap: 12px;
}

.contact-methods > a {
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 16px 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-methods > a:hover {
  color: var(--ink);
  border-color: var(--blue);
  transform: translateX(4px);
}

.contact-methods > a > span {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 13px;
  place-items: center;
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-methods strong {
  font-size: 1.05rem;
}

.contact-methods > a > .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.privacy-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 24px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-callout .icon {
  color: #8dd7ff;
}

.privacy-callout p {
  font-size: 0.8rem;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 230px 1fr;
  gap: 95px;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: grid;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  gap: 8px;
}

.legal-nav p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 5px 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.prose {
  max-width: 800px;
}

.prose section {
  padding-bottom: 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.prose section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

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

.prose p {
  color: #415b66;
}

.site-footer {
  color: #c5d8e1;
  background: #071f31;
}

.footer-main {
  display: grid;
  padding-block: 72px 58px;
  grid-template-columns: 1.5fr 1fr 1.15fr 0.8fr;
  gap: 60px;
}

.footer-main h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main address {
  display: block;
  margin-bottom: 8px;
  color: #b8cdd7;
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.6;
  text-decoration: none;
}

.footer-main a:hover {
  color: #fff;
}

.footer-brand img {
  width: 142px;
  height: auto;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  color: #94aeba;
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #7993a0;
  font-size: 0.7rem;
}

.error-page,
.redirect-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  width: min(calc(100% - 40px), 700px);
  margin: auto;
}

.error-page img,
.redirect-page img {
  margin-bottom: 46px;
}

.error-page h1,
.redirect-page h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.error-page .button {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .brand span {
    display: none;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav > a {
    font-size: 0.8rem;
  }

  .home-hero__grid,
  .page-hero__grid {
    gap: 35px;
  }

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

  .price-card {
    min-height: 440px;
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    padding: 13px 10px;
    font-size: 0.95rem;
  }

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

  .site-nav .nav-contact {
    justify-content: center;
    margin-top: 10px;
  }

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

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

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

  .home-hero__grid,
  .page-hero__grid,
  .why-grid,
  .two-column,
  .faq-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    padding-block: 70px 120px;
  }

  .home-hero__art {
    display: none;
  }

  .page-hero__grid {
    padding-block: 72px;
  }

  .page-hero__visual {
    max-width: 650px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .service-card__image {
    height: 100%;
    min-height: 300px;
  }

  .why-intro,
  .sticky-heading,
  .legal-nav {
    position: static;
  }

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

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

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    justify-items: start;
  }

  .support-grid,
  .pricing-grid--three {
    grid-template-columns: 1fr;
  }

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

  .contact-strip .container {
    grid-template-columns: 1fr;
  }

  .contact-strip .container > div {
    padding: 22px 0;
  }

  .contact-strip .container > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

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

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

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

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

  .home-hero {
    min-height: auto;
  }

  .home-hero__grid {
    min-height: 0;
    padding-block: 65px 110px;
  }

  .home-hero__content h1 {
    font-size: clamp(2.75rem, 13vw, 4.6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-proof > div {
    min-width: 0;
  }

  .hero-proof span {
    font-size: 0.65rem;
  }

  .hero-wave {
    right: 0;
    left: 0;
  }

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

  .feature-strip > div {
    min-height: 92px;
    flex-direction: column;
  }

  .feature-strip > div + div {
    border-left: 0;
  }

  .feature-strip > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .feature-strip > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .client-logos img {
    max-width: 100%;
  }

  .section {
    padding-block: 78px;
  }

  .section--tight {
    padding-block: 34px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-card {
    display: block;
  }

  .service-card__image {
    height: 215px;
    min-height: 0;
  }

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

  .benefit-grid,
  .steps,
  .pricing-grid--four,
  .pricing-grid--two {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 0;
  }

  .steps li {
    padding-right: 0;
  }

  .steps li::after {
    display: none;
  }

  .page-hero__grid {
    min-height: 0;
    padding-block: 58px 68px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .page-hero__visual {
    padding-left: 12px;
  }

  .experience-card {
    left: 0;
    min-width: 150px;
    padding: 14px 16px;
  }

  .feature-cards article,
  .support-card,
  .contact-panel,
  .contact-aside {
    padding: 30px 24px;
  }

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

  .faq-layout {
    gap: 24px;
  }

  .standards-note {
    grid-template-columns: 1fr;
  }

  .simple-hero__inner {
    padding-block: 72px 80px;
  }

  .simple-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.5rem);
  }

  .support-card > span {
    margin-bottom: 42px;
  }

  .legal-nav {
    display: none;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 28px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    padding-block: 22px;
    flex-direction: column;
  }
}

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