:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --accent: #910a2d;
  --accent-text: #000000;
  --container: 1360px;
  --header-height: 116px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body {
  min-width: 320px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

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

/* HEADER */
.site-header {
  position: relative;
  z-index: 30;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  min-height: 102px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.site-header__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-header__meta {
  max-width: 340px;
}

.site-header__kicker {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.site-header__sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.site-header__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.brand__logo {
  width: 128px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.02);
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-header__phone {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-header__phone:hover {
  opacity: 0.82;
}

.site-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  background: #910a2d;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.site-header__btn:hover {
  background: #a10c33;
  opacity: 0.96;
  transform: translateY(-1px);
}

/* TABLET */
@media (max-width: 1180px) {
  .site-header__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0 20px;
  }

  .site-header__left,
  .site-header__center,
  .site-header__right {
    justify-content: center;
    text-align: center;
  }

  .site-header__meta {
    max-width: 560px;
  }

  .site-header__right {
    gap: 14px;
    flex-wrap: wrap;
  }

  .brand {
    padding: 4px 0;
  }

  .brand__logo {
    width: 118px;
  }

  .site-header__phone {
    font-size: 18px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .site-header__inner {
    gap: 12px;
    padding: 14px 0 16px;
  }

  .site-header__meta {
    max-width: 320px;
  }

  .site-header__kicker {
    font-size: 13px;
    line-height: 1.2;
  }

  .site-header__sub {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.25;
  }

  .brand__logo {
    width: 102px;
  }

  .site-header__phone {
    font-size: 17px;
  }

  .site-header__btn {
    min-height: 42px;
    width: 100%;
    max-width: 280px;
    padding: 0 18px;
    font-size: 14px;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: #000;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 28%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.42) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__content {
  max-width: 980px;
  padding: 72px 0;
  margin: 0 auto;
}

.hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.45);
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ABOUT */
.about {
  background: #f3f3f3;
  color: #000;
  padding: 92px 0 86px;
}

.about__head {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.about__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(145, 10, 45, 0.08);
  color: #910a2d;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.about__subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: #4f4f4f;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

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

.about__item {
  min-height: 210px;
  padding: 24px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about__item:hover {
  transform: translateY(-3px);
  border-color: rgba(145, 10, 45, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.about__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #910a2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(145, 10, 45, 0.12);
}

.about__text {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: #161616;
  text-wrap: balance;
}

/* TABLET */
@media (max-width: 1180px) {
  .about {
    padding: 82px 0 76px;
  }

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

  .about__item {
    min-height: 190px;
  }

  .about__text {
    font-size: 17px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about {
    padding: 68px 0 60px;
  }

  .about__head {
    margin-bottom: 32px;
  }

  .about__title {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.1;
  }

  .about__subtitle {
    font-size: 15px;
    line-height: 1.45;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about__item {
    min-height: auto;
    padding: 20px 16px;
  }

  .about__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    font-size: 28px;
  }

  .about__text {
    font-size: 16px;
    line-height: 1.3;
  }
}

/* GEO */
.geo {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 100px 0;
}

.geo__inner {
  position: relative;
  z-index: 2;
}

.geo__map {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image: url("/assets/img/geo/russia-map.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(1200px, 90vw);

  opacity: 0.30;
}

.geo__title {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

.geo__subtitle {
  margin: 20px auto 50px;
  max-width: 720px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.5;
}

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

.geo__item {
  padding: 16px 14px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(2px);
  transition: all 0.2s ease;
}

.geo__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #910a2d;
  transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 1024px) {
  .geo__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .geo__map {
    background-size: min(1000px, 120vw);
    opacity: 0.24;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .geo {
    padding: 70px 0;
  }

  .geo__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .geo__subtitle {
    font-size: 16px;
  }

  .geo__item {
    font-size: 14px;
    padding: 14px;
  }

  .geo__map {
    background-size: 180vw;
    opacity: 0.18;
  }
}

/* PROCESS */
.process {
  background: #f3f3f3;
  color: #000;
  padding: 100px 0;
}

.process__title {
  margin: 0 0 60px;
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

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

.process__item {
  position: relative;
  padding: 30px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.process__item:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.process__num {
  font-size: 14px;
  font-weight: 700;
  color: #910a2d;
  margin-bottom: 14px;
}

.process__text {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

/* TABLET */
@media (max-width: 1180px) {
  :root {
    --header-height: 104px;
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .site-header__left,
  .site-header__center,
  .site-header__right {
    justify-content: center;
    text-align: center;
  }

  .site-header__text {
    max-width: 620px;
  }

  .site-header__right {
    gap: 16px;
    flex-wrap: wrap;
  }

  .brand__logo {
    width: 116px;
  }

  .site-header__phone {
    font-size: 22px;
  }

  .hero,
  .hero__inner {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__content {
    max-width: 760px;
    padding: 56px 0;
  }

  .about {
    padding: 90px 0 84px;
  }

  .about__head {
    margin-bottom: 42px;
  }

  .about__subtitle {
    font-size: 18px;
  }

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

  .about__item {
    min-height: 210px;
  }

  .about__text {
    font-size: 18px;
  }

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

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

/* MOBILE */
@media (max-width: 767px) {
  :root {
    --header-height: 220px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header__inner {
    gap: 14px;
    padding: 14px 0 16px;
  }

  .site-header__text {
    font-size: 13px;
    line-height: 1.25;
    max-width: 300px;
    margin: 0 auto;
  }

  .site-header__phone {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
  }

  .site-header__btn {
    display: none;
  }

  .brand__logo {
    width: 104px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.42) 18%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0.48) 100%);
  }

  .hero,
  .hero__inner {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__inner {
    align-items: flex-start;
    justify-content: center;
    padding-top: 44px;
  }

  .hero__content {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .hero__title {
    font-size: clamp(28px, 9.6vw, 42px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-align: center;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__btn {
    width: 100%;
    max-width: 280px;
    min-height: 50px;
    padding: 0 18px;
    font-size: 16px;
  }

  .about {
    padding: 72px 0 64px;
  }

  .about__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    padding: 7px 12px;
  }

  .about__title {
    font-size: clamp(26px, 9vw, 38px);
    line-height: 1.08;
  }

  .about__subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about__item {
    min-height: auto;
    padding: 22px 18px;
    align-items: center;
  }

  .about__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    font-size: 31px;
  }

  .about__text {
    font-size: 17px;
    line-height: 1.32;
  }
}

@media (max-width: 600px) {
  .geo {
    padding: 70px 0;
  }

  .geo__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .geo__subtitle {
    font-size: 16px;
  }

  .geo__item {
    font-size: 14px;
    padding: 14px;
  }

  .process {
    padding: 70px 0;
  }

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

  .process__title {
    margin-bottom: 40px;
  }

  .process__item {
    padding: 22px 18px;
  }

  .process__text {
    font-size: 14px;
  }
}

/* SERVICES */
.services {
  background: #000;
  color: #fff;
  padding: 100px 0;
}

.services__head {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.services__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
}

.services__subtitle {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.5;
}

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

.services__item {
  position: relative;
  padding: 32px 28px 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.services__item:hover {
  transform: translateY(-3px);
  border-color: rgba(145, 10, 45, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.services__num {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: #910a2d;
}

.services__itemTitle {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.services__itemText {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.services__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(145, 10, 45, 0.14);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.services__note {
  margin-top: 24px;
}

.services__noteInner {
  padding: 22px 24px;
  border-radius: 10px;
  background: rgba(145, 10, 45, 0.08);
  border: 1px solid rgba(145, 10, 45, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.6;
}

.services__noteInner strong {
  color: #fff;
}

/* TABLET */
@media (max-width: 1180px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .services {
    padding: 72px 0;
  }

  .services__head {
    margin-bottom: 36px;
  }

  .services__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    padding: 7px 12px;
  }

  .services__subtitle {
    font-size: 16px;
    line-height: 1.45;
  }

  .services__item {
    padding: 24px 18px 20px;
  }

  .services__itemTitle {
    font-size: 23px;
  }

  .services__itemText {
    font-size: 15px;
    line-height: 1.55;
  }

  .services__noteInner {
    padding: 18px 16px;
    font-size: 15px;
    line-height: 1.55;
  }
}
/* POPUP */
.popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.popup.is-open {
  display: block;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.popup__body {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 80px auto;
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 28px 24px;
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.popup__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.popup__subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #555;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup__input {
  height: 44px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.popup__btn {
  height: 46px;
  background: #910a2d;
  color: #000;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}



/* QUIZ */
.quiz {
  background: #f3f3f3;
  color: #000;
  padding: 100px 0;
}

.quiz__shell {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.quiz__media {
  min-width: 0;
}

.quiz__mediaFrame {
  position: sticky;
  top: 24px;
  height: 100%;
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

.quiz__mediaImage {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.quiz__main {
  min-width: 0;
  padding: 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.quiz__head {
  margin-bottom: 28px;
}

.quiz__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(145, 10, 45, 0.08);
  color: #910a2d;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quiz__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quiz__subtitle {
  margin: 16px 0 0;
  max-width: 760px;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
}

.quiz__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quiz__group,
.quiz__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz__label {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #161616;
}

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

.quiz__country {
  position: relative;
}

.quiz__country input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz__countryBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 132px;
  padding: 18px 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quiz__countryBox:hover {
  border-color: rgba(145, 10, 45, 0.26);
  transform: translateY(-2px);
}

.quiz__country input:checked + .quiz__countryBox {
  border-color: #910a2d;
  background: rgba(145, 10, 45, 0.05);
  box-shadow: 0 0 0 1px rgba(145, 10, 45, 0.08) inset;
}

.quiz__flagWrap {
  width: 78px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background: #ececec;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.quiz__flagImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz__countryText {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #161616;
  text-align: center;
}

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

.quiz__input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #000;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz__input:focus {
  border-color: rgba(145, 10, 45, 0.45);
  box-shadow: 0 0 0 3px rgba(145, 10, 45, 0.08);
}

.quiz__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  background: #910a2d;
  color: #000;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.quiz__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* TABLET */
@media (max-width: 1180px) {
  .quiz__shell {
    grid-template-columns: 1fr;
  }

  .quiz__mediaFrame {
    position: relative;
    top: 0;
    min-height: 320px;
  }
}

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

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

/* MOBILE */
@media (max-width: 767px) {
  .quiz {
    padding: 72px 0;
  }

  .quiz__shell {
    gap: 18px;
  }

  .quiz__main {
    padding: 20px 18px;
  }

  .quiz__subtitle {
    font-size: 16px;
  }

  .quiz__mediaFrame {
    min-height: 240px;
  }

  .quiz__countryBox {
    min-height: 104px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .quiz__flagWrap {
    width: 64px;
    height: 44px;
    flex: 0 0 64px;
  }

  .quiz__countryText {
    font-size: 15px;
  }

  .quiz__input,
  .quiz__btn {
    min-height: 52px;
    height: 52px;
  }
}


/* SEO */
.seo {
  background: #000;
  color: #fff;
  padding: 100px 0;
}

.seo__head {
  max-width: 820px;
  margin-bottom: 40px;
}

.seo__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

.seo__subtitle {
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 17px;
}

.seo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.seo__item {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.seo__item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.seo__item p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.seo__text {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo__text p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 767px) {
  .seo {
    padding: 70px 0;
  }

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

  .seo__subtitle {
    font-size: 15px;
  }
}

/* FAQ */
.faq {
  background: #f3f3f3;
  color: #000;
  padding: 100px 0;
}

.faq__head {
  text-align: center;
  margin-bottom: 50px;
}

.faq__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

.faq__subtitle {
  margin-top: 14px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

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

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq__item:hover {
  border-color: rgba(145, 10, 45, 0.22);
}

.faq__item.is-open {
  border-color: rgba(145, 10, 45, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: #000;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #910a2d;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answerInner {
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.faq__item.is-open .faq__answerInner {
  padding: 0 20px 18px;
}

/* MOBILE */
@media (max-width: 767px) {
  .faq {
    padding: 70px 0;
  }

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

  .faq__question {
    padding: 16px;
    font-size: 15px;
  }

  .faq__answerInner {
    padding: 0 16px;
    font-size: 14px;
  }

  .faq__item.is-open .faq__answerInner {
    padding: 0 16px 16px;
  }
}