/* ===== Font Face ===== */
@font-face {
    font-family: 'MiSansArabic';
    src: url('../fonts/MiSansArabic-Bold.ttf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    --primary-color: #1AC15C;
    --secondary-color: #20243A;
    --dark-bg: #0F1117;
    --card-bg: #1A1D2E;
    --text-primary: #FFFFFF;
    --text-secondary: #B4B9C9;
    --gradient-1: linear-gradient(135deg, #1AC15C 0%, #15A04D 100%);
    --gradient-2: linear-gradient(135deg, #20243A 0%, #2D3252 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(26, 193, 92, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'MiSansArabic';
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header Styles ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-section:hover .logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(26, 193, 92, 0.5));
}

.app-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 16px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 36px);
    right: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26, 193, 92, 0.03) 2px, rgba(26, 193, 92, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(26, 193, 92, 0.03) 2px, rgba(26, 193, 92, 0.03) 4px);
    opacity: 0.5;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 193, 92, 0.2), transparent);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(32, 36, 58, 0.3), transparent);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 193, 92, 0.15), transparent);
    top: 50%;
    left: 5%;
    animation-delay: 10s;
}

.shape-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(32, 36, 58, 0.25), transparent);
    bottom: 10%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(26, 193, 92, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(26, 193, 92, 0.8));
    }
}

.title-sub {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'MiSansArabic';
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 193, 92, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(26, 193, 92, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(180, 185, 201, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Hero Image - Phone Mockup - TILTED TO RIGHT */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.phone-mockup {
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
    /* TILT THE PHONE TO THE RIGHT */
    transform: rotate(-8deg);
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0px) rotate(-8deg);
    }
    50% {
        transform: translateY(-20px) rotate(-8deg);
    }
}

.phone-frame {
    width: 280px;
    height: 590px;
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(26, 193, 92, 0.3);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 193, 92, 0.4), transparent 70%);
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-paragraph {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-paragraph strong {
    color: var(--primary-color);
    font-weight: 800;
}

.about-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(26, 193, 92, 0.05);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(26, 193, 92, 0.1);
    transform: translateX(-5px);
}

.highlight-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(26, 193, 92, 0.2), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.app-logo-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2;
}

.about-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(26, 193, 92, 0.4));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 193, 92, 0.1), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.25s; }
.feature-card:nth-child(5) { animation-delay: 0.3s; }
.feature-card:nth-child(6) { animation-delay: 0.35s; }
.feature-card:nth-child(7) { animation-delay: 0.4s; }
.feature-card:nth-child(8) { animation-delay: 0.45s; }
.feature-card:nth-child(9) { animation-delay: 0.5s; }
.feature-card:nth-child(10) { animation-delay: 0.55s; }
.feature-card:nth-child(11) { animation-delay: 0.6s; }
.feature-card:nth-child(12) { animation-delay: 0.65s; }

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(26, 193, 92, 0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(26, 193, 92, 0.5);
}

.feature-icon {
    font-size: 40px;
    color: white;
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Download Section - LARGER STORE BADGES ===== */
.download {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 193, 92, 0.1), transparent 70%);
    border-radius: 50%;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-text {
    animation: fadeInUp 0.8s ease-out;
}

.download-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 700px;
}

/* MUCH LARGER STORE BADGES ON DESKTOP */
.store-badge {
    display: block;
    transition: var(--transition);
    width: 100%;
}

.store-badge img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
}

.store-badge:hover {
    transform: translateY(-10px) scale(1.08);
    filter: drop-shadow(0 15px 35px rgba(26, 193, 92, 0.6));
}

.store-badge:active {
    transform: translateY(-5px) scale(1.04);
}

.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.phones-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
}

