@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --blue: #25409a;
  --blue-bright: #3158c6;
  --blue-deep: #132457;
  --blue-ink: #0d1c45;
  --lime: #a8cf45;
  --lime-dark: #789c20;
  --cream: #f5f7ef;
  --mist: #eef3fb;
  --paper: #ffffff;
  --ink: #1b2746;
  --muted: #62708d;
  --line: #dfe5ef;
  --warm: #f5aa62;
  --shadow: 0 24px 70px rgba(19, 36, 87, 0.12);
  --shadow-soft: 0 14px 44px rgba(19, 36, 87, 0.08);
  --container: min(1180px, calc(100vw - 48px));
  --narrow: min(760px, calc(100vw - 48px));
  --radius: 28px;
}

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

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

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

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--blue-deep);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 6.1rem);
}

h2 {
  font-size: clamp(2.25rem, 4.3vw, 4.25rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

p {
  color: var(--muted);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--narrow);
}

.site-main {
  min-height: 55vh;
}

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 138px);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-deep);
  font-weight: 700;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--lime);
  content: "";
}

.eyebrow--light {
  color: #dfe8ff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button,
button.button,
input[type="submit"] {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 25px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(37, 64, 154, 0.2);
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
button.button:hover,
input[type="submit"]:hover {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(19, 36, 87, 0.24);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.87rem;
}

.button--ghost {
  border-color: rgba(37, 64, 154, 0.2);
  color: var(--blue-deep);
  background: transparent;
  box-shadow: none;
}

.button--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--mist);
  box-shadow: none;
}

.button--lime {
  border-color: var(--lime);
  color: var(--blue-deep);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(168, 207, 69, 0.22);
}

.button--lime:hover {
  border-color: #bedf67;
  color: var(--blue-deep);
  background: #bedf67;
}

.button--on-dark {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

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

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 780;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */
.site-topbar {
  color: #e2e8fb;
  background: var(--blue-deep);
  font-size: 0.8rem;
}

.site-topbar__inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-topbar p {
  margin: 0;
  color: inherit;
}

.site-topbar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-topbar a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.site-topbar a:hover {
  color: var(--lime);
}

.topbar-phone,
.topbar-payment {
  display: inline-flex;
  align-items: center;
}

.topbar-phone {
  gap: 7px;
}

.topbar-phone svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--lime);
}

.site-topbar .topbar-payment {
  min-height: 36px;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--blue-ink);
  background: var(--lime);
  box-shadow: 0 5px 16px rgba(183, 204, 24, 0.2);
  transition: transform 180ms ease, background-color 180ms ease;
}

.site-topbar .topbar-payment:hover {
  color: var(--blue-ink);
  background: #c9dc31;
  transform: translateY(-1px);
}

.topbar-payment svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

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

.site-header.is-scrolled {
  border-bottom-color: rgba(37, 64, 154, 0.09);
  box-shadow: 0 12px 32px rgba(19, 36, 87, 0.08);
}

