:root {
  --color-bg: #f7f9fc;
  --color-surface: #ffffff;
  --color-surface-alt: #f0f4fb;
  --color-text: #0f1b2a;
  --color-muted: #435167;
  --color-primary: #0e4ecf;
  --color-primary-hover: #0b3ea5;
  --color-border: #d5deea;
  --shadow-card: 0 8px 24px rgba(15, 27, 42, 0.08);
  --container-max: 1120px;
}

* {
  box-sizing: border-box;
}

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: "Manrope", "Segoe UI", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
  line-height: 1.6;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.home-page .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

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

.header__brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  color: var(--color-text);
}

.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.75rem;
}

.nav__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
}

.nav__link:hover {
  background: var(--color-surface);
}

.site-main {
  flex: 1;
}

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

.section {
  padding: clamp(2rem, 4vw, 4.5rem) 0;
}

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

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

.section--hero {
  background: radial-gradient(circle at 12% 8%, rgba(14, 78, 207, 0.12), transparent 42%);
}

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

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

.section__title {
  margin: 0 0 1.1rem;
  line-height: 1.2;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.hero {
  padding-top: 3rem;
}

.hero__title {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
  max-width: 24ch;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

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

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

.button--secondary {
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid 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);
}

.panel--cta {
  background: var(--color-surface-alt);
}

.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 {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
}

.icon-card h3,
.offer-card h3 {
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

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

.icon-card__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 32px;
  border-radius: 999px;
  background: #e5edfb;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}

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

.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;
}

.team-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #dde6f5;
}

.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;
}

.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);
}

.cta-sticky {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  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;
}

.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__company {
  margin: 0;
  color: var(--color-muted);
}

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

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

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

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

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

@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;
  }

  .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 + 72px);
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

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