/* =========================
   Base
========================= */
:root {
  --color-bg: #07070c;
  --color-bg-secondary: #10101a;
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-border: rgba(255, 255, 255, 0.1);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.78);
  --color-accent: #8b5cf6;
  --color-accent-2: #c084fc;
  --color-button-text: #ffffff;
  --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text);
  background-color: var(--color-bg);
}



[hidden] {
  display: none !important;
}

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

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

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


/* =========================
   Header
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  backdrop-filter: blur(12px);
  background: rgba(10, 10, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* WRAPPER */
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO */
.header__logo a {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

/* NAV */
.header__nav {
  display: none;
}

/* WRAPPER */
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* MENU */
.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LINKS */
.header__link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
}

.header__link:hover {
  color: #fff;
}

/* BUTTON */
.header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
}

.header__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* DESKTOP DEFAULT */
.header__nav {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* BURGER */
.header__burger {
  display: none;
  width: 26px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__burger span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  transition: transform 0.3s ease;
}

.header__burger.is-active span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.header__burger.is-active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767.98px) {

  .header__burger {
    display: flex;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    padding: 16px;
    background: rgba(10, 10, 18, 0.96);
    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);

    transition: all 0.3s ease;
  }

  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .header__item {
    width: 100%;
  }

  .header__link,
  .header__button {
    width: 100%;
  }
}

/* DESKTOP FIX */
.header__nav {
  display: block;
}

.header__menu {
  display: flex;
}

@media (max-width: 767.98px) {
  .header__nav {
    display: block;
  }
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.28), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(192, 132, 252, 0.12), transparent 30%),
    linear-gradient(180deg, #090910 0%, #07070c 100%);
}

.hero__wrapper {
  display: grid;
  /* gap: 32px; */
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.hero__title {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.hero__title span {
  color: var(--color-accent-2);
  white-space: nowrap;
}

.hero__subtitle {
  margin-bottom: 24px;
  max-width: 620px;
}

.hero__subtitle p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.hero__subtitle p + p {
  margin-top: 6px;
}

.hero__languages-block {
  margin-bottom: 24px;
  max-width: 760px;
}

.hero__languages-title {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.hero__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__language {
  padding: 10px 14px;
  border: 1px solid var(--color-surface-border);
  border-radius: 999px;
  background: var(--color-surface);
  backdrop-filter: blur(8px);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.hero__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  max-width: 720px;
}

.hero__benefit {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.hero__benefit::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--color-accent-2), var(--color-accent));
  transform: translateY(-50%);
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  color: var(--color-button-text);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.35);
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.42);
}

.hero__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero__media {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.85) 0%, rgba(139, 92, 246, 0.18) 45%, rgba(139, 92, 246, 0) 72%);
  transform: translate(-50%, -50%);
  filter: blur(8px);
  box-shadow: var(--shadow-glow);
}

.hero__card {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 28px 24px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(20, 20, 32, 0.85), rgba(10, 10, 18, 0.72));
  backdrop-filter: blur(10px);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.hero__card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  color: #e9d5ff;
  font-size: 13px;
  font-weight: 700;
}

.hero__card-value {
  margin-bottom: 10px;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero__card-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-muted);
}


/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .hero {
    padding: 72px 0 48px;
  }

  .hero__wrapper {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 40px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle p {
    font-size: 18px;
  }

  .hero__languages-title {
    font-size: 16px;
  }

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

  .hero__media {
    min-height: 420px;
  }

  .hero__glow {
    width: 340px;
    height: 340px;
  }

  .hero__card {
    padding: 32px 28px;
  }

  .hero__card-value {
    font-size: 58px;
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .hero {
    padding: 96px 0 64px;
  }

  .hero__wrapper {
    gap: 56px;
  }

  .hero__title {
    font-size: 62px;
    max-width: 760px;
  }

  .hero__subtitle {
    margin-bottom: 28px;
  }

  .hero__benefits {
    margin-bottom: 32px;
  }

  .hero__media {
    min-height: 500px;
  }

  .hero__glow {
    width: 420px;
    height: 420px;
  }

  .hero__card {
    width: 100%;
    max-width: 400px;
  }
}


/* =========================
   Social Proof
========================= */
.social-proof {
  position: relative;
  padding: 40px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(192, 132, 252, 0.08), transparent 26%),
    radial-gradient(circle at 85% 70%, rgba(139, 92, 246, 0.12), transparent 28%);
}

