/* ============================================
   EasyVideo Features Page
   — Vrew-style alternating sections
   — CSS app-frame mockup for screenshots
   ============================================ */

/* ============ 히어로 ============ */
.feat-hero {
    padding: 80px 0 50px;
    text-align: center;
    background: var(--bg-white);
}

.feat-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feat-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feat-hero-desc {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============ 기능 섹션 ============ */
.feat-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.feat-section.alt {
    background: var(--bg-off);
}

.feat-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feat-row.reverse {
    flex-direction: row-reverse;
}

.feat-text {
    flex: 1;
    min-width: 0;
}

.feat-visual {
    flex: 1.2;
    min-width: 0;
}

.feat-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient);
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.feat-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feat-text p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feat-list {
    list-style: none;
    padding: 0;
}

.feat-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.feat-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

/* ============ 앱 프레임 목업 ============ */
.app-frame {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.app-frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #12121e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-frame-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.app-frame-title {
    margin-left: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.app-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* ============ CTA ============ */
.feat-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a0a3a 100%);
    color: #fff;
}

.feat-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feat-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.feat-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ 반응형 ============ */
@media (max-width: 768px) {
    .feat-hero h1 {
        font-size: 30px;
    }

    .feat-hero-desc br {
        display: none;
    }

    .feat-section {
        padding: 50px 0;
    }

    .feat-row,
    .feat-row.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .feat-text h2 {
        font-size: 26px;
    }

    .feat-visual {
        order: -1;
    }

    .feat-cta h2 {
        font-size: 24px;
    }

    .feat-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
