:root {
    --gold: #C9A961;
    --gold-light: #E8D5A8;
    --gold-dark: #A88B4A;
    --gold-glow: rgba(201, 169, 97, 0.4);
    --bg: #030305;
    --bg-elevated: #08080C;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --teal: #00B894;
    --purple: #A855F7;
    --blue: #3B82F6;
    --pink: #EC4899;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loaded .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

::selection {
    background: var(--gold);
    color: var(--bg);
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 4rem;
    color: var(--gold);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 16px;
    color: var(--text);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 10px;
    margin-top: 24px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: preloaderBar 1.5s ease-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes preloaderBar {
    to { width: 100%; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10002;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .section-container { padding: 0 20px; }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bg);
    box-shadow: 0 0 30px var(--gold-glow);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text);
    margin-left: 8px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 5, 0.98);
    backdrop-filter: blur(20px);
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mm-link {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active .mm-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mm-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mm-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mm-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mm-link:nth-child(4) { transition-delay: 0.25s; }

@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 40px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 97, 0.12) 0%, transparent 50%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    top: -200px;
    left: -100px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 1s var(--ease-out-expo);
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.animate-in[data-delay="1"] { animation-delay: 0.1s; }
.animate-in[data-delay="2"] { animation-delay: 0.2s; }
.animate-in[data-delay="3"] { animation-delay: 0.3s; }
.animate-in[data-delay="4"] { animation-delay: 0.4s; }
.animate-in[data-delay="5"] { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-word {
    display: inline-block;
    transition: transform 0.5s var(--ease-out-expo);
}

.title-accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shimmer-text {
    background: linear-gradient(120deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.text-highlight {
    color: var(--gold);
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.1);
}

.hero-right {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.phone-showcase {
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a1f 0%, #0d0d10 100%);
    border-radius: 48px;
    padding: 12px;
    position: relative;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a0d 0%, #080810 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.phone-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    border-radius: 40px;
    pointer-events: none;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-size: 13px;
    color: var(--text-secondary);
}

.screen-dynamic-island {
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
}

.screen-icons {
    display: flex;
    gap: 6px;
    font-size: 11px;
}

.screen-content {
    padding: 16px 20px;
}

.app-greeting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.greeting-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.greeting-icon {
    font-size: 18px;
    color: var(--gold);
}

.app-widget {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.widget-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.1), transparent);
}

.widget-prayer {
    position: relative;
}

.prayer-next {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.prayer-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.prayer-time {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.widget-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.widget-countdown {
    font-size: 24px;
    font-weight: 700;
    font-family: monospace;
    color: var(--text);
}

.widget-progress {
    width: 50px;
    height: 50px;
}

.widget-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(201, 169, 97, 0.2);
    stroke-width: 3;
}

.progress-fill {
    fill: none;
    stroke: var(--gold);
    stroke-width: 3;
    stroke-linecap: round;
    animation: progressAnim 2s ease-out forwards;
}

@keyframes progressAnim {
    from { stroke-dasharray: 0, 100; }
    to { stroke-dasharray: 75, 100; }
}

.app-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.quick-item {
    aspect-ratio: 1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.3s var(--ease-out-expo);
}

.quick-item:hover {
    transform: scale(1.1);
}

.qi-gold {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--gold);
}

.qi-teal {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2) 0%, rgba(0, 184, 148, 0.05) 100%);
    border: 1px solid rgba(0, 184, 148, 0.2);
    color: var(--teal);
}

.qi-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--purple);
}

.qi-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--blue);
}

.app-verse {
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.02) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 18px;
    position: relative;
}

