.hero-bg {
    background: linear-gradient(135deg, var(--hero-start), var(--hero-middle), var(--hero-end));
    color: #ffffff;
    padding-top: 23px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-copy h1 {
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.hero-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    max-width: 50rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-actions .btn {
    min-width: 180px;
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 67px;
    justify-content: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    padding: 15px 20px;
    min-width: 163px;
}

.stat-item strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}
.rounded{
    border-radius: 15px;
}
.hero-panel {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: start;
    margin-top: 19px;
    margin-bottom: 10px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    max-width: 639px;
    flex: 0 0 auto;
    width: 100%;
}

.card-label {
    font-size: smaller;
    color: #ffecc7;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.card-title {
    padding-bottom: 21px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.3rem;
}

.feature-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.feature-list li::before {
    content: '•';
    color: #ffd700;
    line-height: 1;
    margin-right: 0.5rem;
}

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

    .hero-panel {
        justify-content: flex-start;
    }

    .hero-card {
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-bg {
        padding: 4rem 0 3rem;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stat-item {
        width: 100%;
    }
}