@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;500;600;700;800&family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #0a0e1a;
  --color-bg-alt: #0f1524;
  --color-surface: #141b2d;
  --color-surface-2: #1b2338;
  --color-border: #232c44;

  --color-red: #e11020;
  --color-red-bright: #ff1e2d;
  --color-blue: #2f6bff;
  --color-blue-bright: #4f8bff;

  --color-text: #f5f7fb;
  --color-text-muted: #9aa6be;
  --color-text-dim: #5f6b85;
  --color-white: #ffffff;

  --gradient-brand: linear-gradient(120deg, var(--color-blue) 0%, var(--color-red) 100%);
  --gradient-dark: linear-gradient(160deg, #0d1322 0%, #070a12 100%);

  --font-display: 'Oxanium', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;

  --shadow-red: 0 0 24px rgba(225, 16, 32, 0.35);
  --shadow-blue: 0 0 24px rgba(47, 107, 255, 0.35);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  background-image: url('../img/choix-bg.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

@media (max-width: 768px) {
  body {
    background-image: url('../img/choix-bg-m.jpg');
  }
}

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

a {
  color: var(--color-blue-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-red-bright);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--color-white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.text-italic-display {
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 26px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red-bright);
  box-shadow: var(--shadow-red);
}

.btn-secondary {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-blue-bright);
  box-shadow: var(--shadow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-blue);
  color: var(--color-white);
}

.topbar {
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-block: 8px;
  text-align: center;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding-inline: 6px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 24, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

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

.header__logo img {
  height: 38px;
  width: auto;
}

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

.nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav__link:hover {
  color: var(--color-white);
  background: rgba(47, 107, 255, 0.12);
}

.nav__link--active {
  color: var(--color-white);
  border-color: var(--color-red);
}

.nav__link--active:hover {
  background: rgba(225, 16, 32, 0.14);
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 18px;
    background: rgba(9, 13, 24, 0.97);
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }

  .nav__link {
    text-align: center;
    padding: 12px 18px;
  }

  .nav-toggle:checked ~ .nav {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked ~ .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .topbar {
    font-size: 0.72rem;
    letter-spacing: 0;
  }

  .topbar .container {
    gap: 8px;
    padding-block: 5px;
  }

  .topbar__badge {
    min-width: 24px;
    height: 24px;
    font-size: 0.68rem;
    border-width: 1.5px;
  }

  .header__inner {
    min-height: 58px;
  }

  .header__logo img {
    height: 28px;
  }

  .nav-burger {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
}

.hero {
  position: relative;
  padding: 34px 0 30px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--color-text);
  background: rgba(20, 27, 45, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 14px;
}

.hero__badge svg {
  color: var(--color-blue-bright);
}

.hero__title {
  max-width: 780px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}

.accent-red {
  color: var(--color-red);
}

.accent-blue {
  color: var(--color-blue-bright);
}

.hero__subtitle {
  max-width: 580px;
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
}

.hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  background: rgba(20, 27, 45, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.hero__feature:hover {
  transform: translateY(-2px);
  border-color: var(--color-blue);
}

.hero__feature-icon {
  display: inline-flex;
  color: var(--color-red);
}

@media (max-width: 768px) {
  .hero {
    padding: 26px 0 24px;
  }

  .hero__features {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero__features::-webkit-scrollbar {
    display: none;
  }

  .hero__feature {
    flex: 0 0 auto;
    justify-content: center;
    scroll-snap-align: start;
  }
}

.offers {
  padding: 30px 0 70px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-head__kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  color: var(--color-red);
  margin-bottom: 10px;
}

.section-head__title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head__lead {
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.offers__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer {
  position: relative;
  display: grid;
  grid-template-columns: 56px 190px 1fr 260px;
  align-items: center;
  gap: 24px;
  background: rgba(15, 21, 36, 0.82);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, border-color 0.2s ease;
}

.offer:hover {
  transform: translateY(-3px);
  border-color: var(--color-blue);
}

.offer--top {
  border-color: rgba(225, 16, 32, 0.55);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(225, 16, 32, 0.25);
}

.offer__flag {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: var(--color-white);
  background: var(--color-red);
  padding: 4px 14px;
  border-radius: 999px;
}

.offer__rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-text-dim);
  text-align: center;
}

.offer--top .offer__rank {
  color: var(--color-red);
}

.offer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  min-height: 66px;
}

.offer__logo {
  max-height: 66px;
  width: auto;
  object-fit: contain;
}

.offer__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer__label {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.offer__bonus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.offer__desc {
  font-size: 0.92rem;
  line-height: 1.55;
}

.offer__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.offer__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer__score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-white);
}

.stars {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
  letter-spacing: 2px;
  color: var(--color-border);
}

.stars::after {
  content: "\2605\2605\2605\2605\2605";
  letter-spacing: 2px;
  color: #ffb020;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}

.stars--99::after { width: 99%; }
.stars--97::after { width: 97%; }
.stars--95::after { width: 95%; }
.stars--93::after { width: 93%; }
.stars--91::after { width: 91%; }

.btn-cta {
  width: 100%;
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-blue) 100%);
  background-size: 160% 100%;
  background-position: 0 0;
  transition: background-position 0.35s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  color: var(--color-white);
  background-position: 100% 0;
  box-shadow: var(--shadow-red);
}

@media (max-width: 900px) {
  .offer {
    grid-template-columns: 44px 150px 1fr;
    grid-template-areas:
      "rank brand side"
      "body body body";
    row-gap: 18px;
  }

  .offer__rank { grid-area: rank; }
  .offer__brand { grid-area: brand; }
  .offer__side { grid-area: side; }
  .offer__body { grid-area: body; }
}

@media (max-width: 560px) {
  .offer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "body"
      "side";
    text-align: center;
    padding: 28px 20px 22px;
  }

  .offer__rank {
    display: none;
  }

  .offer__brand {
    min-height: 96px;
    padding: 6px 14px;
  }

  .offer__logo {
    max-height: 84px;
  }

  .offer__body { align-items: center; }
  .offer__side { width: 100%; }
}