.verse-decoration {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.verse-arabic {
    display: block;
    font-family: 'Amiri', serif;
    font-size: 1.2rem;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 8px;
    margin-top: 8px;
}

.verse-meal {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-badge i {
    color: var(--gold);
}

.fb-1 {
    top: 80px;
    left: -80px;
}

.fb-2 {
    bottom: 140px;
    right: -70px;
}

.fb-3 {
    bottom: 260px;
    left: -60px;
}

.scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero { padding: 120px 20px 60px; }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-left { order: 2; }
    .hero-right { order: 1; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .hero-actions { justify-content: center; }
    .floating-badge { display: none; }
    .stat-divider { display: none; }
}

@media (max-width: 640px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .phone-frame { width: 260px; height: 540px; }
}

.marquee-section {
    padding: 50px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.marquee-content span i {
    color: var(--gold);
}

.marquee-dot {
    color: var(--gold) !important;
    font-size: 0.8rem !important;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.features-section {
    padding: 160px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.bento-card:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-8px);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-medium {
    grid-column: span 2;
}

.bento-small {
    grid-column: span 1;
}

.bento-wide {
    grid-column: span 4;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
}

.icon-ring {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 22px;
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.bento-card:hover .icon-ring {
    opacity: 1;
    inset: -8px;
}

.bento-icon.icon-teal {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.15) 0%, rgba(0, 184, 148, 0.05) 100%);
    border-color: rgba(0, 184, 148, 0.2);
    color: var(--teal);
}

.bento-icon.icon-teal .icon-ring { border-color: rgba(0, 184, 148, 0.2); }

.bento-icon.icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(168, 85, 247, 0.2);
    color: var(--purple);
}

.bento-icon.icon-purple .icon-ring { border-color: rgba(168, 85, 247, 0.2); }

.bento-icon.icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--blue);
}

.bento-icon.icon-blue .icon-ring { border-color: rgba(59, 130, 246, 0.2); }

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bento-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.bento-tags span {
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.bento-tags span:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.bento-visual {
    margin-top: 28px;
}

.quran-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ayah-card {
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    position: relative;
}

.ayah-ornament {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(201, 169, 97, 0.3);
}

.ayah-ornament-left { left: 12px; }
.ayah-ornament-right { right: 12px; }

.ayah-arabic {
    display: block;
    font-size: 2rem;
    font-family: 'Amiri', serif;
    color: var(--gold);
    margin-bottom: 12px;
    direction: rtl;
}

.ayah-meal {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.quran-wave {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 30px;
}

.wave-bar {
    width: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.wave-bar:nth-child(1) { height: 10px; }
.wave-bar:nth-child(2) { height: 20px; }
.wave-bar:nth-child(3) { height: 15px; }
.wave-bar:nth-child(4) { height: 25px; }
.wave-bar:nth-child(5) { height: 18px; }
.wave-bar:nth-child(6) { height: 22px; }
.wave-bar:nth-child(7) { height: 12px; }

.prayer-visual {
    margin-top: 24px;
}

.prayer-times-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ptm-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-glass);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    transition: all 0.3s;
}

.ptm-item span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ptm-item i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.ptm-item.highlight {
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--gold);
}

.ptm-active {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    border-radius: 3px 0 0 3px;
}

.compass-visual {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 100px;
    height: 100px;
}

.compass-outer {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(168, 85, 247, 0.2);
    border-radius: 50%;
}

.compass-ring {
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
}

.compass-inner {
    position: absolute;
    inset: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass-needle {
    position: absolute;
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, var(--purple) 50%, var(--text-muted) 50%);
    border-radius: 2px;
    transform: rotate(-30deg);
}

.compass-kaaba {
    font-size: 1.8rem;
}

.compass-degrees {
    position: absolute;
    inset: 0;
}

.compass-degrees span {
    position: absolute;
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
}

.compass-degrees span:nth-child(1) { top: 2px; left: 50%; transform: translateX(-50%); }
.compass-degrees span:nth-child(2) { right: 2px; top: 50%; transform: translateY(-50%); }
.compass-degrees span:nth-child(3) { bottom: 2px; left: 50%; transform: translateX(-50%); }
.compass-degrees span:nth-child(4) { left: 2px; top: 50%; transform: translateY(-50%); }

