/* CSS styles for the hero section */
.hero-section-wrapper {
    width: 100%;
    background: #FFFFFF; /* Light theme background */
    border-radius: 50px;
    backdrop-filter: blur(10px); /* Keep blur if desired, might not be visible on white */
    display: flex; /* Using flexbox for layout */
    flex-direction: column;
    justify-content: flex-start; /* Align content from the top */
    align-items: flex-start; /* Align primary content blocks to the start */
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Слой декоративных стеклянных SVG на фоне */
.hero-glass-layer { position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-glass-layer img { position:absolute; width:120px; height:auto; filter:blur(.2px); opacity:.85; }

/* Поднимаем весь обычный контент над фоновым слоем */
.hero-section-wrapper > *:not(.hero-glass-layer) {  z-index: 1; }

/* Base text styles */
.hero-text-block {
    color: #1F1F1F;
    font-family: 'Comfortaa', sans-serif;
    text-transform: lowercase;
    word-wrap: break-word;
}

.hero-title-main {
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
}

.hero-title-sub,
.hero-subtitle-top,
.hero-subtitle-bottom {
    font-size: 100px;
    font-weight: 300;
    line-height: 1;
}

.hero-highlight-text {
    border: 4px solid rgba(111, 124, 255, 0.90);
    border-radius: 100px;
    padding: 0 30px;
    margin: -10px -30px;
    display: inline-block;
}

.hero-highlight-text-cta { color:#707DFF; text-decoration: underline; border:none; padding:0; margin:0; }

.hero-description {
    position: absolute; /* Keep absolute as requested */
    width: 291px;
    left: 73px;
    top: 300px; /* Adjust top positioning for visual alignment */
    color: #333;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    line-height: 1.2;
}

.hero-button-area {
    width: calc(100% - 80px); /* Adjusted for wrapper padding */
    height: 60px;
    background: #707DFF;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    margin-top: 75px; /* Pushes button to the bottom if wrapper has min-height and flex-column */
    margin-bottom: 40px; /* Space from bottom of wrapper */
    align-self: center; /* Center button horizontally within the flex column */
}

.hero-button-area:hover {
    background: #5a6edb;
}

.hero-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between text and arrow */
    color: white;
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    letter-spacing: 0.48px;
    text-align: center;
}

.hero-button-arrow {
    transition: transform 0.3s ease-out;
    width: 4em; /* Make it twice the font-size of its parent */
    height: 2.1em;
    vertical-align: middle; /* Ensure vertical alignment */
}

.hero-button-area:hover .hero-button-arrow {
    transform: translateX(5px); /* Move arrow slightly on hover */
}

/* New Flex Containers for Top and Bottom sections */
.hero-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align titles to the left */
    width: 100%;
    padding-left: 20px; /* Adjust as needed */
    box-sizing: border-box;
    margin-top: 20px; /* Space from top of wrapper */
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align subtitles to the right */
    width: 100%;
    padding-right: 20px; /* Adjust as needed */
    box-sizing: border-box;
    margin-top: 20px; /* Space between top and bottom sections */
}

/* Styles for the new "Contact Form" block */
.form-section-wrapper {
    width: 100%;
    max-width: 1840px; /* Max width from original div */
    margin: 80px auto; /* Add some margin top and bottom, center horizontally */
    position: relative;
    box-sizing: border-box;
}

.form-title {
    color: #1F1F1F; /* Changed from #1F1F1F to white */
    font-size: 40px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 400;
    text-transform: lowercase;
    word-wrap: break-word;
    margin-bottom: 67px;
}

.form-background-card {
    width: 100%;
    min-height: 369px; /* Set a min-height */
    background: #FFFFFF; /* Changed from #FFFFFF to #1F1F1F */
    border-radius: 50px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Space between columns */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Add subtle shadow */
}

.form-left-column,
.form-right-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-description {
    color: #1F1F1F; /* Changed from #1F1F1F to white */
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: auto;
    max-width: 500px;
}

.form-icons-row {
    display: flex;
    gap: 20px;
}

.form-icon {
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Form fields */
.form-field-group {
    margin-bottom: 20px;
}

.form-input-field {
    width: 100%;
    height: 60px;
    border-radius: 60px;
    outline: 2px solid #707DFF; /* Blue outline */
    padding: 0 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.form-input-field.textarea {
    height: auto;
    border-radius: 24px;
    padding: 12px 18px;
}

.form-input-placeholder {
    width: 100%;
    border: none;
    background: transparent;
    color: rgb(0, 0, 0); /* Changed from #1F1F1F to white */
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    letter-spacing: 0.40px;
}

.form-input-placeholder::placeholder {
    color: #1F1F1F; /* Changed from rgba(255, 255, 255, 0.70) to #1F1F1F */
}

.form-input-placeholder:focus {
    outline: none;
}

.form-textarea-auto {
    width: 100%;
    min-height: 38px;
    max-height: 260px;
    resize: none;
    border: none;
    background: transparent;
    font: 400 20px 'Manrope', sans-serif;
    color: #1F1F1F;
}

.form-checkbox-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.form-checkbox-box {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 2px solid #707DFF;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    background: #fff;
    position: relative;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 2px;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.form-checkbox-box:checked {
    background: #707DFF;
    border-color: #707DFF;
}
.form-checkbox-box:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    border-radius: 1px;
    display: block;
    transform: translate(-50%, -50%) rotate(45deg);
}

.form-checkbox-text {
    color: #1F1F1F;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    letter-spacing: 0.40px;
    word-wrap: break-word;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.form-privacy-link {
    color: #707DFF; /* Changed from #707DFF to white */
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-decoration: underline;
    letter-spacing: 0.40px;
    word-wrap: break-word;
}

.form-submit-button {
    width: 100%;
    height: 60px;
    background: #707DFF;
    border-radius: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    margin-top: 30px;
}

.cta-form .form-submit-button { width:100%; }

.form-submit-button:hover {
    background: #5a6edb;
}

.form-button-text {
    color: white;
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    letter-spacing: 0.48px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-button-arrow {
    transition: transform 0.3s ease-out;
    width: 4em; 
    height: 2.1em;
    vertical-align: middle;
}

.form-submit-button:hover .form-button-arrow {
    transform: translateX(5px);
}

.form-icon-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 0 !important;

}

/* Responsive adjustments for the new block */
@media (max-width: 1200px) {
    .form-title {
        font-size: 4vw;
    }
    .form-background-card {
        flex-direction: column;
    }
    .form-left-column,
    .form-right-column {
        min-width: unset;
        width: 100%;
    }
    .form-description {
        font-size: 28px;
        text-align: center;
    }
    .form-icons-row {
        justify-content: center;
    }
    .form-field-group,
    .form-checkbox-group {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
    .form-submit-button {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 6vw;
    }
    .form-description {
        font-size: 24px;
    }
    .form-input-placeholder,
    .form-checkbox-text,
    .form-privacy-link {
        font-size: 18px;
    }
    .form-button-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 8vw;
    }
    .form-description {
        font-size: 20px;
    }
    .form-input-placeholder,
    .form-checkbox-text,
    .form-privacy-link {
        font-size: 16px;
    }
    .form-button-text {
        font-size: 18px;
    }
}

y {
    color: #18181b;
    padding: 15px 0px 32px 0px;
}
.popular-courses-title {
    font-family: 'Comfortaa', cursive, sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 0px;
    color: #18181b;
    letter-spacing: 0.02em;
    text-align: left;
}
.popular-courses-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    max-width: max-content;
}
.popular-courses-tabs::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #707DFF;
    bottom: 1px;
}
.tab {
    background: none;
    border: none;
    color: #18181b;
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    border-radius: 0px !important;
    margin: 0 10px 0 10px;
    padding: 0 15px 8px 15px;
}
.tab:hover, .tab.active:hover {
    background: transparent;
    color: rgb(97, 108, 229);
    box-shadow: none;
}
.tab.active {
    border-bottom: 3px solid #707DFF;
    color: #18181b;
}
.popular-courses-scroll {
    position: relative;
    overflow-x: auto;
}
.popular-courses-section{
    margin: 80px auto;
}
.popular-courses-list {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
}
.popular-course-card {
    background: linear-gradient(135deg, #f6f7fa 0%, #a1e3ff14 30%, #b8a1ff29 50%, #707dff2b 60%);
    border-radius: 40px;
    max-width: 300px;
    flex: 0 0 340px;
    padding: 32px 28px 0 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 24px 0 rgba(112,125,255,0.06);
    border: 2px solid #F0F1F3;
    overflow: hidden;
    color: #18181b;
    height: 550px;
    margin-bottom: 32px;
}
.popular-course-card:hover {
    border: 2px solid #707DFF;
    cursor: pointer;
}
.course-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.course-tag {
    background: #ffffff;
    color: #707DFF;
    border-radius: 24px;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 0;
    display: inline-block;
    border: 1px solid #d9d9d9;
}
.course-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
    color: #18181b;
    line-height: 1.15;
    font-family: 'Manrope', sans-serif;
}
.course-meta {
    font-size: 20px;
    color: #8a8a8a;
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
}
.course-cover-img {
    width: 100%;
    object-fit: contain;
    margin-top: auto;
    margin-left: auto;
    margin-top: auto;
    background: transparent;
    display: block;
    border-radius: 0 0 40px 40px;
    min-height: 120px;
    max-height: 290px;
}
.scroll-arrow {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    background: #F6F7FA;
    color: #707DFF;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(112,125,255,0.10);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.scroll-arrow:hover {
    background-color: #d9dcff;
}
.scroll-arrow svg {
    display: block;
    margin: 0;
    padding: 0;
}

.problems-section {
  background: #18181b;
  border-radius: 32px;
  padding: 48px 40px 40px 40px;
  color: #fff;
  margin-bottom: 60px;
}
.problems-title {
  font-family: 'Comfortaa', cursive, sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 0.02em;
}
.problems-accordion {
  display: flex;
  gap: 0;
}
.problems-list {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  background: transparent;
  border: none;
  border-radius: 32px 0 0 32px;
  padding: 28px 32px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1.5px solid #35353a;
}
.problem-item:last-child {
  border-bottom: none;
}
.problem-item.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.problem-number {
  font-size: 32px;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  color: #fff;
  min-width: 48px;
  text-align: center;
}
.problems-details {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 0 0 0;
}
.problem-detail {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border-radius: 0 32px 32px 0;
  padding: 32px 40px;
  min-height: 180px;
  margin-bottom: 0;
  margin-top: 0;
}
.problem-detail.active {
  display: flex;
}
.problem-detail-text {
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 28px;
  color: #fff;
}
.problem-detail-btn {
  background: #707DFF;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 16px 48px;
  font-size: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.problem-detail-btn:hover {
  background: #5059c9;
}
@media (max-width: 900px) {
  .problems-accordion {
    flex-direction: column;
  }
  .problems-list {
    flex: 1 1 0;
    border-radius: 32px 32px 0 0;
  }
  .problems-details {
    border-radius: 0 0 32px 32px;
    padding: 0;
  }
  .problem-detail {
    border-radius: 0 0 32px 32px;
    padding: 24px 16px;
  }
}
.course-display-block {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 24px 0 rgba(112,125,255,0.06);
    margin-bottom: 10px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s, border 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.course-display-block.open {
    border: 2px solid #707DFF;
    box-shadow: 0 8px 10px 0 rgba(112,125,255,0.10);
}
.display-block-header {
    padding: 10px 32px;
    font-size: 48px;
    font-weight: 500;
    color: #222;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}
.display-block-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    border-radius: 16px;
    width: 60px;
    height: 60px;
    pointer-events: none;
}
.display-block-toggle .toggle-bg {
    transition: fill 0.2s;
}
.display-block-toggle .toggle-border {
    transition: stroke 0.2s;
}
.display-block-toggle .toggle-arrow {
    transition: transform 0.3s, stroke 0.3s;
    transform-origin: 50% 50%;
    stroke: white;
}
.course-display-block.open .display-block-toggle .toggle-bg {
    fill: #fff;
}
.course-display-block.open .display-block-toggle .toggle-border {
    stroke: #707DFF;
}
.course-display-block.open .display-block-toggle .toggle-arrow {
    transform: rotate(-90deg);
    stroke: #707DFF;
}
.course-display-block .display-block-content {
    display: none;
    padding: 32px 32px 24px 32px;
}
.course-display-block.open .display-block-content {
    display: block;
}
.course-category-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}
.course-category-tag, .course-popular-tag {
    background: #fff;
    color: #222;
    border: 1px solid #d9d9d9;
    border-radius: 24px;
    padding: 7px 22px;
    cursor: pointer;
    transition: color 0.18s, border 0.18s, background 0.18s;
    outline: none;
    margin-bottom: 0;
    display: inline-block;
}
.course-category-tag:hover, .course-popular-tag:hover {
    background-color: transparent;
    color: #707DFF;
    border-color: #707DFF;
}
.course-category-tag.active {
    border: 1px solid #707DFF;
    color: #707DFF;
}
.course-popular-tag.active {
    border: 1px solid #707DFF;
    color: #707DFF;
}
.course-popular-tag {
    margin-left: 0;
    margin-right: 0;
}
.display-block-title {
    font-size: 28px !important;
    font-weight: 400  !important;
    margin-left: 40px  !important;
    vertical-align: top  !important;
    margin-top: 10px  !important;
    margin-bottom: 0px  !important;
}

/* Блок "Путь погружения в мир IT" */
.it-path-section {
    background: #fff;
    border-radius: 32px;
    padding: 48px 40px;
    margin-bottom: 60px;
    box-shadow: 0 4px 32px rgba(112,125,255,0.06);
}
.it-path-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    gap: 48px;
}
.it-path-left, .it-path-right {
    width: 50%;
    flex: 1 1 0;
    min-width: 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.it-path-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #18181b;
    margin-bottom: 0;
    line-height: 1.2;
}
.it-path-icons {
    display: flex;
    gap: 32px;
    margin-top: auto;
}
.it-path-icon-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.it-path-desc {
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    color: #222;
    margin-bottom: 0;
    line-height: 1.5;
}
.it-path-stages {
    margin-top: 200px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
}
.it-path-stage {
    background: #fff;
    color: #222;
    border-radius: 32px;
    padding: 0;
    font-size: 22px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 0;
    width: 25%;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 8px 0 rgba(112,125,255,0.10);
    border: 2px solid #707DFF;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.it-path-stage.active {
    background: #707DFF;
    color: #fff;
    border: 2px solid #707DFF;
}
.it-path-stage-number {
    font-size: 32px;
    font-weight: 600;
    position: absolute;
    left: 24px;
    top: 18px;
}
.it-path-stage-title {
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    left: 24px;
    bottom: 18px;
}
.problem-solving {
    margin: 80px auto;
}
@media (max-width: 1200px) {
    .it-path-stage {
        height: 140px;
        border-radius: 24px;
        width: calc((100% - 72px) / 4);
    }
    .it-path-stage-number, .it-path-stage-title {
        left: 16px;
    }
}
@media (max-width: 900px) {
    .it-path-stages {
        flex-wrap: wrap;
        gap: 16px;
    }
    .it-path-stage {
        width: 48%;
        min-width: 120px;
        height: 120px;
        margin-bottom: 8px;
    }
}
@media (max-width: 600px) {
    .it-path-stage {
        height: 80px;
        border-radius: 14px;
        width: 100%;
        margin-bottom: 8px;
    }
    .it-path-stage-number, .it-path-stage-title {
        left: 10px;
        font-size: 1rem;
    }
}
/* Немножечко о нас — светлый блок с иконками */
.about-mini-section { margin: 80px auto; }
.about-mini-rows { display: flex; flex-direction: column; gap: 20px; }
.about-mini-row { display: flex; justify-content: center; align-items: stretch; gap: 20px; }
.about-mini-row .about-mini-card { width: 400px; max-width: 100%; }
.about-mini-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 16px;
  height: 70px;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 16px;
  align-items: center;
  align-content: center;
  box-shadow: 0 2px 8px rgba(112,125,255,0.08);
  border: 1px solid #ECECF1;
}
.about-mini-icon {
  grid-row: 1 / span 2;
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: #F4F6FF;
  border: 1px solid #E1E4FF;
}
.about-mini-icon.c-orange { background:#C9742F; border-color:#C9742F; }
.about-mini-icon.c-red { background:#D74A58; border-color:#D74A58; }
.about-mini-icon.c-pink { background:#C33A9E; border-color:#C33A9E; }
.about-mini-icon.c-brown { background:#8C5A42; border-color:#8C5A42; }
.about-mini-icon.c-blue { background:#2E6BFF; border-color:#2E6BFF; }
.about-mini-icon.c-indigo { background:#3860FF; border-color:#3860FF; }
.about-mini-icon.c-teal { background:#0AA7B2; border-color:#0AA7B2; }
.about-mini-icon.c-sky { background:#2E89FF; border-color:#2E89FF; }
.about-mini-icon.c-grey { background:#9A9A9A; border-color:#9A9A9A; }
.about-mini-icon.c-steel { background:#7E8A98; border-color:#7E8A98; }
.about-mini-icon img { width: 34px; height: 34px; display:block; border-radius: 0px;}
.about-mini-title { font: 600 18px 'Manrope', sans-serif; color:#18181b; margin: 0; }
.about-mini-sub { font: 400 16px 'Manrope', sans-serif; color:#6b6b6b; margin: 0; margin-top:-10px;}
@media (max-width: 1200px) { .about-mini-row { flex-wrap: wrap; } .about-mini-row .about-mini-card { width: 360px; } }
@media (max-width: 900px) { .about-mini-row .about-mini-card { width: 46%; min-width: 260px; } }
@media (max-width: 540px) { .about-mini-row .about-mini-card { width: 100%; } }

/* CTA блок внизу (светлое оформление) */
.cta-left {
    margin: 50px 0 50px 0;
}
.cta-light-section { background:#ffffff; border-radius:25px; box-shadow:0 4px 32px rgba(112,125,255,0.06); padding:0 0 0 80px; margin:0 0 80px 0; display:grid; grid-template-columns: 1.05fr .95fr; gap:32px; align-items:center; }
.cta-left h3 { margin:0 0 30px 0; font:400 18px 'Manrope', sans-serif; color:#707DFF; display:inline-block; background:#F4F6FF; border:1px solid #E1E4FF; padding:8px 16px; border-radius:999px; }
.cta-title { font:500 42px 'Manrope',  sans-serif; color:#18181b; margin-bottom: -5px;}
.cta-subtitle { font:500 42px 'Manrope', sans-serif; color:#18181b; margin:0 0 22px 0; }
.cta-desc { font:500 18px 'Manrope', sans-serif; color:#222; margin:18px 0 40px 0; }
.cta-highlight-text { color:#707DFF; text-decoration:underline; border:none; padding:0; margin:0; display:inline; }
.cta-form { display:grid; grid-template-columns: 1fr; gap:14px; max-width:640px; }
.cta-input { width:100%; height:60px; border-radius:60px; outline:2px solid #707DFF; border:none; padding:0 24px; font:400 18px 'Manrope', sans-serif; color:#1F1F1F; box-sizing:border-box; background:#fff; }
.cta-checkbox { display:flex; align-items:center; gap:10px; margin:6px 8px 0 8px; font:400 16px 'Manrope', sans-serif; color:#1F1F1F; }
.cta-submit { width:100%; height:60px; background:#707DFF; border:none; border-radius:30px; color:#fff; font:400 20px 'Manrope', sans-serif; display:flex; align-items:center; justify-content:center; gap:12px; cursor:pointer; }
.cta-submit:hover { background:#5a6edb; }
.cta-arrow { width:4em; transition: transform .3s ease-out; }
.cta-submit:hover .cta-arrow { transform: translateX(5px); }
.cta-right { display:flex; align-items:flex-start; justify-content:center; overflow:hidden; }
.cta-code-img { height:auto; width:auto; max-width:100%; border-radius:25px; }

@media (max-width: 1000px){
  .cta-light-section { grid-template-columns: 1fr; }
  .cta-right { order:-1; }
  .cta-code-img { width:100%; height:auto; max-width:100%; }
}


.faq-light-section { margin:0 0 80px 0; }
.faq-light { display:flex; flex-direction:column; gap:10px; }

.display-block-content {
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
}

.it-step-wrapper{
    display: flex;
}
.it-step-circle {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 8px 0 rgba(112,125,255,0.07);
    margin: auto -10px;
    border: 2px solid #707DFF;
}
.it-steps-section {
    width: 100%;
    margin-bottom: 60px;
}
.it-steps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    position: relative;
}
.it-step {
    background: #fff;
    color: #18181b;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 400;
    border-radius: 32px;
    padding: 10px 32px;
    border: 2px solid #707DFF;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px 0 rgba(112,125,255,0.07);
    transition: background 0.2s, color 0.2s;
}
.it-step.active {
    background: #707DFF;
    color: #fff;
    border: 2px solid #707DFF;
}
.it-steps-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #707DFF;
    z-index: 1;
    transform: translateY(-50%);
}
@media (max-width: 900px) {
    .it-steps-row {
    flex-direction: column;
    gap: 24px;
    padding: 0 10px;
    }
    .it-steps-row::before, .it-step:not(:last-child)::after {
    display: none;
    }
}

.feature-button-arrow {
    width: 6em;
}
.features-section-light {
  width: 100%;
  margin: 60px auto 0 auto;
  box-shadow: 0 4px 32px rgba(112,125,255,0.06);
}
.features-row-light {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}
.feature-card-light {
  background: #ffffff;
  border-radius: 40px;
  flex: 1 1 0;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 28px 32px 28px;
  box-shadow: 0 2px 8px 0 rgba(112,125,255,0.07);
  color: #18181b;
  position: relative;
  gap: 70px;
}
.feature-card-main {
  background: #707DFF;
  color: #fff;
  align-items: flex-start;
  gap: 40px;
}
.feature-main-title {
  font-size: 36px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.feature-title-light {
  font-size: 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  margin-bottom: 32px;
  color: #222222;
  line-height: 1.3;
}
.feature-icon-light {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-light img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.feature-desc-light {
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  color: #222222;
  margin-top: auto;
  white-space: pre-line;
  line-height: 1.3;;
}
@media (max-width: 1200px) {
  .features-row-light {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .feature-card-light {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

.show_error_privacy { color:#e11d48; font:400 14px 'Manrope',sans-serif; margin-top:5px; }

.popular-courses-list::-webkit-scrollbar {
    height: 8px;
    background: transparent;
    border-radius: 8px;
}
.popular-courses-list::-webkit-scrollbar-thumb {
    background: #707DFF;
    border-radius: 8px;
}
.popular-courses-list::-webkit-scrollbar-thumb:hover {
    background: #5059c9;
}