/* VROMO Bot - orange route management theme */
.hero-section {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 185, 94, 0.24), transparent 30%),
        radial-gradient(circle at 82% 28%, rgba(255, 122, 0, 0.30), transparent 34%),
        linear-gradient(135deg, #1f1205 0%, #703000 48%, #ff7a00 100%);
    overflow: hidden;
}

.feature-icon {
    color: #FF7A00;
}

.download-btn {
    background: #FF7A00;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.38);
}

.download-btn:hover {
    background: #E86600;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.55);
}

.stat-number {
    color: #FF7A00;
}

.vromo-phone {
    background: #111827;
    border: 10px solid rgba(255, 255, 255, 0.92);
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    color: #111827;
    margin: 0 auto;
    max-width: 350px;
    overflow: hidden;
}

.vromo-screen {
    background: #fff7ed;
    min-height: 560px;
    padding: 22px;
}

.vromo-status-bar,
.vromo-task-top,
.vromo-route-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.vromo-status-bar {
    color: #6b3a10;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.vromo-app-header {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.vromo-app-icon {
    align-items: center;
    background: #FF7A00;
    border-radius: 14px;
    color: #fff;
    display: inline-flex;
    font-size: 1.8rem;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.vromo-app-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0;
}

.vromo-app-subtitle {
    color: #8a4b13;
    font-size: 0.88rem;
    margin: 0;
}

.vromo-task-card {
    background: #fff;
    border: 1px solid rgba(255, 122, 0, 0.18);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(76, 29, 0, 0.14);
    margin-bottom: 16px;
    padding: 18px;
}

.vromo-task-title {
    font-size: 1.3rem;
    font-weight: 900;
}

.vromo-pill {
    align-items: center;
    background: rgba(255, 122, 0, 0.12);
    border-radius: 999px;
    color: #c45100;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    justify-content: center;
    min-width: 72px;
    padding: 7px 12px;
    text-align: center;
}

.vromo-route-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.vromo-route-row {
    gap: 10px;
    justify-content: flex-start;
}

.vromo-route-pin {
    align-items: center;
    background: #FF7A00;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.vromo-route-copy strong,
.vromo-filter-card strong {
    display: block;
}

.vromo-route-copy span,
.vromo-filter-card span {
    color: #6b7280;
    font-size: 0.86rem;
}

.vromo-claim-button {
    background: #FF7A00;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    margin-top: 18px;
    padding: 13px;
    text-align: center;
}

.vromo-filter-card {
    background: #fff;
    border: 1px solid rgba(255, 122, 0, 0.16);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(76, 29, 0, 0.08);
    height: 100%;
    padding: 24px;
    text-align: center;
}

.vromo-filter-card i {
    color: #FF7A00;
    font-size: 2rem;
}

@media (max-width: 576px) {
    .vromo-phone {
        max-width: 310px;
    }

    .vromo-screen {
        min-height: 500px;
        padding: 18px;
    }
}