:root {
  --bg-main: #606060;
  --card-bg: #f3f3f3;
  --card-bg-secondary: #d4e9ff;

  --header-bg: #ffffff;
  --header-border-color: rgba(0, 0, 0, 0.05);
  --nav-color-: #737537;
  --nav-color-hover: #076cfa;
  --nav-color-bottom: linear-gradient(
    135deg,
    rgb(99, 102, 241),
    rgb(139, 92, 246)
  );

  --btn-border-radius: 15px;

  --btn-primary-bg: linear-gradient(135deg, #6366f1 0, #8b5cf6 100%);
  --btn-primary-shodow: rgba(99, 102, 241, 0.3);
  --btn-primary-shodow-hover: rgba(99, 102, 241, 0.4);
  --btn-primary-text-color: #fff;

  --btn-white-bg: #fff;
  --btn-white-text: #6a4df7;
  --btn-white-shadow: 0 12px 28px rgba(0, 0, 0, .22);

  --btn-transparent-bg: transparent;
  --btn-transparent-text: #fff;
  --btn-transparent-border: 1px solid var(--btn-transparent-text);

  --h1-color: #111827;
  --h2-color: #111827;
  --h3-color: #111827;
  --text-color: #6b7280;

  --h1-gradien-text-color: linear-gradient(135deg, #6366f1 0, #8b5cf6 50%, #ec4899 100%);

  --stat-bg: rgba(255, 255, 255, 0.15);
  --stat-border: 1px solid rgba(255, 255, 255, 0.3);
  --stat-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --stat-value-color: #076cfa;

  --salary-banner-bg: linear-gradient(135deg, #667eea 0, #ce5fff 100%);
  --salary-banner-text: #fff;
  --salary-banner-growth: #2feb8d;
  --salary-card-growth: #089750;

  --grade-border-color-1: #22c55e;
  --grade-border-color-2: #3b82f6;
  --grade-border-color-3: #f59e0b;
  --grade-border-color-4: #ef4444;

  --course-card-badge: #ce5fff;
  --course-card-badge-color: #fff;
  --course-card-button: #667eea;
  --course-card-button-text: #fff;

  --skill-card-bar: linear-gradient(90deg, #7a6ff3, #f066b4);

  --step-card-linear: linear-gradient(180deg, #fbfaff 0, #f6f6fb 100%);
  --step-card-shadow: 0 16px 40px rgba(20, 16, 40, .08);
  --step-card-shadow-hover: 0 12px 28px rgba(20, 16, 44, 0.1), 0 4px 12px rgba(20, 16, 44, 0.08);
  --step-title-color: #0f0f14;
  --step-badge-bg: #fff;
  --step-badge-border: 1px solid rgba(124, 92, 255, 0.25);
  --step-badge-color: #2b2f36;
  --step-tag-chip-bg: #fff;
  --step-tag-chip-border: 1px solid rgba(0,0,0,.06);
  --step-tag-chip-text: #2b2f36;

  --how-side-bg: linear-gradient(180deg, #fbfaff 0, #f6f6fb 100%);

  --weekday-bg: #fff;
  --weekday-border: 1px solid rgba(124, 92, 255, 0.25);
  --weekday-color: #2b2f36;

  --prog-item-bg: #f5f5f5;
  --prog-item-shadow: 0 16px 40px rgba(20,16,40,.08);
  --prog-item-border: 1px solid transparent;
  --prog-item-border-hover: 1px solid rgba(124, 92, 255, 0.25);
  --prog-item-text: #2b2f36;
  --prog-item-tag-bg: #fff;
  --prog-item-tag-border: 1px solid rgba(124, 92, 255, 0.25);

  --faq-bg: #f7f7f7;
  --faq-shadow: 0 16px 40px rgba(20, 16, 40, .08);
  --faq-color: #2b2f36;
  --faq-separate-border: 1px solid #eee;

  --resume-tab-bg: #fff;
  --resume-tab-bg-active: linear-gradient(90deg, #7a6ff3, #f066b4);
  --resume-tab-border: 1px solid rgba(124, 92, 255, 0.25);
  --resume-tab-color: #2b2f36;
  --resume-tab-shadow: 0 16px 40px rgba(20, 16, 40, .08);
  --resume-cv-bg: #fff;
  --resume-is-after-outline: 2px solid rgba(124, 92, 255, 0.12);
  --resume-is-after-shadow: 0 12px 28px rgba(20, 16, 44, 0.08), 0 4px 12px rgba(20, 16, 44, 0.06);
  --resume-aside-bg: linear-gradient(180deg, #fbfaff 0, #f6f6fb 100%);

  --cv-role-color: #2b2f36;
  --cv-h-color: #0f0f14;
  --cv-tag-bg: linear-gradient(90deg, #7a6ff3, #f066b4);
  --cv-tag-color: #fff;
}

span,
a {
  display: block;
}

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

* {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--h2-color);
}

h3 {
  font-size: 22px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--h3-color);
}

ol,
ul {
  list-style: none;
}

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

body {
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
}


html {
  scroll-behavior: smooth; 
}

:target {
  scroll-margin-top: 90px; 
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.block-item {
  margin: 40px 0 110px;
}

.hero-block{
  margin: 120px 0 160px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-title{
  font-weight: 800;
  line-height: 1.1;
  font-size: 52px;
  margin-bottom: 24px;
  color: var(--h1-color);
}

.gradient-text{
  background: var(--h1-gradien-text-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.subtitle-text{
  font-size: 18px;
  color: var(--text-color);
  margin: 25px 0;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats{
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
  padding: 16px 12px;
  background: var(--stat-bg);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: var(--stat-border);
  box-shadow: var(--stat-shadow);
  min-width: 120px;
  flex: 1;
}

.stat-value{
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--stat-value-color);
}

.stat-label{
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

/* header */
header {
  padding: 15px 0;
  border-bottom: 1px solid var(--header-border-color);
  background: var(--header-bg);
  position: sticky;
  z-index: 999;
  top: 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-height: 40px;
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--nav-color);
}

.nav-link {
  position: relative;
  transition: all 250ms ease;
  padding: 8px 0px;
}

.nav-link:hover {
  color: var(--nav-color-hover);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 2px;
  background: var(--nav-color-bottom);
  transition: width 250ms ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-width: 200px;
  padding: 15px 24px;
  border-radius: var(--btn-border-radius);
  text-align: center;
}

.btn-primary {
  overflow: hidden;
  font-size: 16px;
  font-weight: 900;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text-color);
  box-shadow: 0 4px 20px var(--btn-primary-shodow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  position: relative;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px var(--btn-primary-shodow-hover);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  background: #1e1e2f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.burger.open span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 950px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 64px;
    right: 24px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    min-width: 220px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    color: #1e1e2f;
    font-weight: 600;
  }

  .burger {
    display: flex;
    margin-left: 12px;
  }
}

@media (max-width: 950px) {
    .logo{
        width:90px;
    }
    header .btn.btn-primary{
        width:50%;
    }
}

/* header */
/* zero block */

/* zero block */

.subtitle {
  font-size: 18px;
  margin: 25px 0;
  color: var(--text-color);
}

.list-who {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
}

.who-card {
  overflow: clip;
  border-radius: 15px;
  background: var(--card-bg);
  flex: 1;
}

.who-text {
  padding: 15px;
}

.who-card img {
  aspect-ratio: 16/9;
  max-height: 175px;
    min-height: 175px;
    object-fit: cover;
}

.who-subtitle {
  font-size: 16px;
}

.who-card h3 {
  margin-bottom: 15px;
}

.salary-banner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  color: var(--salary-banner-text);
  width: 100%;
  padding: 32px;
  background: var(--salary-banner-bg);
  border-radius: 20px;
}

.salary-info {
  width: 35%;
  text-align: center;
}

.text-top {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

.text-main {
  margin: 10px 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.text-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--salary-banner-growth);
}

.text-bottom svg path {
  stroke: var(--salary-banner-growth);
}

.salary-list {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.salary-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  min-width: 120px;
}

.salary-badge-title {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--cv-tag-color);
}

.salary-badge-subtitle {
  line-height: 1.1;
  margin-top: 5px;
}

.subtitle-h3 {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 160px;
}

.subtitle-h3 h3 {
  min-width: 20%;
  max-width: 20%;
}

.grade-list {
  display: flex;
  gap: 30px;
}

.secondary-salary-list {
  display: flex;
  gap: 25px;
}

.grade-item {
  flex: 1;
  border: 2px solid #f1f5f9;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  color: #101827;
}

.grade-item:nth-child(1) {
  border-color: var(--grade-border-color-1);
}
.grade-item:nth-child(2) {
  border-color: var(--grade-border-color-2);
}
.grade-item:nth-child(3) {
  border-color: var(--grade-border-color-3);
}
.grade-item:nth-child(4) {
  border-color: var(--grade-border-color-4);
}

.secondary-salary-card:nth-child(1) {
  border-left-color: var(--grade-border-color-1);
}
.secondary-salary-card:nth-child(2) {
  border-left-color: var(--grade-border-color-2);
}
.secondary-salary-card:nth-child(3) {
  border-left-color: var(--grade-border-color-3);
}
.secondary-salary-card:nth-child(4) {
  border-left-color: var(--grade-border-color-4);
}

.grade-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grade-stage {
  font-size: 13px;
  font-weight: 600;
  background: var(--card-bg-secondary);
  color: #101827;
  padding: 4px 8px;
  border-radius: 8px;
}

.grade-title {
  font-size: 18px;
  font-weight: 700;
}

.grade-salary {
  margin: 30px 0;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  padding: 16px;
  background: var(--card-bg-secondary);
  color: #101827;
  border-radius: 12px;
  line-height: 1.1;
}

.grade-info.margin {
  margin-bottom: 20px;
}

.grade-info-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.grade-info-text {
  font-size: 14px;
  line-height: 17px;
}

.secondary-salary-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  border-left-width: 4px;
  flex: 1;
}

.secondary-salary-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg-secondary);
  padding: 12px;
  border-radius: 8px;
}

.secondary-salary-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.secondary-badge-growth {
  color: var(--salary-card-growth);
}

.secondary-salary-list .grade-title {
  margin-bottom: 20px;
}

.extra-item {
  margin-bottom: 5px;
}

.forecast-items {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-direction: row;
}

.forecast-item {
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--card-bg-secondary);
  border-radius: 8px;
}

.forecast-growth {
  color: var(--salary-card-growth);
}

.secondary-badge-text {
  width: 70%;
  color: #000;
}

.courses-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap: 25px;
}

.course-card:nth-child(1) {
  grid-area: 1 / 1 / 2 / 3;
}
.course-card:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
}
.course-card:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
}
.course-card:nth-child(4) {
  grid-area: 2 / 2 / 3 / 3;
}
.course-card:nth-child(5) {
  grid-area: 2 / 3 / 3 / 4;
}
.course-card:nth-child(6) {
  grid-area: 3 / 1 / 4 / 2;
}
.course-card:nth-child(7) {
  grid-area: 3 / 2 / 4 / 4;
}
.course-card:nth-child(8) {
  grid-area: 4 / 1 / 5 / 2;
}
.course-card:nth-child(9) {
  grid-area: 4 / 2 / 5 / 3;
}
.course-card:nth-child(10) {
  grid-area: 4 / 3 / 5 / 4;
}
.course-card:nth-child(11) {
  grid-area: 5 / 1 / 6 / 2;
}
.course-card:nth-child(12) {
  grid-area: 5 / 2 / 6 / 3;
}
.course-card:nth-child(13) {
  grid-area: 5 / 3 / 6 / 4;
}

.course-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: clip;
  display: flex;
  flex-direction: column;
  transition: .3s;
}

