/* GoAccount - Features Page CSS */

/* ---- HERO ---- */
.features-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #1e40af 70%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-wave {
    position: relative;
    margin-top: -2px;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ---- FEATURE PILLS ---- */
.feature-pill {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-pill:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.45);
    color: white;
    transform: translateY(-2px);
}

/* ---- FEATURE SECTIONS ---- */
.feature-section {
    position: relative;
}

.feature-section:nth-child(even) {
    background: #f8fafc;
}

/* ---- FEATURE VISUAL (mockup box) ---- */
.feature-visual {
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.fv-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.fv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ---- SECTION ALTERNATING STRIPES ---- */
.feature-section + .feature-section {
    border-top: 1px solid #f1f5f9;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .features-hero { min-height: auto; }
}

@media (max-width: 768px) {
    .feature-visual {
        padding: 20px;
        margin-bottom: 8px;
    }
    .features-hero h1 { font-size: 2rem; }

    /* Feature pills wrap */
    .flex.flex-wrap.gap-2 .feature-pill { font-size: 0.75rem; padding: 5px 12px; }
}

@media (max-width: 480px) {
    .features-hero h1 { font-size: 1.65rem; }
    .feature-visual { padding: 14px; }
}
