:root {
  --color-bg: #f8fbff;
  --color-surface: #ffffff;
  --color-surface-alt: #edf4ff;
  --color-text: #0c1c36;
  --color-muted: #466089;
  --color-primary: #1257d9;
  --color-primary-hover: #0f47b2;
  --color-border: #cfe0fa;
  --shadow-card: 0 8px 24px rgba(18, 87, 217, 0.08);
  --shadow-hover: 0 16px 36px rgba(18, 87, 217, 0.15);
  --container-max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #1f6fff;
  outline-offset: 2px;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 0%, rgba(18, 87, 217, 0.14) 0, rgba(18, 87, 217, 0) 35%),
    radial-gradient(circle at 85% 20%, rgba(68, 151, 250, 0.1) 0, rgba(68, 151, 250, 0) 30%),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  line-height: 1.6;
}

.container {
  width: min(var(--container-max), calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.25s ease;
}

.header.header--hidden {
  transform: translateY(-102%);
}

.header.header--elevated {
  box-shadow: 0 10px 28px rgba(15, 27, 42, 0.1);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.header__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #9abaf3;
  background: linear-gradient(180deg, #f3f8ff 0%, #e6f0ff 100%);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__logo {
  width: 164px;
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.nav__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 0.72rem;
  border-radius: 11px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__link:hover {
  background: #e8eef9;
  color: var(--color-primary);
}

.nav__link--active {
  background: #e8eef9;
  color: var(--color-primary);
  border: 1px solid #c8d8f2;
}

.site-main {
  flex: 1;
}

.home-page .site-main {
  padding-top: 0;
}

[id] {
  scroll-margin-top: 98px;
}

.section {
  padding: clamp(1.8rem, 3vw, 3.2rem) 0;
}

.section--screen {
  min-height: clamp(420px, 66svh, 760px);
  display: flex;
  align-items: center;
}

.section--tint {
  background: linear-gradient(180deg, rgba(14, 78, 207, 0.05) 0%, rgba(14, 78, 207, 0) 100%);
}

.section--hero,
.section--hero-soft {
  position: relative;
  overflow: hidden;
}

.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(95deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.89) 45%, rgba(255, 255, 255, 0.60) 100%),
    var(--hero-image, url("/static/img/hero-bg.caa77962b19c.jpg")) center / cover no-repeat;
}

.section--hero-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.62) 100%),
    var(--hero-image, url("/static/img/hero-bg.caa77962b19c.jpg")) center / cover no-repeat;
}

.section--hero > .container,
.section--hero-soft > .container {
  position: relative;
  z-index: 1;
}

.section--hero.section--screen {
  min-height: 100svh;
}

.section--hero-soft.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.section--final-cta {
  padding-bottom: 7rem;
}

.section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.section__title {
  margin: 0 0 1.1rem;
  line-height: 1.15;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.hero {
  padding-top: 3.4rem;
}

.hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.06;
  margin: 0.6rem 0 1rem;
  max-width: 18ch;
}

.hero__title em {
  color: var(--color-primary);
  font-style: normal;
}

.hero__lead {
  color: var(--color-muted);
  margin: 0;
  max-width: 62ch;
  font-size: 1.06rem;
}

.hero__actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
}

.stat-card {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.stat-card__value {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-card__label {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.82rem 1.12rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

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

.button--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 12px 26px rgba(14, 78, 207, 0.26);
}

.button--secondary {
  color: var(--color-text);
  background: var(--color-surface);
  border-color: var(--color-border);
}

.button--secondary:hover {
  border-color: #b9c8de;
}

.panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: clamp(1.2rem, 2vw, 2rem);
  max-width: 1020px;
  margin-inline: auto;
}

.panel--cta {
  background: linear-gradient(135deg, #f0f4fb 0%, #f7f9fc 100%);
}

.panel__closing {
  margin: 1rem 0 0;
  font-size: 1.12rem;
  font-weight: 800;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

.list--spaced li + li {
  margin-top: 0.5rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.icon-card,
.offer-card,
.quote-card,
.metric-card,
.agency-card,
.product-card,
.process-card,
.contact-card,
.calc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icon-card:hover,
.offer-card:hover,
.quote-card:hover,
.metric-card:hover,
.agency-card:hover,
.product-card:hover,
.process-card:hover,
.contact-card:hover,
.calc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #bfd0ea;
}

.icon-card h3,
.offer-card h3,
.product-card h3,
.process-card h3,
.metric-card h3 {
  margin: 0 0 0.55rem;
  line-height: 1.25;
}

.icon-card p,
.offer-card p,
.quote-card p,
.product-card p,
.process-card p,
.metric-card p,
.agency-card p {
  margin: 0;
  color: var(--color-muted);
}

.icon-card__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: #e5edfb;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.1;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  overflow: hidden;
  padding: 0.3rem;
  margin-bottom: 0.8rem;
}

.icon-svg {
  width: 26px;
  height: 26px;
  display: block;
}

.calc-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 244, 251, 0.92) 100%);
  border: 1px solid #c7d8f1;
}

.calc-card .form-grid {
  margin-bottom: 0.85rem;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.calc-fields {
  display: grid;
  gap: 0.8rem;
}

.calc-result-box {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #f9fbff;
  padding: 0.9rem;
}

.calc-card .form__note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  background: #eef3fc;
}

.metric-card {
  text-align: center;
}

.metric-card__value {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
}

.metric-card__label {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-weight: 600;
}

.agency-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agency-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  font-weight: 800;
  color: #1b376f;
  background: linear-gradient(180deg, #f9fbff 0%, #edf3fd 100%);
}

