@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
       url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
       url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
       url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
       url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f9ff;
  --surface: #ffffff;
  --surface-strong: #f3f7ff;
  --text: #071634;
  --muted: #4c5873;
  --line: rgba(58, 102, 213, 0.13);
  --primary: #075cf5;
  --primary-dark: #0149d6;
  --green: #149b39;
  --gold: #ffb400;
  --shadow: 0 24px 60px rgba(21, 54, 111, 0.11);
  --shadow-soft: 0 18px 42px rgba(21, 54, 111, 0.08);
  --container: 1340px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: 'Gilroy', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 17%, rgba(7, 92, 245, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
p,
dl,
dd {
  margin: 0;
}

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

.site-header {
  padding: 20px 0 10px;
  background: transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.site-logo img {
  width: 138px;
  height: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid rgba(7, 92, 245, 0.62);
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 92, 245, 0.12);
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(7, 92, 245, 0.24);
  border-radius: 8px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 54px 0 30px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

h1 {
  max-width: 660px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

h1 span {
  color: var(--primary);
  white-space: nowrap;
}

.hero__subtitle {
  max-width: 575px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
  font-weight: 500;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 13px 22px;
  border: 0;
  border-radius: 7px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(7, 92, 245, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 22px 42px rgba(7, 92, 245, 0.29);
}

.button--hero {
  width: min(100%, 360px);
  min-height: 64px;
  margin-top: 30px;
  font-size: 20px;
}

.button--hero span {
  font-size: 32px;
  line-height: 0;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 62px;
  max-width: 820px;
}

.hero-benefit {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.hero-benefit strong {
  display: block;
  font-weight: 700;
}

.hero-benefit__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef4ff;
  box-shadow: none;
}

.hero-benefit__icon::before,
.hero-benefit__icon::after {
  content: "";
  position: absolute;
}

.hero-benefit__icon--bolt::before {
  width: 11px;
  height: 24px;
  background: var(--primary);
  clip-path: polygon(46% 0, 100% 0, 63% 42%, 100% 42%, 31% 100%, 43% 56%, 0 56%);
}

.hero-benefit__icon--card::before {
  width: 25px;
  height: 19px;
  border: 3px solid var(--primary);
  border-radius: 3px;
}

.hero-benefit__icon--card::after {
  width: 17px;
  height: 3px;
  background: var(--primary);
  transform: translateY(-2px);
}

.hero-benefit__icon--doc::before {
  width: 20px;
  height: 25px;
  border: 3px solid var(--primary);
  border-radius: 3px;
}

.hero-benefit__icon--doc::after {
  width: 11px;
  height: 8px;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: translateY(3px);
}

.hero-benefit__icon--shield::before {
  width: 23px;
  height: 25px;
  border: 3px solid var(--primary);
  border-radius: 11px 11px 14px 14px;
  clip-path: polygon(50% 0, 100% 18%, 88% 76%, 50% 100%, 12% 76%, 0 18%);
}

.hero-benefit__icon--shield::after {
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(-45deg);
}

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

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 28px 58px 18px 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 31%, transparent 32%),
    repeating-radial-gradient(circle, rgba(7, 92, 245, 0.065) 0 44px, transparent 45px 88px);
}

.hero-phone {
  position: absolute;
  top: 10px;
  left: 42%;
  width: 258px;
  height: 462px;
  padding: 11px;
  border-radius: 35px;
  background: linear-gradient(135deg, #1a1d26, #080a10 46%, #343945);
  box-shadow: 0 28px 45px rgba(7, 22, 52, 0.25);
  transform: translateX(-50%) rotate(9deg);
}

.hero-phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 92px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: #0c1018;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-phone__screen {
  height: 100%;
  padding: 26px 18px 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff, #eaf1ff);
  overflow: hidden;
}

.hero-phone__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-phone__top img {
  width: 88px;
  height: auto;
}

.hero-phone__top span,
.hero-phone__top span::before,
.hero-phone__top span::after {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #8fa1c2;
}

.hero-phone__top span {
  position: relative;
}

.hero-phone__top span::before,
.hero-phone__top span::after {
  content: "";
  position: absolute;
  right: 0;
}

.hero-phone__top span::before {
  top: -6px;
}

.hero-phone__top span::after {
  top: 6px;
}

.hero-phone__approval,
.hero-phone__list div {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #071634;
  box-shadow: 0 10px 24px rgba(12, 25, 51, 0.12);
}

.hero-phone__approval {
  padding: 16px 18px;
}

.hero-phone__approval span,
.hero-phone__approval em,
.hero-phone__list em {
  display: block;
  font-style: normal;
}

.hero-phone__approval span {
  font-size: 13px;
  font-weight: 600;
}

.hero-phone__approval strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 41px;
  line-height: 1;
  font-weight: 700;
}

.hero-phone__approval em {
  margin-top: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.hero-phone__list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-phone__list div {
  position: relative;
  min-height: 58px;
  padding: 13px 12px 12px 56px;
}

.hero-phone__list span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.hero-phone__list span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.is-green {
  background: #25b44b;
}

.is-blue {
  background: var(--primary);
}

.is-orange {
  background: #e49a0b;
}

.hero-phone__list strong {
  display: block;
  font-size: 12px;
}

.hero-phone__list em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.hero-card {
  position: absolute;
  left: 6%;
  top: 230px;
  width: 292px;
  height: 164px;
  padding: 42px 28px 24px;
  border-radius: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #3d8cff, #075cf5 50%, #031b69);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.42);
  transform: rotate(7deg);
  z-index: 3;
}

.hero-card__chip {
  position: absolute;
  top: 42px;
  left: 28px;
  width: 35px;
  height: 28px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(109, 89, 38, 0.35) 46% 54%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(109, 89, 38, 0.35) 46% 54%, transparent 55%),
    #f1d385;
}

.hero-card__wave {
  position: absolute;
  top: 55px;
  right: 29px;
  width: 22px;
  height: 22px;
  border-right: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.hero-card strong {
  display: block;
  margin-top: 41px;
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-card__name {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card__circles {
  position: absolute;
  right: 31px;
  bottom: 24px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 20px 0 0 rgba(255, 255, 255, 0.58);
}

.hero-stat {
  position: absolute;
  right: 0;
  top: 250px;
  width: 215px;
  min-height: 176px;
  padding: 25px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
}

.hero-stat > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.hero-stat__icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #edf4ff;
}

.hero-stat__icon::before,
.hero-stat__icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
}

.hero-stat__icon::before {
  left: 12px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 12px 0 0 rgba(7, 92, 245, 0.74);
}

.hero-stat__icon::after {
  left: 9px;
  top: 23px;
  width: 25px;
  height: 11px;
  border-radius: 11px 11px 4px 4px;
}

.hero-stat p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.hero-stat strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.hero-stat svg {
  width: 100%;
  height: 54px;
  margin-top: 22px;
}

.hero-stat polyline {
  fill: none;
  stroke: #149b39;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-leaves {
  position: absolute;
  right: 150px;
  bottom: 58px;
  width: 126px;
  height: 100px;
  z-index: 1;
}

.hero-leaves span {
  position: absolute;
  bottom: 0;
  width: 46px;
  height: 86px;
  border-radius: 46px 0 46px 0;
  background: linear-gradient(135deg, #8ddf62, #2f9d44);
  transform-origin: bottom center;
}

.hero-leaves span:nth-child(1) {
  left: 0;
  transform: rotate(35deg);
}

.hero-leaves span:nth-child(2) {
  left: 35px;
  height: 98px;
  transform: rotate(17deg);
}

.hero-leaves span:nth-child(3) {
  left: 69px;
  height: 76px;
  transform: rotate(63deg);
}

.hero-leaves span:nth-child(4) {
  left: 50px;
  height: 60px;
  transform: rotate(-28deg);
}

.offers-section {
  padding: 24px 0 66px;
}

.section-head {
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(28px, 2.8vw, 34px);
  line-height: 1.1;
  font-weight: 700;
}

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

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 254px;
  padding: 24px;
  border: 1px solid rgba(19, 62, 139, 0.05);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(21, 54, 111, 0.12);
}

.offer-card__badge {
  align-self: flex-start;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #10852f;
  background: #dff8e5;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 62px;
  width: 100%;
}

.offer-card__logo {
  width: 100%;
  max-width: 190px;
  height: 58px;
  object-fit: contain;
}

.offer-card__body {
  margin-top: 22px;
}

.offer-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-card__stats div,
.offer-card__stats dt {
  min-width: 0;
}

.offer-card__stats dt {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.offer-card__stats dd {
  display: none;
}

.offer-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.offer-card__meta li {
  position: relative;
  min-width: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.offer-card__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 13px;
  height: 13px;
  border: 2px solid #93a3ba;
  border-radius: 50%;
}

.offer-card__meta li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #93a3ba;
  border-bottom: 2px solid #93a3ba;
  transform: rotate(-45deg);
}

.offer-card__meta li:nth-child(2) {
  color: #10852f;
}

.offer-card__footer {
  display: flex;
  margin-top: auto;
  padding-top: 24px;
}

.offer-card__footer .button {
  width: 100%;
  min-height: 47px;
  font-size: 16px;
}

.offer-card__info-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.empty-state {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--muted);
  text-align: center;
}

.faq-section {
  padding: 0 0 70px;
}

.faq-section__head {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(19, 62, 139, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(21, 54, 111, 0.05);
}

.faq-item__summary {
  position: relative;
  display: block;
  padding: 18px 56px 18px 20px;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-item__summary::before,
.faq-item__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateY(-50%);
}

.faq-item__summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-item__content {
  padding: 0 20px 18px;
}

.faq-item__content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

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

.modal-backdrop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 31, 56, 0.52);
  backdrop-filter: blur(4px);
}