.course-media {
  position: relative;
  max-height: 160px;
  overflow: hidden;
}

.course-card-body {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  height: -webkit-fill-available;
}

.course-subtitle {
  margin-top: 15px;
  margin-bottom: 15px;
}

.course-badge-list {
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 5%;
}

.course-badge {
  background: var(--course-card-badge);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--course-card-badge-color);
}

.course-card:hover{
    scale: 1.03;
}

.course-button {
  padding: 10px 25px;
  background: var(--course-card-button);
  color: var(--course-card-button-text);
  border-radius: 10px;
  text-align: center;
  margin-top: auto;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.skill-card {
  background: var(--card-bg);
  min-width: 120px;
  max-width: 305px;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.skill-card-text {
  margin: 15px 0;
}

.skill-card-badges {
  display: flex;
  gap: 10px;
}

.skill-badge {
  background: #d7ebff;
  padding: 5px 10px;
  border-radius: 10px;
  color: #000;
}

.skill-meter {
  position: relative;
  height: 8px;
  margin-top: 15px;
  background: rgb(233, 232, 244);
  border-radius: 999px;
  overflow: hidden;
}

.skill-bar {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0px auto 0px 0px;
  background: var(--skill-card-bar);
  border-radius: 999px;
}

.reviews-head{
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.revies-list{
  display: flex;
  gap: 20px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  padding: 6px 2px 2px;
}

.review-card {
  min-width: calc(33% - 13.5px);
  flex: 0 0 auto;
  background: var(--card-bg);
  border-radius: 10px;
  padding: clamp(16px, 2.4vw, 22px);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
  width: 25%;
}

.review-header{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.reviews-controls{
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}

.rv-btn{
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: var(--btn-primary-bg);
  box-shadow:  0 16px 40px rgba(20, 16, 40, .08);;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: .3s;
}

.rv-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.rv-btn:hover{
  opacity: 0.8;
}

.rv-btn span {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 4px;
  color: var(--btn-primary-text-color);
}

.review-city{
  display: inline-flex;
  align-items: center;
  color: var(--h3-color);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--header-border-color);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
}

.review-avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.25), rgba(124, 92, 255, 0) 60%), linear-gradient(135deg, #7c5cff, #ff7ad9);
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  text-transform: uppercase;
}

.cta-banner{
  color: var(--salary-banner-text);
  background: var(--salary-banner-bg);
  border-radius: 20px;
  padding: 32px 54px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

.cta-title{
  color: var(--salary-banner-text);
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 900;
}

.cta-text{
  font-size: 18px;
  margin: 20px 0 22px;
  font-weight: 300;
}

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

.chip{
  background: rgba(255, 255, 255, .14);
  padding: 8px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .28);
  font-weight: 700;
  font-size: 14px;
}

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

.btn-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}

