:root {
    --primary: #d97706;
    --primary-dark: #92400e;
    --bg: #fcfbf7;
    --bg-alt: #f3f4f6;
    --text: #1c1917;
    --text-muted: #57534e;
    --glass: rgba(252, 251, 247, 0.85);
    --glass-border: rgba(217, 119, 6, 0.1);
    --star-gradient: linear-gradient(135deg, #d97706 0%, #92400e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.islamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 15l-15 15l-15 -15z' fill='%23D97706' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.06em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--star-gradient);
    clip-path: polygon(50% 0%, 65% 15%, 85% 15%, 85% 35%, 100% 50%, 85% 65%, 85% 85%, 65% 85%, 50% 100%, 35% 85%, 15% 85%, 15% 65%, 0% 50%, 15% 35%, 15% 15%, 35% 15%);
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

section {
    padding: 120px 0;
}

.hero {
    text-align: center;
    padding-top: 180px;
    padding-bottom: 80px;
}

.hero-tagline {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: block;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.07em;
    color: var(--text);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    background: var(--star-gradient);
    color: white;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(146, 64, 14, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 3.5rem;
    background: white;
    border-radius: 40px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-item h4 {
    font-size: 3rem;
    font-weight: 950;
    color: var(--primary-dark);
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-item p {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.quote-section {
    background: white;
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 2rem;
    background: var(--bg-alt);
    clip-path: polygon(50% 0%, 65% 15%, 85% 15%, 85% 35%, 100% 50%, 85% 65%, 85% 85%, 65% 85%, 50% 100%, 35% 85%, 15% 85%, 15% 65%, 0% 50%, 15% 35%, 15% 15%, 35% 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem;
    background: white;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.05);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

footer {
    padding: 6rem 0;
    background: var(--bg);
    text-align: center;
    color: var(--text-muted);
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text);
    margin: 0 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero {
        padding-top: 140px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .download-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 3rem;
        padding: 2.5rem;
    }

    .stat-item h4 {
        font-size: 2.5rem;
    }
}