.offer-modal {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(16, 36, 72, 0.2);
}

.offer-modal__content {
  padding: 28px 0 0;
}

.offer-modal__top-group {
  margin: 0 16px;
  border-radius: 14px;
  background: var(--surface-strong);
}

.offer-modal__close {
  position: absolute;
  top: 30px;
  right: 24px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #808183;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.offer-modal__header,
.offer-modal__hero,
.offer-modal__tabs,
.offer-modal__panel {
  padding-left: 20px;
  padding-right: 20px;
}

.offer-modal__header {
  padding-top: 20px;
  padding-bottom: 12px;
}

.offer-modal__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.offer-modal__logo-badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 12px;
  background: #ffffff;
}

.offer-modal__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.offer-modal__eyebrow {
  color: var(--muted);
  font-size: 13px;
}

.offer-modal__title {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
}

.offer-modal__hero {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 20px;
}

.offer-modal__metric span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}

.offer-modal__metric strong {
  font-size: 24px;
  font-weight: 700;
}

.offer-modal__cta {
  margin-left: auto;
}

.offer-modal__tabs {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(25, 59, 120, 0.08);
}

.offer-modal__tab {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #69758c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.offer-modal__tab.is-active {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.offer-modal__panel {
  display: none;
  padding-top: 20px;
  padding-bottom: 24px;
}