.btn-cta:hover{
  opacity: .8;
}

.btn-white{
  color: var(--btn-white-text);
  background: var(--btn-white-bg);
  box-shadow: var(--btn-white-shadow);
}

.btn-transparent{
  color: var(--btn-transparent-text);
  background: var(--btn-transparent-bg);
  border: var(--btn-transparent-border);
}

.how-layout{
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: 1.6fr 1fr;
  grid-template-areas: "runner runner" "steps side";
}

.how-steps{
  grid-area: steps;
  position: relative;
  --lineY: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
  margin: 6px 0 0;
  z-index: 0;
  padding-left: 0;
}

.step-card{
  background: var(--step-card-linear);
  border-radius: 14px;
  padding: clamp(16px, 2.4vw, 22px);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1;
}

.step-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--step-card-shadow-hover);
}

.step-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.step-badge{
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 100px;
  background: var(--step-badge-bg);
  border: var(--step-badge-border);
  font-size: 12px;
  font-weight: 800;
  color: var(--step-badge-color);
}

.step-progress{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  min-width: 44px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: var(--step-badge-color);
  background: var(--step-badge-bg);
  box-shadow: var(--step-card-shadow);
  border: var(--step-badge-border);
}

.step-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.step-icon{
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-grid;
  place-items: center;
}