.dhikr-visual {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dhikr-beads {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bead {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
}

.bead:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.bead:nth-child(2) { top: 12px; right: 12px; }
.bead:nth-child(3) { right: 0; top: 50%; transform: translateY(-50%); }
.bead:nth-child(4) { bottom: 12px; right: 12px; }
.bead:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.bead:nth-child(6) { bottom: 12px; left: 12px; }
.bead:nth-child(7) { left: 0; top: 50%; transform: translateY(-50%); }

.bead.active {
    background: var(--blue);
    box-shadow: 0 0 15px var(--blue);
}

.dhikr-count {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.6);
}

.dhikr-ring {
    position: absolute;
    inset: 5px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
}

.content-stats {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
}

.cs-item {
    text-align: center;
    flex: 1;
}

.cs-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin: 0 auto 12px;
    font-size: 18px;
}

.cs-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.cs-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .features-section { padding: 100px 20px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; }
    .bento-wide { grid-column: span 2; }
    .content-stats { flex-wrap: wrap; gap: 20px; }
    .cs-item { flex: 1 1 30%; }
}

@media (max-width: 640px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-medium, .bento-small, .bento-wide { grid-column: span 1; }
    .content-stats { gap: 16px; }
    .cs-item { flex: 1 1 45%; }
}

.horizontal-section {
    padding: 120px 0;
    overflow: hidden;
}

.horizontal-wrapper {
    padding: 0 40px;
}

.horizontal-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.horizontal-intro {
    min-width: 300px;
}

.horizontal-cards {
    display: flex;
    gap: 24px;
    animation: horizontalScroll 30s linear infinite;
}

@keyframes horizontalScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.h-card {
    min-width: 200px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.h-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.h-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin: 0 auto 16px;
}

.h-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.h-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .horizontal-content { flex-direction: column; gap: 40px; }
    .horizontal-intro { min-width: auto; text-align: center; }
}

.experience-section {
    padding: 160px 40px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.exp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.exp-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 24px;
    margin-bottom: 48px;
}

.exp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.exp-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.exp-feature:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.05);
    transform: translateY(-4px);
}

.ef-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

.ef-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.ef-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ef-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.exp-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-cards-stack {
    position: relative;
    width: 300px;
    height: 420px;
}

.fcs-card {
    position: absolute;
    width: 220px;
    height: 130px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
}

.fcs-card i {
    font-size: 32px;
    color: var(--gold);
}

.fcs-1 { top: 0; left: 0; transform: rotate(-8deg); z-index: 4; }
.fcs-2 { top: 70px; left: 70px; transform: rotate(-3deg); z-index: 3; }
.fcs-3 { top: 150px; left: 30px; transform: rotate(5deg); z-index: 2; }
.fcs-4 { top: 240px; left: 90px; transform: rotate(-2deg); z-index: 1; }

.fcs-card:hover {
    transform: rotate(0deg) scale(1.08) translateY(-10px);
    z-index: 10;
    border-color: var(--gold);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 0 0 30px var(--gold-glow);
}

@media (max-width: 1024px) {
    .experience-section { padding: 100px 20px; }
    .exp-layout { grid-template-columns: 1fr; gap: 60px; }
    .exp-right { order: -1; }
}

@media (max-width: 640px) {
    .exp-features { grid-template-columns: 1fr; }
}

.download-section {
    padding: 180px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.download-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.download-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
}

.download-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 500;
    margin-bottom: 16px;
}

.download-title em {
    font-style: italic;
    color: var(--gold);
}

.download-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.store-btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.store-btn:hover .store-btn-bg {
    opacity: 1;
}

.store-btn:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-glow);
}

.store-btn i {
    font-size: 36px;
    position: relative;
}

.store-btn div {
    text-align: left;
    position: relative;
}

.store-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
}

.store-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.store-btn:hover .store-btn-shine {
    left: 100%;
}

.store-btn-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.download-trust {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--gold);
}

.download-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-muted);
}

.download-qr span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .download-section { padding: 100px 20px; }
    .download-buttons { flex-direction: column; align-items: center; }
    .store-btn { width: 100%; max-width: 320px; justify-content: center; }
}

.faq-section {
    padding: 160px 40px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 14px;
    color: var(--gold);
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section { padding: 100px 20px; }
}

.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 40px 40px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom i {
    color: var(--pink);
}

@media (max-width: 768px) {
    .footer { padding: 60px 20px 30px; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 40px; }
    .footer-social { justify-content: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 40px; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower, .cursor-glow { display: none; }
    body { cursor: auto; }
}