.process-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps-line {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.steps-line__item {
  position: relative;
  padding: 0.2rem 0.3rem 0;
}

.steps-line__item::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 38px;
  right: -16px;
  height: 2px;
  background: linear-gradient(90deg, #c9d8f0 0%, #d9e4f7 100%);
}

.steps-line__item:last-child::after {
  display: none;
}

.steps-line__dot {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid #b8cae9;
  background: #fff;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 0.65rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.steps-line__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.25;
}

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

.steps-line__item:hover .steps-line__dot {
  transform: scale(1.08);
  border-color: var(--color-primary);
  box-shadow: 0 8px 18px rgba(14, 78, 207, 0.2);
}

.process-card__step {
  margin: 0 0 0.5rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e5edfb;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.team-grid {
  align-items: stretch;
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #ecf2fb;
}

.team-card__body {
  padding: 1rem;
}

.team-card__body h3,
.team-card__body h4 {
  margin: 0;
}

.team-card__role {
  margin: 0.35rem 0 0;
  color: var(--color-primary);
  font-weight: 700;
}

.team-card__benefit {
  margin: 0.8rem 0;
  color: var(--color-muted);
}

.team-card__body ul {
  margin: 0.7rem 0 0;
}

.team-card__contact {
  margin: 0.5rem 0 0;
  font-size: 0.94rem;
}

.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  background: #e8effd;
  color: #12377f;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.steps__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  align-items: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 0.9rem 1rem;
}

.timeline__item h3 {
  margin: 0;
  line-height: 1.25;
}

.timeline__item p {
  margin: 0.4rem 0 0;
  color: var(--color-muted);
}

.timeline__index {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e5edfb;
  color: var(--color-primary);
  font-weight: 800;
}

.status-flow__lead {
  margin: 0 0 0.8rem;
  color: var(--color-muted);
}

.status-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.status-flow__item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #f9fbff;
  padding: 0.45rem 0.7rem;
  font-size: 0.87rem;
  font-weight: 700;
}

.quote-card {
  margin: 0;
}

.quote-card cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 0.65rem;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq__item p {
  margin: 0.7rem 0 0;
  color: var(--color-muted);
}

.content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  max-width: 980px;
  margin-inline: auto;
}

.content h1 {
  margin-top: 0;
}

