.home-start-panel {
    width: min(1180px, calc(100% - 48px));
    margin: clamp(-72px, -6vw, -42px) auto 42px;
    position: relative;
    z-index: 5;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(6, 43, 53, 0.08);
    box-shadow: 0 28px 70px rgba(6, 43, 53, 0.14);
    backdrop-filter: blur(10px);
}

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

.home-start-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    border-radius: 26px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 43, 53, 0.10);
    box-shadow: 0 14px 38px rgba(6, 43, 53, 0.06);
}

.home-start-card--guided {
    background: linear-gradient(135deg, #FFF8E8 0%, #FFFFFF 58%, #FFF4D9 100%);
    border-color: rgba(253, 187, 58, 0.48);
}

.home-start-card--explore {
    background: linear-gradient(135deg, #F3FBF8 0%, #FFFFFF 60%, #EEF7F4 100%);
    border-color: rgba(6, 93, 84, 0.18);
}

.home-start-card__badge {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(253, 187, 58, 0.14);
    color: #A96600;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-start-card__badge--green {
    background: rgba(6, 93, 84, 0.10);
    color: #245F58;
}

.home-start-card__title {
    margin: 0;
    color: #062B35;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.home-start-card__text {
    margin: 0;
    color: #546A70;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 650;
}

.home-start-search {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.home-start-search__field {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    min-height: 58px;
    padding: 0 14px;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 43, 53, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.home-start-search__field:focus-within {
    border-color: rgba(253, 179, 45, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.70), 0 0 0 3px rgba(253, 179, 45, 0.22);
}

.home-start-search__icon {
    color: #6B7E83;
    font-size: 1.15rem;
}

.home-start-search__field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #062B35;
    font: inherit;
    font-weight: 700;
}

.home-start-search__field input::placeholder {
    color: #8B9AA0;
}

.home-start-search__error {
    margin: 0;
    color: #B42318;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.home-start-card__primary,
.home-start-card__secondary {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    border-radius: 18px;
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.home-start-card__primary {
    border: 0;
    color: #062B35;
    background: linear-gradient(180deg, #FFC84A 0%, #FDB32D 100%);
    box-shadow: 0 16px 34px rgba(253, 179, 45, 0.26);
}

.home-start-card__primary:focus-visible {
    outline: 3px solid rgba(6, 43, 53, 0.28);
    outline-offset: 2px;
}

.home-start-card__secondary {
    color: #062B35;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(6, 43, 53, 0.22);
}

.home-start-card__secondary:focus-visible {
    outline: 3px solid rgba(6, 93, 84, 0.28);
    outline-offset: 2px;
}

.home-start-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.home-start-card__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 43, 53, 0.12);
    color: #062B35;
    font-size: 0.86rem;
    font-weight: 850;
}

.home-start-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(248, 247, 242, 0.92);
    color: #546A70;
}

.home-start-note__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #FFFFFF;
    color: #0B3C48;
    border: 1px solid rgba(6, 43, 53, 0.10);
    font-weight: 900;
}

.home-start-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 700;
}

@media (max-width: 767px) {
    .home-start-panel {
        width: calc(100% - 24px);
        margin-top: -54px;
        margin-bottom: 30px;
        padding: 12px;
        border-radius: 28px;
    }

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

    .home-start-card {
        padding: 16px;
        border-radius: 20px;
        gap: 10px;
    }

    .home-start-card__badge {
        padding: 6px 10px;
        font-size: 0.68rem;
        gap: 6px;
        letter-spacing: 0.03em;
    }

    .home-start-card__title {
        font-size: clamp(1.35rem, 7vw, 1.7rem);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .home-start-card__text {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .home-start-search {
        gap: 10px;
    }

    .home-start-search__field {
        grid-template-columns: 36px 1fr;
        min-height: 50px;
        padding: 0 12px;
        border-radius: 16px;
    }

    .home-start-search__icon {
        font-size: 1rem;
    }

    .home-start-search__field input {
        font-size: 0.9rem;
        line-height: 1.25;
    }

    .home-start-card__primary,
    .home-start-card__secondary {
        min-height: 48px;
        border-radius: 16px;
        font-size: 0.92rem;
        line-height: 1.15;
        padding: 0 12px;
    }

    .home-start-card__chips {
        gap: 8px;
    }

    .home-start-card__chips span {
        min-height: 32px;
        padding: 0 10px;
        font-size: 0.82rem;
    }

    .home-start-note {
        margin-top: 12px;
        padding: 12px 14px;
        border-radius: 18px;
        gap: 10px;
    }

    .home-start-note__icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .home-start-note p {
        font-size: 0.88rem;
        line-height: 1.32;
    }
}

@media (max-width: 370px) {
    .home-start-panel {
        width: calc(100% - 20px);
        padding: 10px;
    }

    .home-start-card {
        padding: 14px;
    }
}