.site-header__inner {
  display: grid;
  min-height: 94px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.site-brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-brand img,
.custom-logo {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.primary-navigation {
  justify-self: end;
}

.abca-menu,
.abca-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.abca-menu {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 22px);
}

.abca-menu > li {
  position: relative;
}

.abca-menu a {
  display: flex;
  align-items: center;
  color: var(--blue-deep);
  font-size: 0.91rem;
  font-weight: 720;
  line-height: 1.3;
  text-decoration: none;
}

.abca-menu > li > a {
  min-height: 48px;
}

.abca-menu a:hover,
.abca-menu .current-menu-item > a,
.abca-menu .current_page_item > a {
  color: var(--blue-bright);
}

.abca-menu .menu-item-has-children > a::after {
  margin-left: 6px;
  content: "⌄";
  font-size: 0.85em;
}

.abca-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: max-content;
  min-width: 215px;
  padding: 12px;
  border: 1px solid rgba(37, 64, 154, 0.1);
  border-radius: 18px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.abca-menu .sub-menu a {
  padding: 11px 13px;
  border-radius: 10px;
}

.abca-menu .sub-menu a:hover {
  background: var(--mist);
}

.abca-menu li:hover > .sub-menu,
.abca-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.menu-toggle {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(780px, calc(100vh - 120px));
  overflow: hidden;
  padding-block: clamp(74px, 7vw, 112px) clamp(86px, 9vw, 135px);
  background: linear-gradient(135deg, #fff 0%, #f7f9f2 48%, #eef3fb 100%);
}

.home-hero__wash {
  position: absolute;
  z-index: -1;
  top: -25%;
  right: -8%;
  width: 54vw;
  aspect-ratio: 1;
  border-radius: 54% 46% 63% 37% / 44% 63% 37% 56%;
  background: radial-gradient(circle at 30% 30%, rgba(168, 207, 69, 0.2), rgba(37, 64, 154, 0.09) 58%, transparent 70%);
  transform: rotate(-12deg);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(410px, 0.94fr);
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-hero h1 em {
  position: relative;
  display: inline;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.home-hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -2%;
  bottom: 0.04em;
  left: -1%;
  height: 0.18em;
  border-radius: 99px;
  opacity: 0.75;
  background: var(--lime);
  content: "";
  transform: rotate(-1.2deg);
}

.home-hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #4d5e80;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.65;
}

.home-hero__proof {
  display: grid;
  max-width: 670px;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-hero__proof div {
  position: relative;
  padding-left: 17px;
}

.home-hero__proof div::before {
  position: absolute;
  top: 4px;
  bottom: 2px;
  left: 0;
  width: 3px;
  border-radius: 99px;
  background: var(--lime);
  content: "";
}

.home-hero__proof strong,
.home-hero__proof span {
  display: block;
}

.home-hero__proof strong {
  color: var(--blue-deep);
  font-size: 1.12rem;
  line-height: 1.2;
}

.home-hero__proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.home-hero__visual {
  position: relative;
  min-height: 560px;
}

.home-hero__visual::before,
.home-hero__visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.home-hero__visual::before {
  top: 2%;
  right: -8%;
  width: 175px;
  height: 175px;
  border: 34px solid rgba(168, 207, 69, 0.46);
}

.home-hero__visual::after {
  bottom: 3%;
  left: -10%;
  width: 210px;
  height: 210px;
  background: rgba(37, 64, 154, 0.08);
}

.home-hero__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50% 50% 43% 57% / 38% 57% 43% 62%;
  box-shadow: 0 36px 90px rgba(19, 36, 87, 0.22);
  transform: rotate(2deg);
}

.home-hero__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(19, 36, 87, 0.02), rgba(19, 36, 87, 0.16));
  content: "";
}

.home-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: rotate(-2deg) scale(1.06);
}

.home-hero__note {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: 8%;
  display: flex;
  width: min(320px, 62%);
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px 24px 7px 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.home-hero__note-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--lime);
  font-weight: 900;
}

.home-hero__note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-hero__note strong {
  color: var(--blue-deep);
  font-size: 0.88rem;
}

.trust-ribbon {
  position: relative;
  z-index: 2;
  color: #fff;
  background: var(--blue-deep);
}

.trust-ribbon__inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-ribbon span {
  padding-inline: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: #dfe6fa;
  font-size: 0.78rem;
  font-weight: 680;
  text-align: center;
}

.trust-ribbon span:last-child {
  border-right: 0;
}

/* Headings and benefits */
.section-heading {
  max-width: 800px;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading > p {
  max-width: 620px;
  font-size: 1.05rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
}

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

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

.benefit-item {
  position: relative;
  display: grid;
  min-height: 255px;
  grid-column: span 4;
  grid-template-columns: 68px 1fr;
  align-content: start;
  gap: 17px;
  overflow: hidden;
  padding: 34px 28px;
  border: 1px solid rgba(37, 64, 154, 0.1);
  border-radius: 36px 12px 36px 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-radius 220ms ease;
}

.benefit-item:nth-child(even) {
  margin-top: 28px;
  border-radius: 12px 36px 12px 36px;
}

.benefit-item:hover {
  border-radius: 26px;
  transform: translateY(-5px);
}

.benefit-item > img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.benefit-item h3 {
  margin-bottom: 12px;
}

.benefit-item p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.55;
}