.legal-content {
  max-width: 78ch;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-content h2 {
  margin: 2rem 0 0.65rem;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.3;
}

.legal-content p {
  margin: 0;
  color: var(--color-muted);
}

.form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.form-group-title {
  margin: 0.35rem 0 0.1rem;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form__field {
  display: grid;
  gap: 0.35rem;
}

.form__field label {
  font-weight: 700;
}

.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.72rem 0.88rem;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.form__field textarea {
  resize: vertical;
}

.form__error {
  margin: 0;
  color: #b3261e;
  font-size: 0.92rem;
}

.form__note {
  margin: 0.2rem 0 0;
  color: var(--color-muted);
}

.form-feedback {
  margin-top: 1rem;
}

.form-feedback__item {
  margin: 0 0 0.5rem;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}

.form-feedback__item--success {
  background: #e9f8ef;
  border: 1px solid #b3e6c6;
}

.form-feedback__item--error {
  background: #fdeeed;
  border: 1px solid #f4c5c0;
}

.calc-result {
  margin-top: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #edf3fd 0%, #e4eefc 100%);
  color: #1b376f;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-grid--form {
  align-items: start;
}

.contact-card h3 {
  margin: 0 0 0.6rem;
}

.contact-card .section__title {
  margin-bottom: 0.7rem;
}

.contact-grid .contact-card,
.contact-grid--form .contact-card {
  padding: 1.35rem 1.4rem;
}

.contact-card--side {
  position: sticky;
  top: 96px;
}

.contact-card__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 6px;
  border: 1px solid #d7e4fa;
  border-radius: 10px;
  background: #edf3ff;
  margin: 0;
  color: var(--color-primary);
}

.contact-info-list {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.55rem;
}

.contact-item {
  margin: 0;
  color: var(--color-text);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  border: 1px solid #dbe6f7;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.62rem 0.72rem;
}

.contact-item__body {
  display: grid;
  gap: 0.1rem;
}

.contact-item__body strong {
  font-size: 0.77rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b6f94;
}

.contact-item__body span {
  color: var(--color-text);
  font-weight: 600;
}

.contact-card a {
  color: #173b86;
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-step-list {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  gap: 0.6rem;
}

.contact-step-list li {
  counter-increment: step-counter;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.58rem 0.68rem;
  border: 1px solid #dbe6f7;
  border-radius: 10px;
  background: #f8fbff;
}

.contact-step-list li::before {
  content: counter(step-counter);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8effd;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  margin-top: 0.1rem;
}

.team-direct-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.team-direct-item {
  border: 1px solid #dbe6f7;
  border-radius: 11px;
  background: #f8fbff;
  padding: 0.62rem 0.72rem;
}

.team-direct-name {
  display: block;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: var(--color-text);
}

.team-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-sticky {
  position: fixed;
  right: 1rem;
  bottom: 1.35rem;
  z-index: 40;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.cta-sticky:hover {
  background: var(--color-primary-hover);
}

.cta-sticky--hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.cta-sticky--lift {
  transform: translateY(-84px);
}

.footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #9abaf3;
  background: linear-gradient(180deg, #f3f8ff 0%, #e6f0ff 100%);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__company {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.footer__nav {
  display: flex;
  gap: 1rem;
}

.footer__link {
  color: var(--color-text);
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.grid > *:nth-child(1),
.agency-grid > *:nth-child(1),
.process-grid > *:nth-child(1),
.steps-line > *:nth-child(1) { transition-delay: 0ms; }
.grid > *:nth-child(2),
.agency-grid > *:nth-child(2),
.process-grid > *:nth-child(2),
.steps-line > *:nth-child(2) { transition-delay: 40ms; }
.grid > *:nth-child(3),
.agency-grid > *:nth-child(3),
.process-grid > *:nth-child(3),
.steps-line > *:nth-child(3) { transition-delay: 80ms; }
.grid > *:nth-child(4),
.agency-grid > *:nth-child(4),
.process-grid > *:nth-child(4),
.steps-line > *:nth-child(4) { transition-delay: 120ms; }
.grid > *:nth-child(5),
.agency-grid > *:nth-child(5),
.process-grid > *:nth-child(5),
.steps-line > *:nth-child(5) { transition-delay: 160ms; }

@media (max-width: 1100px) {
  .agency-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .steps-line__item::after {
    right: -10px;
  }
}

@media (max-width: 1000px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps-line {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .steps-line__item::after {
    display: none;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 800px) {
  .header__inner {
    align-items: center;
    flex-wrap: wrap;
    min-height: auto;
    padding: 0.75rem 0;
  }

  .no-js .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header__logo {
    width: 142px;
  }

  .header__mark,
  .footer__mark {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .js .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid var(--color-border);
    padding-top: 0.6rem;
    order: 3;
  }

  .js .nav.nav--open {
    display: flex;
  }

  .section--screen {
    min-height: auto;
  }

  .home-page .section--hero {
    padding-top: calc(2.5rem + 76px);
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .agency-grid,
  .process-grid,
  .steps-line,
  .contact-grid,
  .form-grid,
  .calc-layout {
    grid-template-columns: 1fr;
  }

  .icon-card__symbol {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 0.62rem;
    line-height: 1.05;
    padding: 0.36rem;
  }

  .cta-sticky {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }

  .contact-card--side {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


/* ===== Reference Replica Styles ===== */
/* =====================================================
   GLOBAL VARIABLES & RESET
===================================================== */
:root {
  --ink:       #0d2c5f;
  --ink2:      #164181;
  --ink3:      #1a4e98;
  --gold:      #2d78ff;
  --gold-lt:   #5b96ff;
  --gold-dim:  rgba(45,120,255,.12);
  --gold-bdr:  rgba(45,120,255,.24);
  --sand:      #f5f9ff;
  --sand2:     #eaf2ff;
  --white:     #ffffff;
  --body-txt:  #1e3556;
  --muted:     #5f7391;
  --border:    rgba(0,0,0,.08);
  --dark-bdr:  rgba(255,255,255,.07);
  --radius:    6px;
  --shadow:    0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.16);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Segoe UI','Trebuchet MS','Helvetica Neue',Arial,sans-serif;background:var(--sand);color:var(--body-txt);overflow-x:hidden}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}

/* =====================================================
   SCROLLBAR
===================================================== */
::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{background:var(--ink)}
::-webkit-scrollbar-thumb{background:var(--gold);border-radius:2px}

/* =====================================================
   PAGE SYSTEM – only active page visible
===================================================== */
.page{display:none;animation:pageFade .45s ease both}
.page.active{display:block}
@keyframes pageFade{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}

/* =====================================================
   NAVIGATION
===================================================== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:500;
  height:70px;display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;
  background:rgba(13,44,92,.97);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--dark-bdr);
  transition:height .3s;
}
.nav.scrolled{height:60px}

.nav-brand{display:flex;align-items:center;gap:11px}
.nav-emblem{
  width:38px;height:38px;border:1.5px solid var(--gold);border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  font-family:Georgia,'Times New Roman',serif;font-size:1.15rem;font-weight:700;color:var(--gold);
  flex-shrink:0;
}
.nav-wordmark{font-family:Georgia,'Times New Roman',serif;font-size:1.2rem;font-weight:500;color:#fff;letter-spacing:.04em}
.nav-wordmark b{color:var(--gold);font-weight:700}

.nav-links{display:flex;align-items:center;gap:0}
.nav-links a{
  display:block;padding:0 .95rem;
  color:rgba(255,255,255,.58);font-size:.78rem;font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;
  transition:color .2s;
  cursor:pointer;
}
.nav-links a:hover,.nav-links a.active{color:var(--gold)}
.nav-cta{
  margin-left:1.2rem;padding:.52rem 1.3rem;
  background:var(--gold);color:var(--ink)!important;
  font-size:.75rem!important;font-weight:700!important;letter-spacing:.09em!important;
  text-transform:uppercase!important;border-radius:3px;
  transition:background .2s,transform .15s!important;
}
.nav-cta:hover{background:var(--gold-lt)!important;transform:translateY(-1px)}

.hamburger{display:none;flex-direction:column;gap:5px;padding:6px;cursor:pointer}
.hamburger span{display:block;width:22px;height:1.5px;background:#fff;border-radius:2px;transition:.3s}

/* =====================================================
   SHARED UTILITIES
===================================================== */
.container{max-width:1180px;margin:0 auto;padding:0 5%}

.eyebrow{display:inline-flex;align-items:center;gap:10px;margin-bottom:1rem}
.eyebrow-line{width:28px;height:1px;background:var(--gold)}
.eyebrow span{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);font-weight:600}

.h2-dark{font-family:Georgia,'Times New Roman',serif;font-size:clamp(2rem,3.2vw,2.8rem);font-weight:700;color:var(--ink);line-height:1.15;margin-bottom:1.1rem}
.h2-light{font-family:Georgia,'Times New Roman',serif;font-size:clamp(2rem,3.2vw,2.8rem);font-weight:700;color:#fff;line-height:1.15;margin-bottom:1.1rem}
.sub-dark{font-size:.95rem;color:var(--muted);line-height:1.8;font-weight:300;max-width:500px}
.sub-light{font-size:.95rem;color:rgba(255,255,255,.48);line-height:1.8;font-weight:300;max-width:500px}

.btn-gold{
  display:inline-flex;align-items:center;gap:8px;
  padding:.85rem 2rem;background:var(--gold);color:var(--ink);
  font-size:.82rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  border-radius:3px;border:1.5px solid var(--gold);
  transition:background .2s,transform .2s;cursor:pointer;
}
.btn-gold:hover{background:var(--gold-lt);border-color:var(--gold-lt);transform:translateY(-2px)}
.btn-ghost-dark{
  display:inline-flex;align-items:center;gap:8px;
  padding:.85rem 2rem;background:transparent;color:var(--ink);
  font-size:.82rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;
  border-radius:3px;border:1.5px solid rgba(0,0,0,.2);
  transition:border-color .2s,color .2s,transform .2s;cursor:pointer;
}
.btn-ghost-dark:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}
.btn-ghost-light{
  display:inline-flex;align-items:center;gap:8px;
  padding:.85rem 2rem;background:transparent;color:#fff;
  font-size:.82rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;
  border-radius:3px;border:1.5px solid rgba(255,255,255,.22);
  transition:border-color .2s,color .2s,transform .2s;cursor:pointer;
}
.btn-ghost-light:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}

.arr{font-size:1rem;transition:transform .2s;display:inline-block}
.btn-gold:hover .arr,.btn-ghost-dark:hover .arr,.btn-ghost-light:hover .arr{transform:translateX(4px)}

/* reveal on scroll */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.reveal.vis{opacity:1;transform:translateY(0)}

/* page hero banner (inner pages) */
.page-hero{
  position:relative;padding:140px 5% 80px;overflow:hidden;
  background:var(--ink);
}
.page-hero-bg{position:absolute;inset:0;z-index:0}
.page-hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.22;filter:grayscale(20%)}
.page-hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(120deg,rgba(13,44,92,.95) 0%,rgba(13,44,92,.6) 100%)}
.page-hero-content{position:relative;z-index:1;max-width:700px}
.page-hero h1{font-family:Georgia,'Times New Roman',serif;font-size:clamp(2.4rem,4.5vw,3.8rem);font-weight:700;color:#fff;line-height:1.1;margin-bottom:1.2rem}
.page-hero h1 em{font-style:italic;color:var(--gold)}
.page-hero p{font-size:1.02rem;color:rgba(255,255,255,.55);line-height:1.85;font-weight:300;max-width:550px}

/* section spacing */
.sec{padding:5.5rem 0}
.sec-dark{background:var(--ink);padding:5.5rem 0}
.sec-ink2{background:var(--ink2);padding:5.5rem 0}
.sec-sand{background:var(--sand);padding:5.5rem 0}
.sec-sand2{background:var(--sand2);padding:5.5rem 0}
.sec-white{background:var(--white);padding:5.5rem 0}

/* two-col layout */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.two-col-3-2{display:grid;grid-template-columns:3fr 2fr;gap:5rem;align-items:center}

/* img wrap with golden frame offset */
.img-framed{position:relative}
.img-framed::before{
  content:'';position:absolute;inset:-18px;
  border:1px solid var(--gold-bdr);border-radius:var(--radius);
  pointer-events:none;z-index:0;
}
.img-framed img{position:relative;z-index:1;width:100%;border-radius:var(--radius);object-fit:cover;filter:brightness(.78) grayscale(10%)}

/* card styles */
.card-white{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.8rem;transition:box-shadow .3s,transform .3s}
.card-white:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.card-dark{background:var(--ink3);border:1px solid var(--dark-bdr);border-radius:var(--radius);padding:2rem 1.8rem;transition:box-shadow .3s,transform .3s}
.card-dark:hover{box-shadow:0 12px 40px rgba(0,0,0,.25);transform:translateY(-3px)}

.about-stats-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.4rem;align-items:stretch}
.about-stat{height:100%;text-align:center;padding:2.5rem 1.5rem;display:flex;flex-direction:column;justify-content:center;min-width:0}
.about-stat__value{font-family:Georgia,'Times New Roman',serif;font-size:3rem;font-weight:700;color:var(--gold);display:block;line-height:1;margin-bottom:.5rem}
.about-stat__label{font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.4);display:block;line-height:1.5;overflow-wrap:anywhere}

/* grid helpers */
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}

/* trust strip */
.trust-strip{background:var(--ink2);border-bottom:1px solid var(--dark-bdr);padding:1.2rem 5%}
.trust-strip-inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:3rem;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:8px;color:rgba(255,255,255,.48);font-size:.78rem;letter-spacing:.04em;white-space:nowrap}
.trust-item svg{flex-shrink:0}

/* partners */
.partners-bar{background:var(--white);padding:2.5rem 5%;border-top:1px solid var(--border)}
.partners-bar-inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;gap:2rem;flex-wrap:wrap}
.partners-label{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);padding-right:2rem;border-right:1px solid var(--border);flex-shrink:0}
.partner-logos{display:flex;align-items:center;gap:1.8rem;flex-wrap:wrap}
.partner-pill{font-size:.82rem;font-weight:700;letter-spacing:.06em;color:#bbb;transition:color .2s;cursor:default}
.partner-pill:hover{color:var(--ink)}

/* footer */
.site-footer{background:#0d2c5f;padding:2.5rem 5%;border-top:1px solid rgba(255,255,255,.05)}
.footer-inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1.2rem}
.footer-brand{font-family:Georgia,'Times New Roman',serif;font-size:1rem;color:rgba(255,255,255,.4)}
.footer-brand b{color:var(--gold)}
.footer-address{font-size:.75rem;color:rgba(255,255,255,.2);margin-top:.2rem}
.footer-links{display:flex;gap:1.6rem}
.footer-links a{font-size:.75rem;color:rgba(255,255,255,.28);transition:color .2s}
.footer-links a:hover{color:var(--gold)}
.footer-copy{font-size:.72rem;color:rgba(255,255,255,.18)}

/* =====================================================
   HOME PAGE
===================================================== */
.hero{
  position:relative;min-height:100svh;
  display:flex;align-items:center;overflow:hidden;padding-top:70px;
}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center 25%;filter:brightness(.25)}
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(110deg,rgba(13,44,92,.96) 0%,rgba(13,44,92,.62) 55%,rgba(13,44,92,.3) 100%);
}
.hero-accent-line{position:absolute;left:5%;top:70px;bottom:0;width:1px;background:linear-gradient(to bottom,transparent,var(--gold) 15%,var(--gold) 85%,transparent);opacity:.25;z-index:1}
.hero-content{position:relative;z-index:2;padding:5rem 5% 5rem 8%;max-width:840px;animation:heroIn .9s ease both}
@keyframes heroIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero h1{font-family:Georgia,'Times New Roman',serif;font-size:clamp(2.8rem,5.2vw,4.8rem);font-weight:700;color:#fff;line-height:1.09;margin-bottom:1.6rem;letter-spacing:-.01em}
.hero h1 em{font-style:italic;color:var(--gold)}
.hero-lead{font-size:clamp(.95rem,1.25vw,1.06rem);color:rgba(255,255,255,.55);line-height:1.9;max-width:530px;margin-bottom:2.6rem;font-weight:300}
.hero-actions{display:flex;align-items:center;gap:1.1rem;flex-wrap:wrap;margin-bottom:4rem}
.hero-stats{display:flex;gap:0;border-top:1px solid rgba(255,255,255,.1);padding-top:2.4rem;flex-wrap:wrap}
.hero-stat{padding-right:2.8rem;margin-right:2.8rem;border-right:1px solid rgba(255,255,255,.1)}
.hero-stat:last-child{border-right:none}
.stat-num{font-family:Georgia,'Times New Roman',serif;font-size:2.2rem;font-weight:700;color:var(--gold);display:block;line-height:1}
.stat-label{font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.38);margin-top:.3rem;display:block}
.scroll-hint{position:absolute;bottom:2.2rem;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:7px;color:rgba(255,255,255,.25);font-size:.65rem;letter-spacing:.15em;text-transform:uppercase}
.scroll-line{width:1px;height:44px;background:linear-gradient(to bottom,var(--gold),transparent);animation:scPulse 2s ease infinite}
@keyframes scPulse{0%,100%{opacity:.4}50%{opacity:1}}

