/* =========================================
   E-SONUC - THE DIGITAL RESULTS HUB (V2 LUXE)
   ========================================= */

:root {
    --es-navy: #0B2C54;
    --es-orange: #FF6B35;
    --es-bg: #f8fafc;
}

.es-page-wrapper {
    background: var(--es-bg);
    padding-bottom: 120px;
}

/* ── App Store Buttons Luxe ──────────────── */
.es-store-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.es-btn-store {
    flex: 1;
    max-width: 240px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 15px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn-store-apple {
    background: #000;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-store-google {
    background: #fff;
    color: var(--es-navy) !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.es-btn-store:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 44, 84, 0.15);
}

.es-store-icon {
    font-size: 28px;
}

.es-store-text {
    display: flex;
    flex-direction: column;
}

.es-store-text small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.es-store-text span {
    font-size: 18px;
    font-weight: 800;
}

/* ── Journey Guide ────────────────────────── */
.es-journey-section {
    margin-top: 80px;
}

.es-journey-title {
    text-align: center;
    margin-bottom: 50px;
}

.es-journey-title h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--es-navy);
}

.es-step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(11, 44, 84, 0.03);
    box-shadow: 0 20px 50px rgba(11, 44, 84, 0.04);
    transition: all 0.4s ease;
    position: relative;
}

.es-step-card:hover {
    transform: translateY(-10px);
    border-color: var(--es-orange);
}

.es-step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--es-orange);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.es-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(11, 44, 84, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--es-navy);
}

.es-step-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--es-navy);
    margin-bottom: 12px;
}

.es-step-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Web Portal Link ──────────────────────── */
.es-web-portal-card {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--es-navy) 0%, #1e4b85 100%);
    padding: 50px;
    border-radius: 35px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.es-web-portal-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 0;
}

.btn-luxe-web {
    background: #fff;
    color: var(--es-navy);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-luxe-web:hover {
    background: var(--es-orange);
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .es-store-grid { flex-direction: column; align-items: center; }
}