.step-title{
  margin: 0;
  color: var(--step-title-color);
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
}

.step-text{
  margin: 15px 0 0;
  line-height: 21px;
  font-size: 16px;
}

.step-tags{
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.how-side{
  grid-area: side;
  background: var(--how-side-bg);
  border-radius: 16px;
  box-shadow: var(--step-card-shadow);
  padding: 22px;
}

.side-title{
  margin: 0 0 10px;
  color: var(--step-title-color);
  font-size: 20px;
}

.week-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.week-list li{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
}

.weekday{
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: var(--weekday-bg);
  border: var(--weekday-border);
  font-weight: 800;
  font-size: 12px;
  color: var(--weekday-color);
}

.task{
  color: var(--weekday-color);
  line-height: 1.5;
}

.step-tags .chip{
  padding: 8px 12px;
  border-radius: 100px;
  border: var(--step-tag-chip-border);
  background: var(--step-tag-chip-bg);
  font-weight: 700;
  font-size: 14px;
  color: var(--step-tag-chip-text);
}

.program-list{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.prog-item{
  background: var(--prog-item-bg);
  border: var(--prog-item-border);
  border-radius: 20px;
  overflow: hidden;
  transition: .3s;
}

.prog-item:hover{
  border: var(--prog-item-border-hover);
}

.prog-item summary{
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  font-weight: 700;
  color: var(--prog-item-text);
  font-size: 18px;
}

.prog-item-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--prog-item-tag-bg);
  border: var(--prog-item-tag-border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  width: 32px;
  height: 32px;
}

.prog-item-body{
  padding: 0 22px 18px;
}

.prog-item-bullets{
  margin: 8px 0 10px 28px;
  color: var(--prog-item-text);
  list-style: disc;
}

.prog-item-bullets li{
  margin: 6px 0;
  line-height: 1.5;
}

.prog-item-result{
  border: var(--prog-item-tag-border);
  color: var(--prog-item-text);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.faq-layout{
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

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

.faq-item {
  background: var(--faq-bg);
  border-radius: 16px;
  overflow: hidden;
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
}

.faq-q{
  margin: 0;
  color: var(--faq-color);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  flex: 1 1 auto;
}

.faq-body {
  padding: 0 22px 22px;
  color: var(--faq-color);
  line-height: 22px;
  border-top: var(--faq-separate-border);
  padding-top: 15px;
}

.faq-body p{
  margin: 25px 0;
  color: var(--text-color);
}

.faq-body p strong{
  color: var(--faq-color);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  mask: url() center / 62% no-repeat;
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
}

.resume-tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0 18px;
}

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

#resume-after:checked+label {
  background: var(--resume-tab-bg-active);
  color: #fff;
}

#resume-before:checked+label {
  background: var(--resume-tab-bg-active);
  color: #fff;
}