/* pain */
.pain-list{margin-top:2rem}
.pain-item{display:flex;gap:1rem;align-items:flex-start;padding:1.15rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.pain-item:last-child{border-bottom:none}
.p-dot{flex-shrink:0;margin-top:3px;width:20px;height:20px;border-radius:50%;background:var(--gold-dim);border:1px solid var(--gold-bdr);display:flex;align-items:center;justify-content:center}
.p-dot svg{width:9px;height:9px}
.pain-txt{font-size:.92rem;color:rgba(255,255,255,.58);line-height:1.75;font-weight:300}
.callout-resolve{margin-top:1.8rem;padding:1.1rem 1.4rem;background:var(--gold-dim);border-left:2px solid var(--gold);border-radius:0 3px 3px 0;color:var(--gold-lt);font-size:.86rem;line-height:1.75;font-style:italic}

/* why grid */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.why-card{background:var(--white);padding:2.2rem 1.7rem;position:relative;overflow:hidden;transition:background .3s}
.why-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .35s}
.why-card:hover{background:var(--sand)}
.why-card:hover::after{transform:scaleX(1)}
.why-icon{width:46px;height:46px;margin-bottom:1.2rem;background:var(--sand);border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;border:1px solid var(--border)}
.why-card h3{font-family:Georgia,'Times New Roman',serif;font-size:1.12rem;font-weight:700;color:var(--ink);margin-bottom:.6rem}
.why-card p{font-size:.84rem;color:var(--muted);line-height:1.75;font-weight:300}

