:root {
    --dark-bg: #1A1713;
    --card-bg: #2A241E;
    --accent-gold: #F5C842;
    --warm-tan: #C4A882;
    --text-light: #F5ECD7;
    --text-dark: #1A1713;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html, body {
    max-width: 100%;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.glow-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(245, 200, 66, 0.05);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    top: -50px;
    right: -50px;
}

header {
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 24px;
}

.domain-text {
    font-weight: bold; 
    color: var(--warm-tan);
    font-size: 14px;
}

.hero {
    padding: 60px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    gap: 40px;
}

.hero-content {
    flex: 1.2;
    text-align: right;
}

.badge {
    background: rgba(245, 200, 66, 0.08);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 200, 66, 0.15);
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 18px;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 16px;
    color: var(--warm-tan);
    margin-bottom: 32px;
    max-width: 550px;
}

.download-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(245, 200, 66, 0.12);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--warm-tan);
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(245, 200, 66, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 270px;
    height: 520px;
    background-color: #000;
    border-radius: 36px;
    border: 8px solid #2A241E;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    border: 1px solid rgba(245, 200, 66, 0.08);
}

.phone-screen i {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(245, 200, 66, 0.25);
}

.phone-screen h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 6px;
}

.phone-screen p {
    font-size: 12px;
    color: var(--warm-tan);
}

.features {
    padding: 60px 8%;
    background-color: rgba(42, 36, 30, 0.15);
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--accent-gold);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background-color: var(--card-bg);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(196, 168, 130, 0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 200, 66, 0.2);
}

.card i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card p {
    font-size: 13px;
    color: var(--warm-tan);
}

footer {
    padding: 24px 8%;
    text-align: center;
    border-top: 1px solid rgba(245, 200, 66, 0.08);
    color: var(--warm-tan);
    font-size: 13px;
}

/* 📱 توافق مثالي مع شاشات الموبايل */
@media (max-width: 968px) {
    header {
        padding: 15px 5%;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        gap: 35px;
        min-height: auto;
    }
    .hero-content {
        text-align: center;
        order: 1;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 15px;
        margin: 0 auto 24px auto;
    }
    .download-btns {
        justify-content: center;
        gap: 12px;
    }
    .hero-image {
        order: 2;
        margin-top: 10px;
    }
    .phone-mockup {
        width: 240px;
        height: 460px;
    }
    .features {
        padding: 50px 5%;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 14px 5%;
    }
    .logo {
        font-size: 17px;
    }
    .logo i {
        font-size: 20px;
    }
    .domain-text {
        font-size: 12px;
    }
    .badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    .hero {
        padding: 30px 6%;
        gap: 28px;
    }
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.5;
    }
    .hero-content p {
        font-size: 14px;
    }
    .download-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    .phone-mockup {
        width: 210px;
        height: 410px;
    }
    .phone-screen i {
        font-size: 40px;
    }
    .features {
        padding: 40px 6%;
    }
    .card {
        padding: 24px 18px;
    }
}