.phone-device {
    position: absolute;
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 30px;
    padding: 7px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.phone-1 {
    top: 0;
    right: 0;
    z-index: 2;
    animation: floatPhone1 6s ease-in-out infinite;
}

.phone-2 {
    top: 50px;
    left: 0;
    z-index: 1;
    animation: floatPhone2 6s ease-in-out infinite 1s;
}

@keyframes floatPhone1 {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes floatPhone2 {
    0%, 100% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.phone-device:hover {
    transform: scale(1.05);
    z-index: 3;
}

.phone-device .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: var(--secondary-color);
    overflow: hidden;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(180, 185, 201, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-3px);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(180, 185, 201, 0.1);
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.made-with {
    font-size: 14px;
    color: var(--text-secondary);
}

.heart {
    color: #ff4757;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.2);
    }
    20%, 40% {
        transform: scale(1.1);
    }
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 30px rgba(26, 193, 92, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Larger logo on desktop */
    .app-logo-wrapper {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* MOBILE MENU - PROFESSIONAL DESIGN */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, rgba(26, 29, 46, 0.98) 0%, rgba(15, 17, 23, 0.98) 100%);
        backdrop-filter: blur(20px);
        padding: 25px 15px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        animation: slideInMenu 0.4s ease-out;
    }
    
    @keyframes slideInMenu {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    /* PROFESSIONAL MOBILE NAV LINK - WITH ICON AND GREEN LINE */
    .nav-link {
        padding: 16px 18px;
        border-radius: 10px;
        background: transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        border-bottom: 3px solid transparent;
    }

    .nav-link i {
        font-size: 18px;
        color: var(--primary-color);
        min-width: 24px;
    }

    .nav-link span {
        font-size: 15px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(26, 193, 92, 0.08);
        transform: translateX(-5px);
        border-bottom-color: var(--primary-color);
    }

    .nav-link.active span,
    .nav-link:hover span {
        font-weight: 800;
        font-size: 16px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    /* HERO SECTION - TEXT FIRST ON MOBILE */
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .hero-text {
        order: 1;
        position: relative;
        z-index: 2;
        background: rgba(15, 17, 23, 0.85);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .hero-image {
        order: 2;
        position: relative;
        z-index: 1;
    }
    
    .title-main {
        font-size: 42px;
    }
    
    .title-sub {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    /* KEEP BUTTONS SIDE BY SIDE ON MOBILE */
    .hero-buttons {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        flex: 1;
        min-width: 145px;
        justify-content: center;
        font-size: 13px;
        padding: 12px 16px;
    }

    .btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-stats {
        gap: 15px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 30px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* FIX PHONE MOCKUP AND GLOW ON MOBILE - MATCH DESKTOP EXACTLY */
    .phone-mockup {
        transform: scale(0.85) rotate(-8deg);
        position: relative;
    }

    .phone-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(26, 193, 92, 0.4), transparent 70%);
        z-index: 1;
        filter: blur(0);
        opacity: 1;
    }
    
    /* STORE BADGES ON MOBILE - SIDE BY SIDE WITH GOOD SIZE */
    .download-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .store-badge {
        width: 100%;
    }

    /* CENTER LOGO PERFECTLY ON MOBILE */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .image-container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .app-logo-wrapper {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .logo-icon {
        width: 55px;
        height: 55px;
    }
    
    .app-name {
        font-size: 20px;
    }
    
    .title-main {
        font-size: 32px;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    /* KEEP BUTTONS SIDE BY SIDE */
    .hero-buttons {
        display: flex;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .btn {
        flex: 1;
        min-width: 140px;
        padding: 11px 14px;
        font-size: 12px;
    }

    .btn svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .download-title {
        font-size: 32px;
    }
    
    /* STORE BADGES ON SMALL MOBILE - SIDE BY SIDE */
    .download-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .app-logo-wrapper {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 440px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 12px;
        line-height: 1.5;
    }

    /* KEEP BUTTONS SIDE BY SIDE */
    .hero-buttons {
        gap: 6px;
        flex-wrap: nowrap;
    }

    .btn {
        flex: 1;
        min-width: 135px;
        padding: 10px 12px;
        font-size: 11.5px;
    }

    .btn svg {
        width: 15px;
        height: 15px;
    }

    /* STORE BADGES - SIDE BY SIDE */
    .download-buttons {
        gap: 10px;
    }
}

@media (max-width: 390px) {
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-name {
        font-size: 18px;
    }
    
    .features-grid {
        gap: 10px;
    }
    
    .feature-card {
        padding: 18px 10px;
    }
    
    .hero-stats {
        gap: 8px;
    }
    
    .stat-item {
        padding: 0 5px;
    }

    /* KEEP BUTTONS SIDE BY SIDE */
    .hero-buttons {
        gap: 5px;
        flex-wrap: nowrap;
    }

    .btn {
        flex: 1;
        min-width: 130px;
        padding: 10px 10px;
        font-size: 11px;
    }

    .btn svg {
        width: 14px;
        height: 14px;
    }

    /* STORE BADGES - SIDE BY SIDE */
    .download-buttons {
        gap: 8px;
    }

    .app-logo-wrapper {
        width: 240px;
        height: 240px;
    }
}

/* Extra small screens */
@media (max-width: 370px) {
    .hero-buttons {
        gap: 5px;
    }

    .btn {
        flex: 1;
        min-width: 125px;
        padding: 9px 8px;
        font-size: 10.5px;
    }

    .btn svg {
        width: 13px;
        height: 13px;
    }

    /* STORE BADGES - SIDE BY SIDE */
    .download-buttons {
        gap: 8px;
    }
}

/* ===== Smooth Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===== Selection ===== */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: -100%;
    background: linear-gradient(135deg, #1AC15C 0%, #15A04D 100%);
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(26, 193, 92, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                visibility 0.4s ease;
    min-width: 300px;
    max-width: 400px;
}

.notification.show {
    right: 20px;
    opacity: 1;
    visibility: visible;
}

.notification.show {
    transform: translateX(0);
}

.notification-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.4;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: calc(100% - 20px);
    }
}

.developer {
    color: var(--primary-color);
}

/* Privacy */
.privacy-section {
    padding: 140px 0 80px;
    background: var(--dark-bg);
    min-height: 100vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.privacy-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-last-updated {
    display: inline-block;
    background: rgba(26, 193, 92, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 600;
}

.privacy-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.privacy-intro {
    background: rgba(26, 193, 92, 0.05);
    border-right: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.privacy-intro h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-intro h2 i {
    font-size: 28px;
}

.privacy-intro p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
}

.privacy-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(180, 185, 201, 0.1);
}

.privacy-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-item h3 i {
    color: var(--primary-color);
    font-size: 20px;
}

.privacy-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 15px;
}

.privacy-item ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-item ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-right: 25px;
    position: relative;
}

.privacy-item ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 16px;
}

.privacy-highlight {
    background: rgba(26, 193, 92, 0.08);
    border-right: 3px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.privacy-highlight p {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-box {
    background: var(--gradient-2);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.contact-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.contact-box a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 120px 0 60px;
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-subtitle {
        font-size: 16px;
    }

    .privacy-content {
        padding: 30px 25px;
    }

    .privacy-item h3 {
        font-size: 20px;
    }

    .privacy-intro h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 25px 20px;
    }

    .privacy-intro {
        padding: 20px;
    }
}