.resume-tabs label {
  background: var(--resume-tab-bg);
  border: var(--resume-tab-border);
  border-radius: 100px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--resume-tab-color);
  cursor: pointer;
  box-shadow: var(--resume-tab-shadow);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.resume-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.35fr 0.9fr;
}

.resume-preview {
  position: relative;
}

.resume-cv {
  display: none;
}

.resume-cv {
  background: var(--resume-cv-bg);
  border-radius: 16px;
  box-shadow: var(--resume-tab-shadow);
  padding: 22px;
}

.is-after {
  outline: var(--resume-is-after-outline);
  box-shadow: var(--resume-is-after-shadow);
}

.resume-tabs:has(#resume-after:checked)~.resume-layout .resume-preview .is-after {
  display: block;
}

.resume-tabs:has(#resume-before:checked)~.resume-layout .resume-preview .is-before {
  display: block;
}

.cv-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.cv-name {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--h1-color);
}

.cv-role {
  color: var(--cv-role-color);
  margin-top: 6px;
}

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

.cv-contacts .chip{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  color: #2b2f36;
}

.cv-body {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.cv-body .cv-col {
  padding: 0;
}

.cv-h {
  margin: 8px 0;
  color: var(--cv-h-color);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.cv-col p {
  font-size: 16px;
  line-height: 22px;
  color: var(--cv-role-color);
}

.cv-h.h-cl {
  margin-top: 35px;
}

.cv-edu, .cv-projects, .cv-tags, .cv-tools {
  margin: 8px 0 0 0;
  padding-left: 18px;
}

.cv-edu, .cv-projects {
  color: var(--cv-role-color);
}

.cv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.tag{
  display: inline-flex;
  align-items: center;
  height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--cv-tag-color);
  background: var(--cv-tag-bg);
}

.cv-list, .cv-projects, .cv-tools, .cv-edu {
  list-style: disc;
  color: var(--cv-role-color);
}

.cv-tools li {
  margin: 4px 0;
}

.cv-item {
  margin-top: 6px;
}

.cv-item__title {
  font-weight: 700;
  color: var(--cv-h-color);
}

.cv-item__meta {
  color: #7a7f88;
  font-size: 13px;
  margin-bottom: 6px;
}

.resume-side {
  background: var(--resume-aside-bg);
  border-radius: 16px;
  padding: 22px;
  height: fit-content;
}

.side-title {
  margin: 0 0 10px;
  color: var(--cv-h-color);
  font-size: 20px;
}

.checklist {
  margin: 8px 0 12px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  color: #2b2f36;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7a6ff3, #f066b4);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6L9 17l-5-5" fill="%23fff"/></svg>') center/70% no-repeat;
}

.side-note {
  margin: 8px 0 0;
  color: #60636a;
  font-size: 14px;
}

.site-footer{
    padding: 50px 0;
    background: #f5f5f5;
}

.footer-logo img{
    width: 10%;
    margin-bottom: 25px;
}

.cta-visuals {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.visual-window {
  background: #1e1e2f;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  overflow: hidden;
  font-family: "Fira Code", monospace;
}

.visual-header {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: #2c2c3d;
}

.visual-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.visual-header span:nth-child(1) { background: #ff5f56; }
.visual-header span:nth-child(2) { background: #ffbd2e; }
.visual-header span:nth-child(3) { background: #27c93f; }

.visual-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #ddd;
}

.visual-line {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}

.visual-line.success { color: #4ade80; }
.visual-line.error { color: #f87171; }
.visual-line.pending { color: #facc15; font-style: italic; }

/* ===== CTA Visuals Chat ===== */
.cta-visuals-chat {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-window {
  background: #1e1e2f;
  border-radius: 12px;
  padding: 16px;
  width: 280px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
}

.chat-message {
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 85%;
  line-height: 1.4;
}

.chat-user {
  align-self: flex-start;
  background: #374151;
}

.chat-dev {
  align-self: flex-end;
  background: #2563eb;
}

.chat-qa {
  align-self: flex-start;
  background: #059669;
}

.chat-lead {
  align-self: flex-end;
  background: #9333ea;
}


.cta-banner-big {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #8cc6ff, #fcffee);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  margin-top: 80px;
}

.cta-big-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-big-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1e1e2f;
}

.cta-big-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #374151;
}

.cta-big-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.cta-big-chips .chip {
  padding: 8px 14px;
  border-radius: 20px;
  background: #e0e7ff;
  color: #4338ca;
  font-size: 15px;
  font-weight: 500;
}

.cta-banner-big .cta-big-actions .btn-cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-banner-big .btn-cta.btn-white {
  background: #4338ca;
  color: #fff;
}

.cta-banner-big  .btn-cta.btn-white:hover {
  background: #3730a3;
}

.cta-big-visuals {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievements-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 300px;
}

.ach-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ach-card .ach-icon {
  font-size: 20px;
}

.ach-card.done {
  background: #dcfce7;
  color: #15803d;
}

.ach-card.inprogress {
  background: #fef9c3;
  color: #b45309;
}

.ach-card.upcoming {
  background: #e0e7ff;
  color: #4338ca;
}


/* ===== Responsive Big CTA ===== */

/* планшеты */
@media (max-width: 1024px) {
  .cta-banner-big {
    gap: 32px;
    padding: 40px;
  }

  .cta-big-title {
    font-size: 30px;
  }

  .cta-big-text {
    font-size: 16px;
  }

  .achievements-board {
    width: 260px;
  }
}

/* мобильные */
@media (max-width: 768px) {
  .cta-banner-big {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cta-big-content {
    align-items: center;
  }

  .cta-big-title {
    font-size: 26px;
  }

  .cta-big-text {
    font-size: 15px;
  }

  .cta-big-chips {
    justify-content: center;
  }

  .cta-big-actions .btn-cta {
    font-size: 16px;
    padding: 12px 24px;
  }

  .cta-big-visuals {
    margin-top: 24px;
  }

  .achievements-board {
    width: 100%;
    max-width: 320px;
  }
}

/* маленькие экраны */
@media (max-width: 480px) {
  .cta-banner-big {
    padding: 24px 16px;
  }

  .cta-big-title {
    font-size: 22px;
  }

  .cta-big-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-big-chips .chip {
    font-size: 13px;
    padding: 6px 10px;
  }

  .ach-card {
    font-size: 14px;
    padding: 12px 14px;
  }

  .ach-card .ach-icon {
    font-size: 18px;
  }
}