.criteria,
.steps,
.faq {
  padding: 60px 0;
}

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

.info-card {
  background: rgba(15, 21, 36, 0.82);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.18s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-blue);
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  color: var(--color-red);
  background: rgba(225, 16, 32, 0.12);
  margin-bottom: 16px;
}

.info-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-card__text {
  font-size: 0.92rem;
  line-height: 1.55;
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: none;
}

.step {
  position: relative;
  background: rgba(15, 21, 36, 0.82);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-brand);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-blue-bright);
  display: block;
  margin-bottom: 10px;
}

.step__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step__text {
  font-size: 0.92rem;
  line-height: 1.55;
}

.responsible {
  padding: 20px 0 60px;
}

.responsible__box {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: center;
  background: rgba(15, 21, 36, 0.9);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-red);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.responsible__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin: 8px 0 12px;
}

.responsible__text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.responsible__points {
  list-style: none;
  display: grid;
  gap: 10px;
}

.responsible__points li {
  position: relative;
  padding-left: 26px;
  color: var(--color-text);
  font-size: 0.95rem;
}

.responsible__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--gradient-brand);
}

.responsible__aside {
  text-align: center;
  background: rgba(9, 13, 24, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.responsible__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 3px solid var(--color-red);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 14px;
}

.responsible__help {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.faq__list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(15, 21, 36, 0.82);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item[open] {
  border-color: var(--color-blue);
}

.faq__q {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-white);
  padding: 18px 52px 18px 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__q::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--color-blue-bright);
}

.faq__a {
  padding: 0 22px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .cards-grid,
  .steps__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .responsible__box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cards-grid,
  .steps__list {
    grid-template-columns: 1fr;
  }

  .criteria,
  .steps,
  .faq {
    padding: 44px 0;
  }

  .responsible__box {
    padding: 26px 20px;
  }
}

.footer {
  background: rgba(6, 9, 16, 0.92);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 30px;
}

.footer__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.footer__brand img {
  height: 34px;
  width: auto;
}

.footer__disclaimer {
  max-width: 900px;
  margin: 0 auto 32px;
  display: grid;
  gap: 14px;
}

.footer__disclaimer p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-dim);
  text-align: center;
}

.footer__regulators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 26px;
}

.footer__reg {
  display: inline-flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

a.footer__reg:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer__reg img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer__nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__copy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

@media (max-width: 560px) {
  .footer__regulators {
    gap: 22px;
  }

  .footer__reg img {
    max-height: 36px;
  }

  .footer__nav {
    gap: 16px;
  }
}

.page-hero {
  padding: 44px 0 30px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-transform: uppercase;
  margin: 8px 0 14px;
}

.page-hero__lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.page {
  padding: 50px 0 60px;
}

.page__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.page__doc {
  max-width: 860px;
  margin: 0 auto;
}

.page__doc p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.page__updated {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 18px;
}

.page__title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.page__main > .page__title:first-child {
  margin-top: 0;
}

.page__main p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.page__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}

.page__list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-text);
}

.page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--gradient-brand);
}

.page__aside {
  position: sticky;
  top: 100px;
}

.aside-card {
  background: rgba(15, 21, 36, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.aside-card__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.aside-card__stats {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.aside-card__stats li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
}

.aside-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-red);
  min-width: 54px;
}

.aside-card .btn {
  width: 100%;
}

.contact__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.contact__info {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 21, 36, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  color: var(--color-blue-bright);
  background: rgba(47, 107, 255, 0.12);
}

.contact-card__title {
  font-size: 1rem;
  margin-bottom: 2px;
}

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

.contact__form {
  background: rgba(15, 21, 36, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-dim);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--color-red);
  flex-shrink: 0;
}

.contact__form .btn {
  justify-self: start;
}

@media (max-width: 900px) {
  .page__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .page__aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 22px 18px;
  }

  .contact__form .btn {
    justify-self: stretch;
    width: 100%;
  }
}