.benefit-item__number {
  position: absolute;
  right: 18px;
  bottom: -14px;
  color: rgba(37, 64, 154, 0.06);
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1;
}

/* Editorial sections */
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(56px, 8vw, 115px);
}

.story-split--reverse .story-split__copy {
  order: -1;
}

.story-split__media {
  position: relative;
}

.story-split__media::before {
  position: absolute;
  z-index: 0;
  inset: -24px 42px 28px -28px;
  border-radius: 44% 56% 61% 39% / 52% 43% 57% 48%;
  background: rgba(168, 207, 69, 0.32);
  content: "";
  transform: rotate(-4deg);
}

.story-split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 480px;
  border-radius: 44% 56% 38% 62% / 58% 42% 58% 42%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.story-split__stamp {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: -24px;
  display: grid;
  width: 168px;
  height: 168px;
  place-content: center;
  padding: 20px;
  border: 10px solid var(--cream);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  text-align: center;
}

.story-split__stamp strong {
  color: var(--lime);
  font-size: 2rem;
  line-height: 1;
}

.story-split__stamp span {
  margin-top: 8px;
  font-size: 0.7rem;
  line-height: 1.3;
}

.story-split__copy h2 {
  margin-bottom: 25px;
}

.story-split__copy > p {
  font-size: 1.02rem;
}

.check-list {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 31px;
  color: #344463;
  font-weight: 660;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--lime);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

/* Calculator */
.calculator-section {
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.calculator-section__shape {
  position: absolute;
  z-index: -1;
  top: -32%;
  left: -10%;
  width: 65vw;
  aspect-ratio: 1.4;
  border-radius: 44% 56% 60% 40% / 58% 42% 58% 42%;
  background: linear-gradient(135deg, rgba(49, 88, 198, 0.9), rgba(37, 64, 154, 0.1));
  transform: rotate(8deg);
}

.calculator-section__grid,
.calculator-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.calculator-section__copy h2 {
  margin-bottom: 24px;
  color: #fff;
}

.calculator-section__copy > p {
  max-width: 620px;
  color: #cbd5f1;
  font-size: 1.08rem;
}

.calculator-section__steps {
  display: grid;
  margin-top: 46px;
  gap: 20px;
}

.calculator-section__steps > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.calculator-section__steps span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 850;
}

.calculator-section__steps p {
  margin: 0;
  color: #cbd5f1;
  font-size: 0.83rem;
  line-height: 1.4;
}

.calculator-section__steps strong {
  color: #fff;
}

.loan-calculator {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 42px 12px 42px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 90px rgba(5, 12, 33, 0.32);
}

.loan-calculator h3 {
  margin-bottom: 13px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.loan-calculator__head p {
  margin-bottom: 28px;
  font-size: 0.91rem;
}

.loan-calculator__fields {
  display: grid;
  gap: 23px;
}

.loan-calculator label > span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 760;
}

.loan-calculator input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.loan-calculator select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #f8f9fc;
}

.loan-amount-output {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1.25;
}

.loan-calculator__result {
  margin: 27px 0 22px;
  padding: 20px 22px;
  border-left: 4px solid var(--lime);
  border-radius: 6px 18px 18px 6px;
  background: var(--cream);
}

.loan-calculator__result span,
.loan-calculator__result small {
  display: block;
}

.loan-calculator__result span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.loan-calculator__result strong {
  display: block;
  margin: 3px 0 7px;
  color: var(--blue-deep);
  font-size: 2rem;
  line-height: 1.2;
}

.loan-calculator__result small {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.calculator-page .loan-calculator {
  border-color: rgba(37, 64, 154, 0.1);
  box-shadow: var(--shadow);
}

/* Insurance and testimonials */
.insurance-section {
  overflow: hidden;
}

.insurance-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

.insurance-feature {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 48px 12px 48px 12px;
  background: var(--blue-deep);
}

.insurance-feature--offset {
  margin-top: 74px;
  border-radius: 12px 48px 12px 48px;
}

.insurance-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(13, 28, 69, 0.92) 88%);
  content: "";
}

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

.insurance-feature:hover img {
  transform: scale(1.035);
}

.insurance-feature > div {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 36px;
  left: 38px;
}