.offer-modal__panel.is-active {
  display: block;
}

.offer-modal__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 42px;
}

.offer-modal__list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.offer-modal__list p:first-child {
  margin-top: 0;
}

.offer-modal__list strong {
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  padding: 42px 0 30px;
  background: #ffffff;
  border-top: 1px solid rgba(7, 92, 245, 0.1);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__logo img {
  width: 138px;
  height: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer__nav a,
.site-footer__bottom a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(25, 59, 120, 0.1);
  color: var(--muted);
  font-size: 12px;
}

.site-footer__contacts a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.site-footer__text {
  padding: 20px 0 0;
}

.site-footer__text p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer__text p + p {
  margin-top: 12px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(25, 59, 120, 0.12);
  color: var(--muted);
  font-size: 12px;
}

.site-footer__bottom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.policy-page {
  padding-bottom: 48px;
}

.policy-hero {
  padding: 34px 0 24px;
}

.policy-hero__card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.policy-hero__card {
  padding: 34px;
}

.policy-hero__subtitle {
  max-width: 920px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.policy-content {
  padding: 0 0 24px;
}

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

.policy-card {
  padding: 28px;
}

.policy-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #081225;
    --surface: #111d33;
    --surface-strong: #172641;
    --text: #f4f8ff;
    --muted: #aebbd3;
    --line: rgba(121, 163, 255, 0.18);
    --primary: #2f7cff;
    --primary-dark: #1161f4;
    --green: #36d066;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  }

  body {
    background:
      radial-gradient(circle at 76% 18%, rgba(47, 124, 255, 0.24), transparent 28%),
      radial-gradient(circle at 12% 12%, rgba(54, 208, 102, 0.08), transparent 22%),
      linear-gradient(180deg, #0d1930 0%, var(--bg) 46%, #060d1c 100%);
  }

  .site-logo,
  .site-footer__logo {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .site-header__nav a {
    border-color: rgba(122, 169, 255, 0.48);
    background: rgba(17, 29, 51, 0.62);
  }

  .site-header__nav a:hover,
  .site-header__nav a:focus-visible {
    background: rgba(27, 45, 78, 0.96);
    box-shadow: 0 10px 24px rgba(47, 124, 255, 0.18);
  }

  .site-menu-toggle {
    border-color: rgba(122, 169, 255, 0.35);
    background: var(--surface);
  }

  .button {
    box-shadow: 0 18px 40px rgba(47, 124, 255, 0.32);
  }

  .button:hover,
  .button:focus-visible {
    box-shadow: 0 22px 48px rgba(47, 124, 255, 0.4);
  }

  .hero-benefit__icon {
    background: rgba(47, 124, 255, 0.13);
    box-shadow: inset 0 0 0 1px rgba(122, 169, 255, 0.16);
  }

  .hero__visual::before {
    background:
      radial-gradient(circle, rgba(28, 47, 84, 0.7) 0 31%, transparent 32%),
      repeating-radial-gradient(circle, rgba(91, 144, 255, 0.12) 0 44px, transparent 45px 88px);
  }

  .hero-stat {
    background: rgba(17, 29, 51, 0.94);
    border: 1px solid rgba(122, 169, 255, 0.16);
    backdrop-filter: blur(16px);
  }

  .hero-stat__icon {
    background: rgba(47, 124, 255, 0.16);
  }

  .offer-card {
    border-color: rgba(122, 169, 255, 0.14);
    background: linear-gradient(180deg, rgba(23, 38, 65, 0.96), rgba(13, 25, 46, 0.96));
  }

  .offer-card:hover,
  .offer-card:focus-within {
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
  }

  .offer-card__badge {
    color: #9ef0b5;
    background: rgba(54, 208, 102, 0.13);
  }

  .offer-card__meta li:nth-child(2) {
    color: #80e8a0;
  }

  .empty-state,
  .faq-item,
  .policy-hero__card,
  .policy-card {
    background: var(--surface);
  }

  .faq-item {
    border-color: rgba(122, 169, 255, 0.14);
    box-shadow: var(--shadow-soft);
  }

  .modal-backdrop__overlay {
    background: rgba(2, 6, 15, 0.72);
  }

  .offer-modal {
    background: var(--surface);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  }

  .site-footer {
    background: #050b18;
    border-top-color: rgba(122, 169, 255, 0.14);
  }
}

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 520px;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    padding-top: 16px;
  }

  .site-header__inner {
    position: relative;
  }

  .site-logo img {
    width: 128px;
  }

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

  .site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(7, 92, 245, 0.12);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

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

  .site-header__nav a {
    min-width: 0;
    width: 100%;
  }

  .site-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.16;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .button--hero {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  .hero__benefits {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .hero-benefit {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
  }

  .hero-benefit__icon {
    width: 38px;
    height: 38px;
  }

  .hero__visual {
    min-height: 430px;
    margin-top: 14px;
  }

  .hero__visual::before {
    inset: 36px 0 22px;
  }

  .hero-phone {
    left: 58%;
    top: 12px;
    width: 210px;
    height: 378px;
  }

  .hero-card {
    left: 0;
    top: 186px;
    width: 210px;
    height: 122px;
    padding: 30px 18px 18px;
  }

  .hero-card__chip {
    top: 25px;
    left: 20px;
    width: 28px;
    height: 23px;
  }

  .hero-card strong {
    margin-top: 34px;
    font-size: 13px;
  }

  .hero-card__name {
    margin-top: 14px;
    font-size: 11px;
  }

  .hero-card__circles {
    right: 24px;
    bottom: 17px;
    width: 21px;
    height: 21px;
    box-shadow: 15px 0 0 rgba(255, 255, 255, 0.58);
  }

  .hero-stat {
    right: 0;
    top: 290px;
    width: 184px;
    min-height: 132px;
    padding: 18px;
  }

  .hero-stat > div {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .hero-stat__icon {
    width: 34px;
    height: 34px;
  }

  .hero-stat p {
    font-size: 12px;
  }

  .hero-stat strong {
    font-size: 14px;
  }

  .hero-stat svg {
    height: 38px;
    margin-top: 12px;
  }

  .hero-leaves {
    display: none;
  }

  .offers-section {
    padding-top: 16px;
  }

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

  .offer-card {
    min-height: 0;
    padding: 14px;
    border-radius: 10px;
  }

  .offer-card__badge {
    margin-bottom: 12px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .offer-card__logo-link {
    min-height: 54px;
  }

  .offer-card__logo {
    max-width: 100%;
    height: 52px;
  }

  .offer-card__body {
    margin-top: 14px;
  }

  .offer-card__stats {
    grid-template-columns: 1fr;
  }

  .offer-card__stats dt {
    font-size: 13px;
  }

  .offer-card__meta {
    margin-top: 14px;
  }

  .offer-card__meta li {
    padding-left: 18px;
    font-size: 11px;
  }

  .offer-card__footer {
    padding-top: 16px;
  }

  .offer-card__footer .button {
    min-height: 40px;
    padding: 10px 6px;
    font-size: 12px;
  }

  .offer-card__meta,
  .offer-card__stats {
    gap: 8px;
  }

  .offer-modal__hero,
  .offer-modal__panel-grid,
  .site-footer__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .offer-modal__hero {
    gap: 16px;
  }

  .offer-modal__cta {
    margin-left: 0;
  }

  .offer-modal__panel-grid {
    display: grid;
  }

  .site-footer__nav {
    justify-content: flex-start;
    gap: 14px 18px;
  }
}

@media (max-width: 420px) {
  .hero__visual {
    min-height: 404px;
  }

  .hero-phone {
    left: 62%;
    width: 188px;
    height: 340px;
  }

  .hero-phone__approval strong {
    font-size: 34px;
  }

  .hero-card {
    width: 188px;
  }

  .hero-stat {
    top: 276px;
    width: 168px;
  }
}

@media (prefers-color-scheme: dark) and (max-width: 767px) {
  .site-header__nav {
    border-color: rgba(122, 169, 255, 0.16);
    background: #0d1930;
  }
}