.social-proof__wrapper {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.social-proof__wrapper::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0) 72%);
  pointer-events: none;
}

.social-proof__content {
  position: relative;
  z-index: 1;
}

.social-proof__title {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.social-proof__text {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.social-proof__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.social-proof__stat-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 18px;
  border: 1px solid rgba(192, 132, 252, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.social-proof__stat-value {
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: var(--color-accent-2);
  letter-spacing: -0.03em;
}

.social-proof__stat-label {
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-text);
  font-weight: 600;
}

/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .social-proof {
    padding: 48px 0;
  }

  .social-proof__wrapper {
    padding: 32px;
    gap: 28px;
  }

  .social-proof__title {
    font-size: 40px;
  }

  .social-proof__text {
    font-size: 17px;
  }

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

  .social-proof__stat-card {
    min-height: 140px;
    padding: 24px 22px;
  }

  .social-proof__stat-value {
    font-size: 42px;
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .social-proof {
    padding: 64px 0;
  }

  .social-proof__wrapper {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .social-proof__title {
    font-size: 48px;
  }

  .social-proof__text {
    font-size: 18px;
    max-width: 680px;
  }

  .social-proof__stat-value {
    font-size: 48px;
  }
}


/* =========================
   Responsibilities (NEW)
========================= */
.responsibilities {
  padding: 60px 0;
}

.responsibilities__header {
  margin-bottom: 32px;
}

.responsibilities__title {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

/* LIST */
.responsibilities__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ITEM */
.responsibilities__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s;
}

.responsibilities__item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.05);
}

/* ICON */
.responsibilities__icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--color-accent-2), var(--color-accent));
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}

/* TEXT */
.responsibilities__text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .responsibilities {
    padding: 80px 0;
  }

  .responsibilities__title {
    font-size: 42px;
  }

  .responsibilities__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .responsibilities__item {
    padding: 20px 18px;
  }

  .responsibilities__text {
    font-size: 16px;
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .responsibilities {
    padding: 100px 0;
  }

  .responsibilities__title {
    font-size: 48px;
  }

  .responsibilities__list {
    gap: 18px;
  }

  .responsibilities__item {
    padding: 22px 20px;
  }
}

/* =========================
   Salary
========================= */
.salary {
  position: relative;
  padding: 40px 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(192, 132, 252, 0.08), transparent 24%),
    radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.12), transparent 28%);
}

.salary__wrapper {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.salary__wrapper::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 72%);
  pointer-events: none;
}

.salary__content {
  position: relative;
  z-index: 1;
}

.salary__title {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.salary__item {
  position: relative;
  padding: 20px 18px;
  border: 1px solid rgba(192, 132, 252, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.salary__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.salary__item-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-text);
}

.salary__item-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  color: #e9d5ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.salary__item-value {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent-2);
}

.salary__media {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salary__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.16) 46%, rgba(139, 92, 246, 0) 72%);
  transform: translate(-50%, -50%);
  filter: blur(10px);
}

.salary__summary-card {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  padding: 26px 22px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(20, 20, 32, 0.84), rgba(10, 10, 18, 0.7));
  backdrop-filter: blur(10px);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  text-align: center;
}

.salary__summary-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  color: #e9d5ff;
  font-size: 13px;
  font-weight: 700;
}

.salary__summary-value {
  margin-bottom: 10px;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent-2);
}