.insurance-feature span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insurance-feature h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.insurance-feature p {
  margin: 0;
  color: #dbe3f9;
}

.testimonial-section {
  background: var(--mist);
}

.testimonial-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(50px, 8vw, 115px);
}

.testimonial-section__image {
  position: relative;
}

.testimonial-section__image::before {
  position: absolute;
  inset: 20px -24px -24px 28px;
  border-radius: 30% 70% 48% 52% / 58% 34% 66% 42%;
  background: var(--lime);
  content: "";
}

.testimonial-section__image img {
  position: relative;
  z-index: 1;
  min-height: 500px;
  border-radius: 48% 52% 64% 36% / 43% 61% 39% 57%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.testimonial-section__content h2 {
  margin-bottom: 40px;
}

.quote-stack blockquote {
  display: none;
  margin: 0;
}

.quote-stack blockquote.is-active {
  display: block;
  animation: quote-in 360ms ease both;
}

.quote-stack p {
  margin-bottom: 23px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  font-style: italic;
  line-height: 1.35;
}

.quote-stack cite {
  color: var(--blue);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 820;
}

.quote-controls {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.quote-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(37, 64, 154, 0.2);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  cursor: pointer;
}

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

@keyframes quote-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.partners-section__intro {
  max-width: 780px;
  margin-bottom: 55px;
}

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

.partner-logos img {
  width: 100%;
  max-height: 88px;
  padding: 18px 26px;
  filter: grayscale(1);
  object-fit: contain;
  opacity: 0.68;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-logos img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

/* Page heroes */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(68px, 8vw, 115px);
  background: linear-gradient(130deg, var(--cream), #f4f7fd);
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -45%;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 207, 69, 0.22), transparent 68%);
  content: "";
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.page-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.page-hero__copy p {
  max-width: 650px;
  font-size: 1.08rem;
}

.page-hero__media {
  position: relative;
}

.page-hero__media::before {
  position: absolute;
  inset: -18px 30px 24px -18px;
  border-radius: 58% 42% 38% 62% / 44% 64% 36% 56%;
  background: var(--lime);
  content: "";
  transform: rotate(-6deg);
}

.page-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 385px;
  border-radius: 42% 58% 60% 40% / 58% 40% 60% 42%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* About */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 50px);
}

.purpose-grid article {
  position: relative;
  min-height: 410px;
  padding: 42px 36px;
  border-radius: 42px 10px 42px 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.purpose-grid article:nth-child(2) {
  margin-top: 44px;
  border-radius: 10px 42px 10px 42px;
}

.purpose-grid img {
  width: 78px;
  height: 78px;
  margin-bottom: 44px;
  object-fit: contain;
}

.purpose-grid article > span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(37, 64, 154, 0.16);
  font-size: 1.2rem;
  font-weight: 900;
}

.purpose-grid h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.purpose-grid p {
  margin: 0;
}

.statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 7vw, 90px);
  border-radius: 70px 18px 70px 18px;
  color: #fff;
  background: var(--blue-deep);
}

.statement::after {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(168, 207, 69, 0.18);
  border-radius: 50%;
  content: "";
}

.statement blockquote {
  max-width: 920px;
  margin: 0 0 36px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-style: italic;
  line-height: 1.3;
}

/* Services */
.service-editorial {
  display: grid;
  gap: clamp(70px, 10vw, 140px);
}

.service-editorial article {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.8fr);
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
}

.service-editorial article:nth-child(even) img {
  order: 2;
  border-radius: 16px 58px 16px 58px;
}

.service-editorial img {
  min-height: 420px;
  border-radius: 58px 16px 58px 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.service-editorial h2 {
  margin-bottom: 22px;
}

.requirements-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.requirements-section__grid h2 {
  margin-bottom: 24px;
}

.requirements-section__grid .button {
  margin-top: 18px;
}

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

.requirements-list > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(37, 64, 154, 0.16);
  grid-template-columns: minmax(150px, 0.55fr) 1fr;
  gap: 24px;
}

.requirements-list strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.requirements-list span {
  color: var(--muted);
}

.document-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(46px, 7vw, 76px);
  border-radius: 16px 62px 16px 62px;
  color: #fff;
  background: var(--blue);
}

