.hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 80px 0;
    color: #fff;
}
.hero-wrapper { display: flex; align-items: center; gap: 50px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 34px; font-weight: 700; margin-bottom: 15px; line-height: 1.3; }
.hero-text p { font-size: 16px; opacity: 0.9; line-height: 1.7; margin-bottom: 30px; }
.hero-visual { flex: 1; text-align: center; }
.phone-frame {
    width: 220px;
    height: 440px;
    background: rgba(255,255,255,0.12);
    border: 3px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.phone-screen { text-align: center; padding: 20px; }
.phone-screen .shield-icon { font-size: 48px; margin-bottom: 15px; }
.phone-screen .status { font-size: 18px; font-weight: 600; margin-bottom: 5px; }
.phone-screen .status-sub { font-size: 13px; opacity: 0.8; margin-bottom: 20px; }
.phone-dots { display: flex; gap: 8px; justify-content: center; }
.phone-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.phone-dots span.active { background: #4caf50; box-shadow: 0 0 10px rgba(76,175,80,0.6); }
.download-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}
.download-btn:hover { background: rgba(255,255,255,0.25); }
.download-btn .btn-icon { font-size: 22px; }
.download-btn .btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.download-btn .btn-text small { font-size: 10px; opacity: 0.7; }
.download-btn .btn-text span { font-size: 14px; font-weight: 600; }

.section-wrap { padding: 70px 0; }
.section-wrap.bg-light { background: #f5f8ff; }
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h2 { font-size: 28px; font-weight: 600; color: #333; margin-bottom: 10px; }
.section-heading p { color: #888; font-size: 15px; }
.section-heading h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    margin: 12px auto 0;
    border-radius: 2px;
}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}
.feature-icon.green { background: #e8f5e9; color: #43a047; }
.feature-icon.blue { background: #e3f2fd; color: #1e88e5; }
.feature-icon.purple { background: #f3e5f5; color: #8e24aa; }
.feature-icon.orange { background: #fff3e0; color: #fb8c00; }
.feature-icon.teal { background: #e0f2f1; color: #00897b; }
.feature-icon.red { background: #fbe9e7; color: #e53935; }
.feature-card h4 { font-size: 18px; font-weight: 600; color: #333; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; }

.platforms-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.platform-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.platform-card:hover { transform: translateY(-4px); }
.platform-icon { font-size: 36px; margin-bottom: 12px; }
.platform-card h5 { font-size: 15px; font-weight: 600; color: #333; margin-bottom: 5px; }
.platform-card p { font-size: 12px; color: #888; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { text-align: center; padding: 35px 20px; }
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-card h4 { font-size: 18px; font-weight: 600; color: #333; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: #666; line-height: 1.6; }

.cta-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 30px; }
.cta-section .btn-white {
    background: #fff;
    color: #2575fc;
    padding: 14px 36px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}
.cta-section .btn-white:hover { transform: translateY(-2px); }

.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}
.faq-question:hover { color: #2575fc; }
.faq-question .arrow { transition: transform 0.3s; font-size: 12px; color: #999; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
    padding: 0 22px 18px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    display: none;
}
.faq-item.open .faq-answer { display: block; }

@media (max-width: 768px) {
    .hero-section { padding: 50px 0; }
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 26px; }
    .download-buttons { justify-content: center; }
    .phone-frame { width: 180px; height: 360px; }
    .features-grid, .steps-grid { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: repeat(3, 1fr); }
    .section-wrap { padding: 50px 0; }
}