.salary__summary-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .salary {
    padding: 48px 0;
  }

  .salary__wrapper {
    padding: 32px;
    gap: 28px;
  }

  .salary__title {
    font-size: 40px;
  }

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

  .salary__item {
    min-height: 180px;
    padding: 24px 22px;
  }

  .salary__item-title {
    font-size: 20px;
  }

  .salary__item-value {
    font-size: 42px;
  }

  .salary__media {
    min-height: 360px;
  }

  .salary__glow {
    width: 320px;
    height: 320px;
  }

  .salary__summary-card {
    padding: 30px 24px;
  }

  .salary__summary-value {
    font-size: 56px;
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .salary {
    padding: 64px 0;
  }

  .salary__wrapper {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .salary__title {
    font-size: 48px;
    max-width: 720px;
  }

  .salary__item {
    min-height: 200px;
  }

  .salary__item-value {
    font-size: 48px;
  }

  .salary__media {
    min-height: 420px;
  }

  .salary__glow {
    width: 380px;
    height: 380px;
  }

  .salary__summary-card {
    width: 100%;
    max-width: 380px;
  }

  .salary__summary-value {
    font-size: 64px;
  }
}


/* =========================
   Conditions
========================= */
.conditions {
  position: relative;
  padding: 60px 0;
}

/* HEADER */
.conditions__header {
  margin-bottom: 36px;
}

.conditions__title {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

/* GRID */
.conditions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* CARD */
.conditions__card {
  position: relative;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(192, 132, 252, 0.12);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  transition: 0.35s ease;
}

/* Glow effect (як у макеті) */
.conditions__card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.conditions__card:hover::before {
  opacity: 1;
}

.conditions__card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

/* ICON */
.conditions__card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* TITLE */
.conditions__card-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}

/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .conditions {
    padding: 80px 0;
  }

  .conditions__title {
    font-size: 42px;
  }

  .conditions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .conditions__card {
    padding: 24px 22px;
  }

  .conditions__card-title {
    font-size: 17px;
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .conditions {
    padding: 100px 0;
  }

  .conditions__title {
    font-size: 48px;
  }

  .conditions__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .conditions__card {
    padding: 26px 24px;
  }

  .conditions__card-title {
    font-size: 18px;
  }
}


/* =========================
   Fit (REDESIGN + HOVER)
========================= */
.fit {
  position: relative;
  padding: 60px 0;
}

/* HEADER */
.fit__header {
  margin-bottom: 36px;
}

.fit__title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

/* GRID */
.fit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

/* CARD */
.fit__card {
  position: relative;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(192, 132, 252, 0.14);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.02));
  transition: 0.35s ease;
  overflow: hidden;
}

/* Glow hover */
.fit__card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.fit__card:hover::before {
  opacity: 1;
}

.fit__card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

/* ICON */
.fit__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* TEXT */
.fit__card-text {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* =========================
   HIGHLIGHT BLOCK
========================= */
.fit__highlight {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(192, 132, 252, 0.2);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.03));
  text-align: center;
  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Glow */
.fit__highlight-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
  transition: 0.5s ease;
}

/* TEXT */
.fit__highlight-text {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.fit__highlight:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);

  background:
    linear-gradient(
      180deg,
      rgba(139, 92, 246, 0.18),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow:
    0 20px 50px rgba(139, 92, 246, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.fit__highlight:hover .fit__highlight-glow {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.2);
}

.fit__highlight:hover .fit__highlight-text {
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .fit {
    padding: 80px 0;
  }

  .fit__title {
    font-size: 42px;
  }

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

  .fit__highlight-text {
    font-size: 17px;
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .fit {
    padding: 100px 0;
  }

  .fit__title {
    font-size: 48px;
  }

  .fit__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .fit__card {
    min-height: 160px;
  }

  .fit__highlight {
    margin-top: 10px;
    padding: 32px;
  }

  .fit__highlight-text {
    font-size: 18px;
  }
}


/* =========================
   Steps (timeline)
========================= */
.steps {
  position: relative;
  padding: 60px 0;
}

.steps__title {
  margin: 0 0 32px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* LIST */
.steps__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ITEM */
.steps__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-surface-border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.steps__item:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.04);
}

/* NUMBER */
.steps__number {
  position: relative;
  z-index: 2;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  color: var(--color-button-text);
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

/* TEXT */
.steps__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--color-text);
}

/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .steps {
    padding: 80px 0;
  }

  .steps__title {
    margin-bottom: 36px;
    font-size: 42px;
  }

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

  .steps__item {
    min-height: 120px;
    padding: 24px 22px;
  }

  .steps__number {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 19px;
    border-radius: 14px;
  }

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

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .steps {
    padding: 100px 0;
  }

  .steps__title {
    margin-bottom: 40px;
    font-size: 48px;
  }

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

  .steps__item {
    min-height: 220px;
    align-items: flex-end;
    padding: 28px 24px;
    border: 1px solid rgba(192, 132, 252, 0.12);
    background: linear-gradient(
      180deg,
      rgba(139, 92, 246, 0.08),
      rgba(255, 255, 255, 0.02)
    );
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  }

  .steps__item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(
      180deg,
      rgba(139, 92, 246, 0.12),
      rgba(255, 255, 255, 0.025)
    );
  }

  /* Виправлення: цифра тепер декоративна, а не маленький квадратик */
  .steps__number {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 1;

    width: auto;
    height: auto;
    min-width: 0;
    flex: none;
    padding: 0;
    border-radius: 0;

    display: block;

    font-size: 72px;
    line-height: 1;
    font-weight: 800;

    color: transparent;
    background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0.16;
    box-shadow: none;
    pointer-events: none;
  }

  .steps__text {
    max-width: 180px;
    font-size: 18px;
    line-height: 1.5;
  }
}

