/* ============================================================
   REEKIA — Member App Page
   ============================================================ */

/* ============ HERO ============ */
.member-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A1628 0%, #132240 50%, #1A3060 100%);
    overflow: hidden;
}

.member-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.member-hero-content { color: white; }

.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.member-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.member-hero h1 .accent { color: #60A5FA; }

.member-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.member-hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.member-hero .store-btn {
    background: white;
    color: var(--black);
}

.member-hero-trust {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.member-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.member-hero-trust svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* Hero visual */
.member-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.member-hero-visual .hero-phone-main {
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.member-hero-visual .hero-phone-main img {
    width: 280px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ============ WHY SECTION ============ */
.why-member {
    padding: 100px 0;
    background: var(--off-white);
}

.why-member .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-member .why-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s ease;
}

.why-member .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-member .why-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-member .why-card-icon svg {
    width: 24px;
    height: 24px;
    color: #3B82F6;
}

.why-member .why-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-member .why-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ============ FEATURES SECTION ============ */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-icon.feat-blue { background: #DBEAFE; color: #2563EB; }
.feature-icon.feat-green { background: #D1FAE5; color: #059669; }
.feature-icon.feat-orange { background: #FEF3C7; color: #D97706; }
.feature-icon.feat-purple { background: #EDE9FE; color: #7C3AED; }
.feature-icon.feat-red { background: #FEE2E2; color: #DC2626; }
.feature-icon.feat-gold { background: var(--gold-light); color: var(--gold); }

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

/* ============ SCREENSHOTS SECTION ============ */
.screenshots-section {
    padding: 100px 0 60px;
    overflow: hidden;
}

.screenshots-track {
    display: flex;
    gap: 20px;
    animation: scrollTrack 30s linear infinite;
    width: max-content;
    padding: 20px 0;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.screenshot-item {
    flex-shrink: 0;
    text-align: center;
}

.screenshot-item img {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshot-label {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
}

/* ============ FINAL CTA ============ */
.member-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1628 0%, #132240 100%);
    text-align: center;
}

.member-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
}

.member-final-cta > .container > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-bottom: 36px;
}

.member-final-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.member-final-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .member-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-hero-desc { margin: 0 auto 32px; }
    .member-hero-ctas { justify-content: center; }
    .member-hero-trust { justify-content: center; }

    .member-hero-visual {
        min-height: 400px;
    }

    .why-member .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .member-hero { padding: 100px 0 60px; }

    .member-hero-visual .hero-phone-main img { width: 220px; }
    .member-hero-visual { min-height: 320px; }

    .why-member .why-card { padding: 28px; }
    .feature-card { padding: 20px; }

    .features-section,
    .screenshots-section { padding: 60px 0; }

    .member-final-cta { padding: 60px 0; }
}