.document-callout h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #fff;
}

.document-callout p {
  max-width: 680px;
  margin: 0;
  color: #dfe6fa;
}

.document-callout .button {
  flex: 0 0 auto;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.faq-layout aside {
  position: sticky;
  top: 130px;
}

.faq-layout aside h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

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

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

.faq-list summary {
  display: grid;
  padding: 25px 4px;
  color: var(--blue-deep);
  font-size: 1.05rem;
  font-weight: 760;
  cursor: pointer;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--blue);
  content: "+";
  font-size: 1.5rem;
  font-weight: 450;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary > span {
  color: var(--lime-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.faq-list details > div {
  padding: 0 52px 24px 60px;
}

.faq-list details p {
  margin: 0;
}

/* Documents */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.document-item {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 34px 10px 34px 10px;
  background: #fff;
  grid-template-rows: 1fr auto;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.document-item:nth-child(4n + 2),
.document-item:nth-child(4n + 3) {
  border-radius: 10px 34px 10px 34px;
  background: var(--cream);
}

.document-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.document-item__number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: rgba(37, 64, 154, 0.18);
  font-weight: 900;
}

.document-item__type {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--lime-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-item h2 {
  max-width: 420px;
  margin-bottom: 15px;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
}

.document-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.document-item a span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.help-strip h2 {
  margin: 0;
}

/* Contact and forms */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(440px, 1.05fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.contact-details {
  padding-top: 20px;
}

.contact-details h2 {
  margin-bottom: 23px;
}

.contact-details dl {
  margin: 36px 0;
}

.contact-details dl > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.form-panel {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(37, 64, 154, 0.08);
  border-radius: 46px 12px 46px 12px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.form-panel h2 {
  margin-bottom: 32px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.wpcf7-form,
.abca-form {
  display: grid;
  gap: 18px;
}

.wpcf7-form p,
.abca-form p {
  margin: 0;
}

.wpcf7-form label,
.abca-form label {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 760;
}

.wpcf7-form-control:not(.wpcf7-submit),
.abca-form input:not([type="hidden"]):not([type="checkbox"]),
.abca-form select,
.abca-form textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 7px;
  padding: 12px 15px;
  border: 1px solid #d3dbea;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
}

textarea.wpcf7-form-control,
.abca-form textarea {
  min-height: 150px;
  resize: vertical;
}

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

.abca-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--body) !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.abca-form__privacy input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--blue);
}

.abca-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.abca-form__notice {
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.abca-form__notice--success {
  border-color: rgba(65, 123, 34, 0.25);
  color: #315d1b;
  background: #f0f8e7;
}

.abca-form__notice--error {
  border-color: rgba(163, 34, 34, 0.22);
  color: #842121;
  background: #fff1f1;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  color: #a32222;
  font-size: 0.75rem;
}

.wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 12px 15px !important;
  border-radius: 12px;
}

.notice {
  padding: 24px;
  border: 1px solid rgba(37, 64, 154, 0.14);
  border-radius: 18px;
  background: #fff;
}

.pqr-intro {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
}

.pqr-intro h2,
.pqr-intro p {
  margin: 0;
}

.pqr-guide {
  padding: 36px;
  border-radius: 12px 42px 12px 42px;
  color: #fff;
  background: var(--blue-deep);
}

.pqr-guide h2 {
  color: #fff;
  font-size: 2rem;
}

.pqr-guide ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.pqr-guide li {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 43px 1fr;
  gap: 15px;
}

.pqr-guide li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--lime);
  font-weight: 900;
}

.pqr-guide strong {
  color: #fff;
}

.pqr-guide p {
  margin: 3px 0 0;
  color: #cbd5f1;
  font-size: 0.83rem;
}

.pqr-guide .small-note a {
  color: var(--lime);
}

/* Payments */
.payment-page {
  background: var(--cream);
}

.payment-steps {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payment-steps > div {
  padding: 30px;
  border-radius: 32px 9px 32px 9px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.payment-steps > div:nth-child(2) {
  border-radius: 9px 32px 9px 32px;
}

.payment-steps span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--lime);
  font-weight: 900;
}

.payment-steps h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.payment-steps p {
  margin: 0;
  font-size: 0.88rem;
}

.payment-options {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 24px;
}

.payment-qr {
  display: grid;
  padding: clamp(35px, 5vw, 60px);
  border-radius: 50px 12px 50px 12px;
  background: #fff;
  grid-template-columns: 1fr 235px;
  align-items: center;
  gap: 45px;
}

.payment-qr h2,
.payment-gateway h2 {
  margin-bottom: 20px;
}

.payment-note {
  margin-top: 23px;
  padding: 16px 18px;
  border-left: 4px solid var(--lime);
  border-radius: 5px 14px 14px 5px;
  background: var(--cream);
  font-size: 0.78rem;
}

.payment-note a {
  color: var(--blue);
  font-weight: 780;
}

.qr-button {
  padding: 15px;
  border: 2px solid var(--blue);
  border-radius: 26px;
  color: var(--blue);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: zoom-in;
}

.qr-button img {
  width: 100%;
  margin-bottom: 10px;
}

.payment-gateway {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(35px, 5vw, 55px);
  border-radius: 12px 50px 12px 50px;
  color: #fff;
  background: var(--blue-deep);
}

.payment-gateway h2 {
  color: #fff;
}

.payment-gateway p {
  color: #cbd5f1;
}

.payment-gateway .button {
  margin-top: 15px;
}

.data-notice {
  display: grid;
  margin-top: 26px;
  padding: 28px 32px;
  border: 1px solid rgba(245, 170, 98, 0.5);
  border-radius: 24px;
  background: #fff9f2;
  grid-template-columns: 44px 1fr;
  gap: 18px;
}

.data-notice > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #7c3f0f;
  background: var(--warm);
  font-weight: 900;
}