/* offer cards */
.offer-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--dark-bdr);border:1px solid var(--dark-bdr);border-radius:var(--radius);overflow:hidden}
.offer-card{background:var(--ink3);overflow:hidden;transition:background .3s}
.offer-card:hover{background:#212e3d}
.offer-img{width:100%;height:240px;object-fit:cover;filter:brightness(.48) grayscale(12%);transition:transform .6s,filter .4s}
.offer-card:hover .offer-img{transform:scale(1.04);filter:brightness(.55) grayscale(0%)}
.offer-body{padding:2rem 2rem 2.3rem}
.offer-tag{font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem;display:block}
.offer-body h3{font-family:Georgia,'Times New Roman',serif;font-size:1.75rem;font-weight:700;color:#fff;margin-bottom:.75rem;line-height:1.15}
.offer-body p{font-size:.87rem;color:rgba(255,255,255,.48);line-height:1.8;font-weight:300;margin-bottom:1.4rem}
.offer-bullets{margin-bottom:1.6rem}
.offer-bullets li{font-size:.82rem;color:rgba(255,255,255,.5);padding:.3rem 0 .3rem 1rem;position:relative}
.offer-bullets li::before{content:'—';position:absolute;left:0;color:var(--gold);font-size:.7rem}
.card-white .offer-bullets li{color:#5b7395}
.offer-link{display:inline-flex;align-items:center;gap:7px;font-size:.76rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);border-bottom:1px solid var(--gold-bdr);padding-bottom:2px;transition:gap .2s,border-color .2s;cursor:pointer}
.offer-link:hover{gap:13px;border-color:var(--gold)}

/* whom */
.whom-card{background:var(--white);border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);transition:box-shadow .3s,transform .3s}
.whom-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.whom-img{width:100%;height:155px;object-fit:cover;filter:brightness(.82) grayscale(8%);transition:filter .4s}
.whom-card:hover .whom-img{filter:brightness(.95) grayscale(0%)}
.whom-body{padding:1.3rem 1.2rem 1.6rem}
.whom-icon{font-size:1.5rem;margin-bottom:.6rem}
.whom-body h3{font-family:Georgia,'Times New Roman',serif;font-size:1.1rem;font-weight:700;color:var(--ink);margin-bottom:.4rem}
.whom-body p{font-size:.82rem;color:var(--muted);line-height:1.7;font-weight:300}

/* process */
.process-step-list{margin-top:2.2rem}
.proc-step{display:flex;gap:1.3rem;align-items:flex-start;padding:1.2rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.proc-step:last-child{border-bottom:none}
.proc-num{flex-shrink:0;width:42px;height:42px;border:1.5px solid var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:Georgia,'Times New Roman',serif;font-size:1rem;font-weight:700;color:var(--gold);margin-top:2px}
.proc-body h4{font-size:.93rem;font-weight:700;color:#fff;margin-bottom:.35rem}
.proc-body p{font-size:.84rem;color:rgba(255,255,255,.44);line-height:1.7;font-weight:300}

/* testimonials */
.testi-card{background:var(--ink3);border:1px solid var(--dark-bdr);border-radius:var(--radius);padding:2.2rem 1.8rem;transition:background .3s}
.testi-card:hover{background:#212d3c}
.testi-quote-mark{font-family:Georgia,'Times New Roman',serif;font-size:3.5rem;line-height:1;color:var(--gold);opacity:.18;display:block;margin-bottom:.3rem}
.stars{color:var(--gold);font-size:.8rem;letter-spacing:.05em;margin-bottom:.9rem}
.testi-text{font-size:.88rem;color:rgba(255,255,255,.58);line-height:1.82;font-weight:300;font-style:italic;margin-bottom:1.6rem}
.testi-author{display:flex;align-items:center;gap:.8rem}
.testi-avatar{width:38px;height:38px;border-radius:50%;background:var(--gold-dim);border:1px solid var(--gold-bdr);display:flex;align-items:center;justify-content:center;font-size:.9rem;flex-shrink:0}
.author-name{font-size:.84rem;font-weight:700;color:#fff}
.author-role{font-size:.74rem;color:rgba(255,255,255,.32);margin-top:1px}

/* FAQ */
.faq-item{border-bottom:1px solid var(--border)}
.faq-btn{width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.25rem 0;text-align:left;font-size:.92rem;font-weight:600;color:var(--ink);transition:color .2s;background:none;border:none;cursor:pointer}
.faq-btn:hover{color:var(--gold)}
.faq-ico{width:22px;height:22px;flex-shrink:0;border:1px solid rgba(0,0,0,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.85rem;color:var(--gold);transition:transform .3s,border-color .2s}
.faq-item.open .faq-ico{transform:rotate(45deg);border-color:var(--gold)}
.faq-ans{display:none;padding-bottom:1.2rem;font-size:.86rem;color:var(--muted);line-height:1.8;font-weight:300}
.faq-item.open .faq-ans{display:block}

/* CTA banner */
.cta-banner{position:relative;overflow:hidden;padding:6rem 5%;background:var(--ink);text-align:center}
.cta-banner-bg{position:absolute;inset:0;z-index:0}
.cta-banner-bg img{width:100%;height:100%;object-fit:cover;filter:brightness(.14) grayscale(30%)}
.cta-banner-bg::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at center,rgba(45,120,255,.08) 0%,transparent 70%)}
.cta-banner-content{position:relative;z-index:1;max-width:680px;margin:0 auto}
.cta-banner-content h2{font-family:Georgia,'Times New Roman',serif;font-size:clamp(2rem,3.5vw,3rem);font-weight:700;color:#fff;line-height:1.15;margin-bottom:1.1rem}
.cta-banner-content h2 em{font-style:italic;color:var(--gold)}
.cta-banner-content p{font-size:.96rem;color:rgba(255,255,255,.48);line-height:1.85;font-weight:300;max-width:460px;margin:0 auto 2.5rem}
.cta-actions{display:flex;justify-content:center;gap:1.1rem;flex-wrap:wrap;margin-bottom:2.2rem}
.cta-contacts{display:flex;justify-content:center;gap:2.5rem;flex-wrap:wrap;padding-top:2rem;border-top:1px solid rgba(255,255,255,.08)}
.cta-contact-item{display:flex;align-items:center;gap:.5rem;font-size:.82rem;color:rgba(255,255,255,.38)}
.cta-contact-item a{color:var(--gold);transition:color .2s}
.cta-contact-item a:hover{color:var(--gold-lt)}

/* =====================================================
   O NAS
===================================================== */
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.value-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.7rem;border-top:3px solid var(--gold)}
.value-icon{font-size:1.6rem;margin-bottom:1rem}
.value-card h3{font-family:Georgia,'Times New Roman',serif;font-size:1.12rem;font-weight:700;color:var(--ink);margin-bottom:.55rem}
.value-card p{font-size:.85rem;color:var(--muted);line-height:1.75;font-weight:300}

.timeline{position:relative;padding-left:2.5rem;margin-top:2rem}
.timeline::before{content:'';position:absolute;left:.7rem;top:0;bottom:0;width:1px;background:linear-gradient(to bottom,var(--gold),rgba(45,120,255,.1))}
.tl-item{position:relative;margin-bottom:2rem}
.tl-dot{position:absolute;left:-2.5rem;top:3px;width:14px;height:14px;border-radius:50%;background:var(--gold);border:3px solid var(--sand)}
.tl-year{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:700;margin-bottom:.35rem}
.tl-item h4{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:.3rem}
.tl-item p{font-size:.84rem;color:var(--muted);line-height:1.7;font-weight:300}

/* =====================================================
   UBEZPIECZENIA
===================================================== */
.ins-category{margin-bottom:1rem}
.ins-cat-header{
  width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:1.1rem 1.4rem;background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius);cursor:pointer;
  font-size:.93rem;font-weight:700;color:var(--ink);text-align:left;
  transition:background .2s,color .2s;
}
.ins-cat-header:hover{background:var(--sand2);color:var(--gold)}
.ins-category.open .ins-cat-header{background:var(--ink);color:#fff;border-color:var(--ink)}
.ins-cat-ico{font-size:1.1rem;margin-right:.7rem}
.ins-cat-arr{font-size:.9rem;color:var(--gold);transition:transform .3s;flex-shrink:0}
.ins-category.open .ins-cat-arr{transform:rotate(90deg)}
.ins-cat-body{display:none;padding:1.5rem 1.4rem 0}
.ins-category.open .ins-cat-body{display:block}
.ins-products{display:grid;grid-template-columns:repeat(3,1fr);gap:.9rem;margin-bottom:1.4rem}
.ins-product{background:var(--sand);border:1px solid var(--border);border-radius:4px;padding:1.1rem 1rem}
.ins-product-name{font-size:.88rem;font-weight:700;color:var(--ink);margin-bottom:.3rem}
.ins-product-desc{font-size:.78rem;color:var(--muted);line-height:1.65;font-weight:300}

/* insurance hero icons grid */
.ins-types-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.ins-type-card{background:var(--ink3);border:1px solid var(--dark-bdr);border-radius:var(--radius);padding:1.8rem 1.4rem;text-align:center;transition:border-color .3s,transform .3s;cursor:pointer}
.ins-type-card:hover{border-color:var(--gold);transform:translateY(-3px)}
.ins-type-icon{font-size:2rem;margin-bottom:.9rem}
.ins-type-card h3{font-size:.9rem;font-weight:700;color:#fff;margin-bottom:.4rem}
.ins-type-card p{font-size:.78rem;color:rgba(255,255,255,.42);line-height:1.65;font-weight:300}

/* =====================================================
   LEASING
===================================================== */
.leasing-feature{display:flex;gap:1.1rem;align-items:flex-start;padding:1.3rem 0;border-bottom:1px solid var(--border)}
.leasing-feature:last-child{border-bottom:none}
.lf-icon{flex-shrink:0;width:44px;height:44px;background:var(--gold-dim);border:1px solid var(--gold-bdr);border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-top:2px}
.lf-body h4{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:.3rem}
.lf-body p{font-size:.85rem;color:var(--muted);line-height:1.7;font-weight:300}

.leasing-steps-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:.8rem;position:relative}
.leasing-steps-grid::before{content:'';position:absolute;top:22px;left:10%;right:10%;height:1px;background:var(--gold-bdr);z-index:0}
.ls-step{text-align:center;position:relative;z-index:1}
.ls-step-num{width:46px;height:46px;border:1.5px solid var(--gold);border-radius:50%;background:var(--ink);display:flex;align-items:center;justify-content:center;margin:0 auto .9rem;font-family:Georgia,'Times New Roman',serif;font-size:1rem;font-weight:700;color:var(--gold)}
.ls-step h4{font-size:.8rem;font-weight:700;color:#fff;margin-bottom:.3rem}
.ls-step p{font-size:.74rem;color:rgba(255,255,255,.4);line-height:1.6;font-weight:300}

.leasing-calc{background:var(--ink3);border:1px solid var(--dark-bdr);border-radius:var(--radius);padding:2.2rem 2rem}
.calc-title{font-family:Georgia,'Times New Roman',serif;font-size:1.3rem;font-weight:700;color:#fff;margin-bottom:1.5rem}
.calc-row{margin-bottom:1.2rem}
.calc-label{font-size:.76rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:.45rem;display:block}
.calc-input{width:100%;background:rgba(255,255,255,.06);border:1px solid var(--dark-bdr);border-radius:3px;padding:.7rem 1rem;color:#fff;font-family:'Segoe UI','Trebuchet MS','Helvetica Neue',Arial,sans-serif;font-size:.9rem;outline:none;transition:border-color .2s}
.calc-input:focus{border-color:var(--gold)}
.calc-select{width:100%;background:rgba(255,255,255,.06);border:1px solid var(--dark-bdr);border-radius:3px;padding:.7rem 1rem;color:#fff;font-family:'Segoe UI','Trebuchet MS','Helvetica Neue',Arial,sans-serif;font-size:.9rem;outline:none;cursor:pointer}
.calc-select option{background:var(--ink2)}
.calc-result{background:var(--gold-dim);border:1px solid var(--gold-bdr);border-radius:3px;padding:1rem 1.2rem;text-align:center;margin-top:1rem}
.calc-result-label{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:.3rem}
.calc-result-val{font-family:Georgia,'Times New Roman',serif;font-size:2rem;font-weight:700;color:#fff}

/* =====================================================
   POLECAJ
===================================================== */
.referral-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.ref-step{text-align:center;padding:2.5rem 1.5rem}
.ref-step-num{font-family:Georgia,'Times New Roman',serif;font-size:4rem;font-weight:700;color:var(--gold);opacity:.22;line-height:1;margin-bottom:.5rem}
.ref-step h3{font-family:Georgia,'Times New Roman',serif;font-size:1.2rem;font-weight:700;color:var(--ink);margin-bottom:.7rem}
.ref-step p{font-size:.87rem;color:var(--muted);line-height:1.75;font-weight:300}

.ref-benefits{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin-top:2rem}
.ref-benefit{background:var(--sand2);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem 1.4rem;display:flex;gap:1rem;align-items:flex-start}
.rb-icon{flex-shrink:0;width:38px;height:38px;background:var(--gold-dim);border:1px solid var(--gold-bdr);border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;margin-top:2px}
.rb-body h4{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:.3rem}
.rb-body p{font-size:.82rem;color:var(--muted);line-height:1.7;font-weight:300}

.ref-form{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2.5rem 2rem}
.ref-form h3{font-family:Georgia,'Times New Roman',serif;font-size:1.5rem;font-weight:700;color:var(--ink);margin-bottom:1.5rem}
.form-row{margin-bottom:1.1rem}
.form-label{display:block;font-size:.74rem;letter-spacing:.09em;text-transform:uppercase;color:var(--muted);margin-bottom:.4rem;font-weight:600}
.form-input{width:100%;padding:.72rem 1rem;border:1px solid var(--border);border-radius:3px;font-family:'Segoe UI','Trebuchet MS','Helvetica Neue',Arial,sans-serif;font-size:.9rem;color:var(--ink);outline:none;background:var(--sand);transition:border-color .2s}
.form-input:focus{border-color:var(--gold);background:#fff}
.form-input::placeholder{color:#bbb}
.form-note{font-size:.76rem;color:var(--muted);margin-top:1rem;line-height:1.65}

/* =====================================================
   ZESPÓŁ
===================================================== */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem}
.team-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:box-shadow .3s,transform .3s}
.team-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.team-img{width:100%;height:260px;object-fit:cover;object-position:center top;filter:grayscale(15%);transition:filter .4s}
.team-card:hover .team-img{filter:grayscale(0%)}
.team-body{padding:1.5rem 1.4rem 1.8rem}
.team-name{font-family:Georgia,'Times New Roman',serif;font-size:1.25rem;font-weight:700;color:var(--ink);margin-bottom:.25rem}
.team-role{font-size:.76rem;letter-spacing:.09em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:.7rem}
.team-bio{font-size:.84rem;color:var(--muted);line-height:1.7;font-weight:300}
.team-bio-spaced{margin-top:.7rem}
.team-contact{display:flex;flex-direction:column;gap:.25rem;margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border)}
.team-contact a{font-size:.9rem;color:var(--ink);text-decoration:none;transition:color .2s}
.team-contact a:hover{color:var(--gold)}

/* =====================================================
   KONTAKT
===================================================== */
.kontakt-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:3.5rem;align-items:start}
.kontakt-info-card{background:var(--ink3);border:1px solid var(--dark-bdr);border-radius:var(--radius);padding:2.5rem 2rem;margin-bottom:1.4rem}
.ki-title{font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:.6rem;font-weight:700}
.ki-value{font-size:1.1rem;font-weight:600;color:#fff;margin-bottom:.2rem}
.ki-value a{color:#fff;transition:color .2s}
.ki-value a:hover{color:var(--gold)}
.ki-note{font-size:.8rem;color:rgba(255,255,255,.35);line-height:1.65}
.kontakt-form{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2.5rem 2rem}
.kontakt-form h3{font-family:Georgia,'Times New Roman',serif;font-size:1.6rem;font-weight:700;color:var(--ink);margin-bottom:.5rem}
.kontakt-form-sub{font-size:.88rem;color:var(--muted);margin-bottom:1.8rem;line-height:1.65;font-weight:300}
.form-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-textarea{width:100%;padding:.72rem 1rem;border:1px solid var(--border);border-radius:3px;font-family:'Segoe UI','Trebuchet MS','Helvetica Neue',Arial,sans-serif;font-size:.9rem;color:var(--ink);outline:none;background:var(--sand);resize:vertical;min-height:130px;transition:border-color .2s}
.form-textarea:focus{border-color:var(--gold);background:#fff}
.form-select{width:100%;padding:.72rem 1rem;border:1px solid var(--border);border-radius:3px;font-family:'Segoe UI','Trebuchet MS','Helvetica Neue',Arial,sans-serif;font-size:.9rem;color:var(--ink);outline:none;background:var(--sand);cursor:pointer;transition:border-color .2s}
.form-select:focus{border-color:var(--gold)}
.form-check{display:flex;align-items:flex-start;gap:.7rem;margin-top:.5rem}
.form-check input{margin-top:3px;accent-color:var(--gold);flex-shrink:0}
.form-check label{font-size:.78rem;color:var(--muted);line-height:1.65;font-weight:300;cursor:pointer}
.map-placeholder{width:100%;height:220px;background:var(--ink3);border:1px solid var(--dark-bdr);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-top:1.4rem}
.map-placeholder p{color:rgba(255,255,255,.3);font-size:.84rem;text-align:center;line-height:1.6}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .about-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .ins-types-grid{grid-template-columns:repeat(2,1fr)}
  .two-col,.two-col-3-2{grid-template-columns:1fr;gap:3rem}
  .kontakt-grid{grid-template-columns:1fr}
  .leasing-steps-grid{grid-template-columns:repeat(3,1fr)}
  .leasing-steps-grid::before{display:none}
  .team-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .grid-3{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .offer-grid{grid-template-columns:1fr}
  .ins-products{grid-template-columns:1fr 1fr}
  .hero-stats{flex-direction:column;gap:1.2rem}
  .hero-stat{border-right:none;padding-right:0;margin-right:0;border-bottom:1px solid rgba(255,255,255,.08);padding-bottom:1.2rem}
  .ref-benefits{grid-template-columns:1fr}
  .referral-steps{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .form-grid-2{grid-template-columns:1fr}
  .leasing-steps-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .about-stats-grid{grid-template-columns:1fr}
  .about-stat{padding:2rem 1.25rem}
  .about-stat__value{font-size:2.6rem}
  .about-stat__label{font-size:.74rem;letter-spacing:.08em}
  .ins-products{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .ins-types-grid{grid-template-columns:1fr 1fr}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .cta-actions{flex-direction:column;align-items:center}
}

/* ===== Final UI tweaks requested ===== */
:root {
  --ink: #24436d;
  --ink2: #2b4e7e;
  --ink3: #315789;
  --gold: #4c86df;
  --gold-lt: #6b9ce7;
  --gold-dim: rgba(76, 134, 223, 0.1);
  --gold-bdr: rgba(76, 134, 223, 0.2);
  --sand: #f9fbff;
  --sand2: #f3f7ff;
  --body-txt: #2f4260;
  --muted: #677f9e;
}

.nav {
  background: rgba(36, 67, 109, 0.92);
}

.nav-logo {
  width: 174px;
  height: auto;
  display: block;
}

.nav-emblem,
.nav-wordmark {
  display: none;
}

.offer-grid {
  border-radius: 6px;
}

.offer-card {
  border-radius: 0 !important;
}

.status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.status-chip {
  padding: 0.38rem 0.66rem;
  border-radius: 4px;
  border: 1px solid var(--gold-bdr);
  background: rgba(76, 134, 223, 0.08);
  color: #315789;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .nav-logo {
    width: 150px;
  }
}

/* ===== Readability Light Pass ===== */
:root {
  --ink: #2f4f79;
  --ink2: #375b89;
  --ink3: #40689b;
  --gold: #4f88df;
  --gold-lt: #6ea0ea;
  --gold-dim: rgba(79, 136, 223, 0.1);
  --gold-bdr: rgba(79, 136, 223, 0.22);
  --sand: #fbfdff;
  --sand2: #f4f8ff;
  --body-txt: #293f5f;
  --muted: #607b9f;
}

body {
  background: linear-gradient(180deg, #fcfeff 0%, #f5f9ff 100%);
  color: var(--body-txt);
}

.nav {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(47, 79, 121, 0.14);
}

.nav-links a {
  color: #2b4264;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--gold-lt) !important;
  color: #fff !important;
}

.hamburger span {
  background: #2b4264;
}

.trust-strip {
  background: #eef5ff;
  border-bottom: 1px solid rgba(47, 79, 121, 0.12);
}

.trust-item {
  color: #405b80;
}

.trust-item-offers {
  color: #173b67;
  font-weight: 600;
}

/* ===== Final Contrast + Render Pass ===== */
.hero-lead,
.page-hero p,
.sub-light,
.pain-txt,
.offer-body p,
.offer-bullets li,
.proc-body p,
.testi-text,
.cta-banner-content p {
  color: rgba(255, 255, 255, 0.74);
}

.stat-label,
.author-role,
.cta-contact-item,
.ins-type-card p,
.ls-step p,
.calc-label,
.ki-note,
.map-placeholder p {
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand,
.footer-links a,
.footer-copy,
.footer-address {
  color: rgba(255, 255, 255, 0.8);
}

/* reduce paint cost on full-bleed images above the fold */
.hero-bg img,
.img-framed img {
  filter: none;
}

/* skip rendering offscreen sections on first paint */
@supports (content-visibility: auto) {
  .home-page #oferta,
  .home-page .sec-sand2,
  .home-page .sec-ink2,
  .home-page .partners-bar,
  .home-page .cta-banner {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

/* ===== Privacy Policy RWD ===== */
.privacy-page .site-main,
.terms-page .site-main {
  padding-top: 76px;
}

.privacy-page .section,
.terms-page .section {
  padding: clamp(1.2rem, 2.4vw, 2.2rem) 0;
}

.privacy-page .content.legal-content,
.terms-page .content.legal-content {
  width: 100%;
  max-width: min(860px, 100%);
  padding: clamp(1rem, 3.2vw, 1.8rem);
  border-radius: 14px;
}

.privacy-page .legal-content h1,
.terms-page .legal-content h1 {
  font-size: clamp(1.55rem, 5.8vw, 2rem);
  line-height: 1.18;
}

.privacy-page .legal-content h2,
.terms-page .legal-content h2 {
  font-size: clamp(1.05rem, 4.6vw, 1.35rem);
  line-height: 1.32;
}

.privacy-page .legal-content p,
.privacy-page .legal-content li,
.terms-page .legal-content p,
.terms-page .legal-content li {
  font-size: clamp(0.95rem, 2.9vw, 1rem);
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 520px) {
  .privacy-page .container,
  .terms-page .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .privacy-page .content.legal-content,
  .terms-page .content.legal-content {
    padding: 0.9rem;
    border-radius: 10px;
  }

  .privacy-page .legal-content h2,
  .terms-page .legal-content h2 {
    margin-top: 1.4rem;
  }

  .privacy-page .list,
  .terms-page .list {
    padding-left: 1rem;
  }
}

/* ===== Stable Mobile Nav (single source of truth) ===== */
#mainNav {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(47, 79, 121, 0.14);
}

#mainNav .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

#mainNav .hamburger {
  border: 0;
  background: transparent;
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  #mainNav {
    height: 70px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #f8fbff;
  }

  #mainNav .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  #mainNav .hamburger span {
    background: #2b4264;
  }

  #mainNav .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 1rem 5%;
    background: #f8fbff;
    border-bottom: 1px solid rgba(47, 79, 121, 0.14);
    box-shadow: 0 10px 22px rgba(24, 44, 72, 0.12);
    z-index: 499;
  }

  #mainNav.menu-open .nav-links {
    display: flex;
  }

  #mainNav .nav-links a {
    color: #2b4264;
    padding: 0.6rem 0;
  }

  #mainNav .nav-links .nav-cta {
    margin: 0.55rem 0 0;
    padding: 0.62rem 1.1rem;
  }
}

@media (min-width: 769px) {
  body.menu-open {
    overflow: auto;
  }

  #mainNav .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
    box-shadow: none;
    border-bottom: 0;
    background: transparent;
  }

  #mainNav .hamburger {
    display: none;
  }
}
