/* ===== EcoPompe page overrides ===== */

.ep-hero::before {
    background: radial-gradient(circle, rgba(10, 132, 255, 0.06) 0%, rgba(48, 209, 88, 0.03) 40%, transparent 70%);
}

.ep-badge {
    background: rgba(10, 132, 255, 0.1);
    color: #0A84FF;
    border-color: rgba(10, 132, 255, 0.2);
}

.ep-highlight {
    background: linear-gradient(135deg, #0A84FF, #5AC8FA, #30D158);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero layout (two-column with phone) */
.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; text-align: left; }

.store-info {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.hero-image { flex: 0 0 280px; }

.phone-frame {
    background: linear-gradient(145deg, #E8E8ED, #D2D2D7);
    border-radius: 44px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.03);
}

.phone-frame img {
    width: 100%;
    border-radius: 36px;
    display: block;
}

/* Feature icons EcoPompe colors */
.ep-icon-1 { background: rgba(10, 132, 255, 0.1); }
.ep-icon-2 { background: rgba(255, 69, 58, 0.1); }
.ep-icon-3 { background: rgba(48, 209, 88, 0.1); }
.ep-icon-4 { background: rgba(255, 159, 10, 0.1); }
.ep-icon-5 { background: rgba(175, 82, 222, 0.1); }
.ep-icon-6 { background: rgba(90, 200, 250, 0.1); }

/* Screenshots */
.screenshots {
    padding: 100px 0;
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.screenshots-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }

.screenshot-item {
    flex: 0 0 220px;
    scroll-snap-align: center;
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-bottom: 14px;
    transition: transform 0.3s;
}
.screenshot-item:hover img { transform: scale(1.03); }

.screenshot-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Privacy */
.privacy { padding: 100px 0; }

.privacy-card {
    background: linear-gradient(135deg, #1D1D1F 0%, #2C2C2E 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #F5F5F7;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-card h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    background: rgba(255,255,255,0.06);
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #F5F5F7;
}

.privacy-icon { font-size: 18px; }

/* CTA */
.cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text { text-align: center; }
    .subtitle { margin: 0 auto 28px; }
    .hero-image { flex: 0 0 240px; }
    .ep-features,
    .screenshots,
    .privacy,
    .cta { padding: 64px 0; }
    .privacy-card { padding: 32px 20px; }
    .privacy-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 28px; }
}