.data-notice h2 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.data-notice p {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.qr-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

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

.qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 33, 0.82);
  backdrop-filter: blur(8px);
}

.qr-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 34px;
  border-radius: 36px 10px 36px 10px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.qr-modal__dialog h2 {
  margin-bottom: 18px;
  font-size: 1.8rem;
}

.qr-modal__dialog img {
  width: min(360px, 100%);
  margin-inline: auto;
}

.qr-modal__dialog p {
  margin: 16px 0 0;
  font-size: 0.78rem;
}

.qr-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Blog and content */
.archive-hero,
.single-post__header {
  padding-block: clamp(70px, 8vw, 115px);
  background: var(--cream);
}

.archive-hero h1,
.single-post__header h1 {
  max-width: 940px;
  margin-bottom: 20px;
}

.archive-hero p {
  margin: 0;
  font-size: 1.1rem;
}

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

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px 10px 32px 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.post-card:nth-child(even) {
  border-radius: 10px 32px 10px 32px;
}

.post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.55;
}

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

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

.post-card__body {
  padding: 28px;
}

.post-card time,
.single-post time {
  color: var(--lime-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
  margin: 12px 0 18px;
  font-size: 1.45rem;
}

.post-card h2 a,
.post-card h3 a {
  text-decoration: none;
}

.post-card p {
  font-size: 0.88rem;
}

.pagination {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
}

.page-numbers.current {
  color: #fff;
  background: var(--blue);
}

.single-post__media {
  margin-top: 60px;
}

.single-post__media img {
  width: 100%;
  max-height: 650px;
  border-radius: 48px 12px 48px 12px;
  object-fit: cover;
}

.entry-content {
  padding-block: clamp(60px, 8vw, 110px);
}

.prose > * {
  max-width: 100%;
}

.prose h2,
.prose h3 {
  margin-top: 1.7em;
}

.prose p,
.prose li {
  font-size: 1.03rem;
}

.prose a {
  color: var(--blue);
}

.prose img {
  border-radius: 24px;
}

.empty-state {
  display: grid;
  min-height: 68vh;
  padding-block: 100px;
  place-items: center;
  text-align: center;
}

.empty-state h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.empty-state .button-row {
  justify-content: center;
  margin-top: 30px;
}

/* Footer */
.footer-cta {
  padding-block: 58px;
  color: #fff;
  background: var(--blue);
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-cta h2 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.footer-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding-block: 78px 30px;
  color: #dce3f7;
  background: var(--blue-deep);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) 0.65fr 0.85fr;
  gap: clamp(45px, 7vw, 90px);
}