/* =========================
   FAQ
========================= */
.faq {
  padding: 60px 0;
}

.faq__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ITEM */
.faq__item {
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

/* QUESTION */
.faq__question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* ICON */
.faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #fff;
}

.faq__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
}

.faq__icon::after {
  width: 2px;
  height: 100%;
  left: 45%;
}

/* ANSWER */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
}

.faq__answer p {
  margin: 0;
  padding-bottom: 20px;
  color: var(--color-text-muted);
}

/* ACTIVE */
.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__item.active .faq__icon::after {
  display: none;
}

/* Tablet */
@media (min-width: 768px) {
  .faq {
    padding: 80px 0;
  }

  .faq__title {
    font-size: 42px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .faq {
    padding: 100px 0;
  }

  .faq__title {
    font-size: 48px;
  }
}

/* =========================
   Final CTA
========================= */
.final-cta {
  position: relative;
  padding: 72px 0 96px;
}

.final-cta__wrapper {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  border: 1px solid rgba(192, 132, 252, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(15, 15, 24, 0.96), rgba(10, 10, 18, 0.92));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  isolation: isolate;
}

/* Background glows */
.final-cta__bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}

.final-cta__bg--left {
  top: -80px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, rgba(139, 92, 246, 0) 72%);
}

.final-cta__bg--right {
  right: -100px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.2) 0%, rgba(192, 132, 252, 0) 72%);
}

