/* start-promo.css */

.start {
    width: 100%;
    position: relative;
    padding: 60px 0;
    background: url("../images/bg/promo.jpg") top center no-repeat;
    background-size: cover;
}

@media (max-width: 1240px) { .start { padding: 70px 0; } }

.start__title {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 1240px) { .start__title { margin-bottom: 40px; } }

.start__title h2 {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 1680px) { .start__title h2 { font-size: 44px; line-height: 44px; } }
@media (max-width: 1240px) { .start__title h2 { font-size: 34px; line-height: 34px; } }
@media (max-width: 760px) { .start__title h2 { font-size: 28px; line-height: 28px; } }

.start__content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.start__promo-block {
    width: 100%;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1680px) { .start__promo-block { padding: 40px 50px; } }
@media (max-width: 1240px) { .start__promo-block { padding: 35px 40px; } }
@media (max-width: 760px) { .start__promo-block { padding: 30px 25px; } }

.start__promo-icon {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

@media (max-width: 1240px) { .start__promo-icon { height: 100px; margin-bottom: 20px; } }
@media (max-width: 760px) { .start__promo-icon { height: 80px; } }

.start__promo-icon img {
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.start__promo-heading {
    width: 100%;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 28px;
    line-height: 32px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media (max-width: 1680px) { .start__promo-heading { font-size: 24px; line-height: 28px; } }
@media (max-width: 1240px) { .start__promo-heading { font-size: 22px; line-height: 26px; margin-bottom: 12px; } }
@media (max-width: 760px) { .start__promo-heading { font-size: 20px; line-height: 24px; } }

.start__promo-description {
    width: 100%;
    text-align: center;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #e0e0e0;
    margin-bottom: 0;
}

@media (max-width: 1240px) { .start__promo-description { font-size: 15px; line-height: 21px; } }
@media (max-width: 760px) { .start__promo-description { font-size: 14px; line-height: 20px; } }

.start__promo-steps {
    width: 100%;
    margin: 25px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 760px) { .start__promo-steps { margin: 20px 0 25px; gap: 12px; } }

.start__promo-step {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid rgba(47, 227, 23, 0.5);
    transition: all 0.3s ease-in-out;
}

.start__promo-step:hover {
    background: rgba(0, 0, 0, 0.4);
    border-left-color: #2fe317;
}

@media (max-width: 760px) { .start__promo-step { padding: 12px; gap: 12px; } }

.start__promo-step-number {
    min-width: 32px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2fe317 0%, #1a8f0d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    color: #000;
    box-shadow: 0 2px 10px rgba(47, 227, 23, 0.3);
}

@media (max-width: 760px) { .start__promo-step-number { min-width: 28px; width: 28px; height: 28px; font-size: 14px; line-height: 14px; } }

.start__promo-step-text {
    flex: 1;
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    color: #cacaca;
    padding-top: 5px;
}

.start__promo-step-text a {
    color: #2fe317;
}

@media (max-width: 760px) { .start__promo-step-text { font-size: 14px; line-height: 19px; padding-top: 4px; } }

.start__promo-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

@media (max-width: 760px) { .start__promo-buttons { gap: 10px; margin-bottom: 20px; } }

.start__promo-button {
    width: 100%;
    height: 58px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: filter 0.3s ease-in-out;
    cursor: pointer;
}

.start__promo-button:hover { filter: brightness(120%); }

@media (max-width: 1240px) { .start__promo-button { height: 54px; } }
@media (max-width: 760px) { .start__promo-button { height: 50px; } }

.start__promo-button span {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
}

@media (max-width: 1680px) { .start__promo-button span { font-size: 20px; line-height: 20px; } }
@media (max-width: 1240px) { .start__promo-button span { font-size: 18px; line-height: 18px; } }
@media (max-width: 760px) { .start__promo-button span { font-size: 16px; line-height: 16px; } }

.start__promo-button--primary {
    background-color: #2fe317;
    background-image: linear-gradient(0deg, #215f19, #36e31e);
}

.start__promo-button--primary span {
    color: #ffffff;
    text-shadow: 0px 1px 0px #000000;
}

.start__promo-button--secondary {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.start__promo-button--secondary:hover { border-color: rgba(255, 255, 255, 0.3); }

.start__promo-button--secondary span {
    color: #ffffff;
    text-shadow: none;
}

.start__promo-help {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 760px) {
    .start__promo-help {
        padding-top: 15px;
        gap: 10px;
    }
}

.start__promo-help a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-family: "Gilroy";
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    color: #cacaca;
    white-space: nowrap;
}

.start__promo-help a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #2fe317;
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .start__promo-help a {
        font-size: 13px;
        line-height: 13px;
        padding: 7px 14px;
    }
}

.start__promo-help a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 760px) {
    .start__promo-help a svg {
        width: 14px;
        height: 14px;
    }
}