.site-footer__logo {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.site-footer__logo img {
  width: 68px;
  height: 68px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.site-footer__logo span {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
}

.site-footer p,
.site-footer li {
  color: #b8c3df;
  font-size: 0.88rem;
}

.site-footer__brand p {
  max-width: 450px;
}

.footer-heading {
  margin-bottom: 23px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a,
.social-links a,
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover,
.social-links a:hover,
.site-footer__legal a:hover {
  color: var(--lime);
}

.footer-links--contact li {
  margin-bottom: 14px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-phone svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--lime);
}

.company-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 17px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 780;
}

.company-id {
  display: inline-grid;
  gap: 3px;
  margin: 0;
  padding: 10px 14px;
  border-left: 3px solid var(--lime);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.055);
}

.company-id strong {
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.025em;
}

.company-id span {
  color: #c8d2eb;
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  transition: transform 180ms ease, filter 180ms ease;
}

.social-links a:hover {
  background: transparent;
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.social-links svg {
  display: block;
  width: 34px;
  height: 34px;
}

.social-link--linkedin {
  padding: 3px !important;
  color: #63b3ed !important;
}

.site-footer__legal {
  display: flex;
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer__credits {
  display: block !important;
}

.site-footer__credits p {
  margin: 0;
}

.site-footer__credits .link007-credit {
  white-space: nowrap;
  color: #aebbdc;
}

.site-footer__credits .link007-credit a {
  color: var(--lime);
  font-weight: 750;
}

.site-footer__legal p {
  margin: 0;
  font-size: 0.76rem;
}

.site-footer__legal > div:last-child {
  display: flex;
  gap: 22px;
  color: #b8c3df;
  font-size: 0.76rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(19, 36, 87, 0.1);
  border-radius: 999px;
  color: var(--blue-ink);
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 56, 24, 0.25);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #128c4a;
}

.whatsapp-float__icon svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float__text {
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 42px rgba(7, 56, 24, 0.3);
}

/* Reveal is progressive enhancement: content remains visible without JS. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1230px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .site-header__cta {
    display: none;
  }
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .site-header__cta {
    display: none;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 50px;
  }

  .home-hero__visual {
    min-height: 500px;
  }

  .benefit-item {
    grid-column: span 6;
  }

  .benefit-item:nth-child(even) {
    margin-top: 0;
  }

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

@media (max-width: 920px) {
  :root {
    --container: min(100% - 36px, 760px);
    --narrow: min(100% - 36px, 700px);
  }

  .site-topbar__inner {
    justify-content: center;
  }

  .site-topbar p {
    display: none;
  }

  .site-header__inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .site-brand img,
  .custom-logo {
    height: 50px;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(37, 64, 154, 0.15);
    border-radius: 999px;
    color: var(--blue-deep);
    background: #fff;
    font-size: 0.77rem;
    font-weight: 780;
    cursor: pointer;
  }

  .menu-toggle__icon {
    display: grid;
    gap: 5px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    z-index: 20;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    grid-column: 1 / -1;
    justify-self: stretch;
    visibility: hidden;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    padding: 24px 18px 50px;
    opacity: 0;
    background: #fff;
    box-shadow: 0 26px 48px rgba(19, 36, 87, 0.14);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .abca-menu {
    width: min(100%, 720px);
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .abca-menu > li {
    border-bottom: 1px solid var(--line);
  }

  .abca-menu > li > a {
    min-height: 58px;
    justify-content: space-between;
    font-size: 1rem;
  }

  .abca-menu .sub-menu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 0 0 13px 18px;
    border: 0;
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .home-hero {
    padding-top: 65px;
  }

  .home-hero__grid,
  .page-hero__grid,
  .story-split,
  .calculator-section__grid,
  .calculator-page__grid,
  .testimonial-section__grid,
  .requirements-section__grid,
  .contact-layout,
  .faq-layout,
  .payment-options {
    grid-template-columns: 1fr;
  }

  .home-hero__visual {
    min-height: 570px;
  }

  .home-hero__note {
    right: 0;
  }

  .trust-ribbon__inner {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 14px;
  }

  .trust-ribbon span {
    min-height: 42px;
    display: grid;
    place-items: center;
  }

  .trust-ribbon span:nth-child(2) {
    border-right: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .story-split--reverse .story-split__copy {
    order: 0;
  }

  .story-split__media {
    order: 2;
  }

  .calculator-section__shape {
    width: 120vw;
  }

  .insurance-pair,
  .purpose-grid,
  .payment-steps {
    grid-template-columns: 1fr;
  }

  .insurance-feature--offset,
  .purpose-grid article:nth-child(2) {
    margin-top: 0;
  }

  .testimonial-section__image {
    order: 2;
  }

  .page-hero__copy {
    max-width: 680px;
  }

  .page-hero__media img {
    min-height: 470px;
  }

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

  .service-editorial article:nth-child(even) img {
    order: 0;
  }

  .faq-layout aside {
    position: static;
  }

  .pqr-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-cta__inner,
  .help-strip,
  .document-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
    --narrow: calc(100% - 28px);
    --radius: 22px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

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

  .section {
    padding-block: 76px;
  }

  .site-topbar__links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .site-topbar__inner {
    min-height: 46px;
  }

  .site-topbar__links {
    font-size: 0.72rem;
  }

  .site-topbar .topbar-payment {
    min-height: 34px;
    padding: 6px 10px;
  }

  .topbar-phone,
  .topbar-payment {
    gap: 5px;
  }

  .topbar-phone svg,
  .topbar-payment svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .site-brand img,
  .custom-logo {
    height: 44px;
    max-width: 190px;
  }

  .menu-toggle__label {
    display: none;
  }

  .home-hero {
    padding-block: 56px 82px;
  }

  .home-hero h1 {
    margin-bottom: 22px;
  }

  .home-hero__lead {
    font-size: 1rem;
  }

  .button-row .button {
    width: 100%;
  }

  .home-hero__proof {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 38px;
  }

  .home-hero__visual {
    min-height: 420px;
  }

  .home-hero__visual::before {
    width: 110px;
    height: 110px;
    border-width: 23px;
  }

  .home-hero__note {
    right: -4px;
    bottom: -18px;
    width: 78%;
  }

  .trust-ribbon__inner {
    grid-template-columns: 1fr;
  }

  .trust-ribbon span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-ribbon span:last-child {
    border-bottom: 0;
  }

  .benefit-flow,
  .documents-grid,
  .posts-grid,
  .posts-grid--two,
  .partner-logos {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-height: 220px;
    grid-column: auto;
  }

  .story-split__media img,
  .testimonial-section__image img,
  .page-hero__media img {
    min-height: 350px;
  }

  .story-split__stamp {
    right: -6px;
    width: 132px;
    height: 132px;
    border-width: 7px;
  }

  .story-split__stamp strong {
    font-size: 1.5rem;
  }

  .loan-calculator {
    padding: 27px 20px;
    border-radius: 30px 10px 30px 10px;
  }

  .insurance-feature {
    min-height: 450px;
  }

  .insurance-feature > div {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

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

  .page-hero {
    padding-block: 60px 78px;
  }

  .purpose-grid article {
    min-height: 0;
  }

  .statement {
    padding: 40px 26px;
    border-radius: 42px 12px 42px 12px;
  }

  .service-editorial img {
    min-height: 300px;
  }

  .requirements-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .document-callout,
  .form-panel,
  .pqr-guide {
    padding: 30px 24px;
  }

  .abca-form__grid {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    grid-template-columns: 32px 1fr auto;
    padding-block: 21px;
    font-size: 0.95rem;
  }

  .faq-list details > div {
    padding: 0 20px 22px 44px;
  }

  .document-item {
    min-height: 300px;
    padding: 30px 25px;
  }

  .payment-qr {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .qr-button {
    width: min(260px, 100%);
    margin-inline: auto;
  }

  .data-notice {
    padding: 24px 20px;
    grid-template-columns: 1fr;
  }

  .footer-cta__inner,
  .site-footer__grid,
  .site-footer__legal {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-cta .button {
    width: 100%;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__legal {
    align-items: start;
  }

  .site-footer__legal > div {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    padding: 4px;
  }

  .whatsapp-float__text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