/* Decorative grid */
.final-cta__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Layout */
.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.final-cta__title {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.final-cta__text {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.final-cta__actions {
  display: flex;
  justify-content: center;
}

.final-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  color: var(--color-button-text);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  box-shadow:
    0 18px 40px rgba(139, 92, 246, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.final-cta__button:hover,
.final-cta__button:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 24px 48px rgba(139, 92, 246, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.final-cta__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* Decorative badges */
.final-cta__decor {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  min-height: 84px;
}

.final-cta__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(192, 132, 252, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  color: #f5edff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.final-cta__badge--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.final-cta__badge--middle {
  top: 40px;
  left: 8%;
}

.final-cta__badge--bottom {
  top: 40px;
  right: 8%;
}

/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .final-cta {
    padding: 88px 0 112px;
  }

  .final-cta__wrapper {
    padding: 56px 36px 44px;
    border-radius: 36px;
  }

  .final-cta__title {
    font-size: 46px;
  }

  .final-cta__text {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .final-cta__button {
    min-height: 62px;
    padding: 18px 34px;
    font-size: 17px;
  }

  .final-cta__decor {
    margin-top: 40px;
    min-height: 110px;
  }

  .final-cta__badge {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .final-cta__badge--middle {
    top: 54px;
    left: 12%;
  }

  .final-cta__badge--bottom {
    top: 54px;
    right: 12%;
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {
  .final-cta {
    padding: 104px 0 128px;
  }

  .final-cta__wrapper {
    padding: 72px 56px 52px;
    border-radius: 40px;
  }

  .final-cta__title {
    font-size: 58px;
    max-width: 900px;
    margin-inline: auto;
  }

  .final-cta__text {
    font-size: 19px;
    max-width: 620px;
  }

  .final-cta__button {
    min-height: 64px;
    padding: 18px 38px;
    font-size: 18px;
  }

  .final-cta__bg--left {
    width: 360px;
    height: 360px;
  }

  .final-cta__bg--right {
    width: 420px;
    height: 420px;
  }

  .final-cta__decor {
    min-height: 128px;
  }

  .final-cta__badge--middle {
    left: 18%;
  }

  .final-cta__badge--bottom {
    right: 18%;
  }
}
/* =========================
   Typography System Override
   For WP + ACF friendly content rhythm
========================= */
body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

.hero__title,
.social-proof__title,
.responsibilities__title,
.salary__title,
.conditions__title,
.fit__title,
.steps__title,
.faq__title,
.final-cta__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.hero__title {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.05;
  max-width: 14ch;
}

.social-proof__title,
.responsibilities__title,
.salary__title,
.conditions__title,
.fit__title,
.steps__title,
.faq__title,
.final-cta__title {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.1;
}

.salary__item-title,
.conditions__card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__subtitle p,
.hero__languages-title,
.social-proof__text,
.responsibilities__text,
.salary__summary-text,
.fit__card-text,
.fit__highlight-text,
.steps__text,
.faq__answer p,
.final-cta__text,
.hero__card-text,
.salary__stat-label,
.social-proof__stat-label {
  font-size: 15px;
  line-height: 1.65;
}

.hero__subtitle p,
.social-proof__text,
.hero__languages-title,
.salary__summary-text,
.faq__answer p,
.final-cta__text,
.hero__card-text {
  color: var(--color-text-muted);
}

.header__link,
.header__button,
.hero__button,
.final-cta__button,
.faq__question {
  letter-spacing: -0.01em;
}

.header__link {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.header__button,
.hero__button,
.final-cta__button {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.hero__languages-title,
.social-proof__text,
.final-cta__text {
  max-width: 62ch;
}

@media (min-width: 768px) {
  body {
    font-size: 17px;
  }

  .hero__title {
    font-size: 50px;
    margin-bottom: 24px;
  }

  .social-proof__title,
  .responsibilities__title,
  .salary__title,
  .conditions__title,
  .fit__title,
  .steps__title,
  .faq__title,
  .final-cta__title {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .salary__item-title,
  .conditions__card-title {
    font-size: 19px;
  }

  .hero__subtitle p,
  .hero__languages-title,
  .social-proof__text,
  .responsibilities__text,
  .salary__summary-text,
  .fit__card-text,
  .fit__highlight-text,
  .steps__text,
  .faq__answer p,
  .final-cta__text,
  .hero__card-text,
  .social-proof__stat-label {
    font-size: 16px;
  }

  .header__link {
    font-size: 15px;
  }

  .header__button,
  .hero__button,
  .final-cta__button {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 64px;
    max-width: 14ch;
  }

  .social-proof__title,
  .responsibilities__title,
  .salary__title,
  .conditions__title,
  .fit__title,
  .steps__title,
  .faq__title,
  .final-cta__title {
    font-size: 50px;
  }

  .salary__item-title,
  .conditions__card-title {
    font-size: 20px;
  }

  .hero__subtitle p,
  .hero__languages-title,
  .social-proof__text,
  .responsibilities__text,
  .salary__summary-text,
  .fit__card-text,
  .fit__highlight-text,
  .steps__text,
  .faq__answer p,
  .final-cta__text,
  .hero__card-text,
  .social-proof__stat-label {
    font-size: 17px;
  }

  .header__link {
    font-size: 15px;
  }

  .header__button,
  .hero__button,
  .final-cta__button {
    font-size: 16px;
  }
}


/* =========================
   Requested polish update
========================= */

/* fix file spacing rhythm with margins between sections */
.hero,
.social-proof,
.responsibilities,
.salary,
.conditions,
.fit,
.steps,
.final-cta {
  padding-block: 0 !important;
}

.hero {
  margin: 0 0 30px;
}

.social-proof,
.responsibilities,
.salary,
.conditions,
.fit,
.steps { 
  margin: 80px 0;
}

@media (min-width: 768px) {
  .social-proof,
  .responsibilities,
  .salary,
  .conditions,
  .fit,
  .steps {
    margin: 100px 0;
  }
}

.final-cta {
  margin: 40px 0 10px;
}

@media (min-width: 768px) {
  .final-cta {
    margin: 60px 0 30px;
  }
}

.faq {
  margin: 0 !important;
  padding: 0 !important;
}

/* keep hero visually below fixed header */
.hero .container {
  padding-top: 92px;
}

/* mobile menu working state */
@media (max-width: 767.98px) {
  .header {
    overflow: visible;
  }

  .header__nav {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(10, 10, 18, 0.97);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .header__nav.is-open,
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    margin: 0 -15px 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .header__item--cta {
    margin-top: 6px;
  }

  .header__link,
  .header__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .header__button {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  }

  .header__burger {
    position: relative;
    width: 28px;
    height: 20px;
    z-index: 1001;
  }

  .header__burger span {
    transform-origin: center;
    transition: transform .25s ease, opacity .25s ease;
  }

  .header__burger.is-active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }

  .header__burger.is-active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* salary block polish */
.salary__item-value {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  font-size: 34px;
}

.salary__list {
  align-items: stretch;
}

.salary__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

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

  .salary__media {
    min-height: 0;
  }

  .salary__summary-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .salary__item-value {
    font-size: 2rem;
  }
}

/* CONDITIONS BLOCK */
.conditions__card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  isolation: isolate;
}

.conditions__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.14),
    rgba(192, 132, 252, 0.02) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.conditions__card:hover::before {
  opacity: 1;
}

.conditions__card-icon,
.conditions__card-title {
  position: relative;
  z-index: 1;
}

.conditions__card-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(192, 132, 252, 0.24), rgba(139, 92, 246, 0.92));
  box-shadow:
    0 12px 24px rgba(139, 92, 246, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.conditions__card-icon-image {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.conditions__card-title {
  flex: 1 1 auto;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .conditions__card {
    padding: 18px 16px;
    gap: 14px;
  }

  .conditions__card-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .conditions__card-icon-image {
    width: 32px;
    height: 32px;
  }

  .conditions__card-title {
    font-size: 15px;
  }
}

/* fit block fuller look */
.fit__grid {
  gap: 18px;
}

.fit__card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 22px 20px;
  border: 1px solid rgba(192, 132, 252, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(139, 92, 246, 0.04));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(255,255,255,0.02) inset;
}

.fit__card::before {
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(192, 132, 252, 0.02) 65%, rgba(255,255,255,0) 100%);
  z-index: 0;
}

.fit__card-icon,
.fit__card-text {
  position: relative;
  z-index: 1;
}

.fit__card-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(192, 132, 252, 0.26), rgba(139, 92, 246, 0.92));
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.35), 0 0 0 1px rgba(255,255,255,0.14) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fit__card-icon::before {
  content: "";
  width: 18px;
  height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.fit__card-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 479.98px) {
  .fit__card {
    gap: 14px;
    min-height: 92px;
    padding: 18px 16px;
  }

  .fit__card-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .fit__card-icon::before {
    width: 16px;
    height: 9px;
  }

  .fit__card-text {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .fit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .fit__card {
    min-height: 128px;
  }
}

/* final privileges highlight */
.final-cta__badge {
  border-color: rgba(192, 132, 252, 0.34);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(255,255,255,0.06));
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
  color: #fff;
}

.final-cta__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: linear-gradient(180deg, #f2ddff, #bb86ff);
  box-shadow: 0 0 12px rgba(192, 132, 252, 0.75);
}


/* =========================
   Contact Strip
   Final contact block after CTA
========================= */
.contact-strip {
  padding: 0 0 22px;
}

.contact-strip__wrapper {
  padding: 20px;
  border: 1px solid rgba(192, 132, 252, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
}

.contact-strip__title {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
}

.contact-strip__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--color-surface-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.contact-strip__item:hover,
.contact-strip__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.06);
}

.contact-strip__item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.contact-strip__label {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-text-muted);
}

.contact-strip__value {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-text);
  word-break: break-word;
}

/* Tablet */
@media (min-width: 768px) {
  .contact-strip {
    padding: 0 0 22px;
  }

  .contact-strip__wrapper {
    padding: 24px;
    border-radius: 28px;
  }

  .contact-strip__title {
    margin-bottom: 18px;
    font-size: 24px;
  }

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

  .contact-strip__item {
    min-height: 96px;
    justify-content: center;
    padding: 18px;
  }

  .contact-strip__value {
    font-size: 17px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .contact-strip {
    padding: 0 0 32px;
  }

  .contact-strip__wrapper {
    padding: 28px 32px;
    border-radius: 32px;
  }

  .contact-strip__title {
    font-size: 26px;
  }

  .contact-strip__item {
    padding: 20px 22px;
  }

  .contact-strip__value {
    font-size: 18px;
  }
}


.site-credit {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-credit__text {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.site-credit__link {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.site-credit__link:hover {
  border-bottom: 1px solid rgba(139, 92, 246, 0.8);
}