/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Brand Identity */
    --brand-green: #095028;
    --primary-green: #2E7D32;
    --primary-light-green: #4CAF50;
    --accent-green: #66BB6A;
    --soft-green: #A5D6A7;
    
    /* Soft White Background System */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --bg-card: #FFFFFF;
    --bg-section: #FDFDFD;
    
    /* Text Colors - All Black and Bold */
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #000000;
    --text-light: #000000;
    --text-green: #000000;
    
    /* Shadow Colors - Softer for white background */
    --shadow-light: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --shadow-heavy: rgba(0, 0, 0, 0.12);
    --shadow-green: rgba(46, 125, 50, 0.15);
    --shadow-brand-green: rgba(9, 80, 40, 0.2);
    
    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.12);
    --border-green: rgba(76, 175, 80, 0.3);
    
    /* Gradient Colors - Soft White Based */
    --gradient-white: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 50%, #F5F5F5 100%);
    --gradient-green: linear-gradient(45deg, var(--primary-green), var(--primary-light-green));
    --gradient-brand-green: linear-gradient(135deg, var(--brand-green) 0%, #0f6b2d 50%, #198639 100%);
    --gradient-soft: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #F1F3F4 100%);
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius System */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Z-index Scale */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1070;
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    background: var(--bg-primary);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Animation */
@keyframes gradientShift {
    0% { 
        background-position: 0% 50%; 
        filter: hue-rotate(0deg);
    }
    25% { 
        background-position: 50% 0%; 
        filter: hue-rotate(5deg);
    }
    50% { 
        background-position: 100% 50%; 
        filter: hue-rotate(10deg);
    }
    75% { 
        background-position: 50% 100%; 
        filter: hue-rotate(5deg);
    }
    100% { 
        background-position: 0% 50%; 
        filter: hue-rotate(0deg);
    }
}

/* Soft White Subtle Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.01) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, transparent 98%, rgba(0, 0, 0, 0.02) 100%),
        linear-gradient(180deg, transparent 98%, rgba(76, 175, 80, 0.01) 100%);
    background-size: 100px 100px, 150px 150px, 50px 50px, 75px 75px;
    animation: subtleMove 60s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(76, 175, 80, 0.015) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 75%, rgba(46, 125, 50, 0.01) 0%, transparent 50%);
    animation: subtlePulse 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes subtleMove {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% { 
        transform: translate(10px, 5px);
        opacity: 0.8;
    }
}

@keyframes subtlePulse {
    0%, 100% { 
        opacity: 0.3;
    }
    50% { 
        opacity: 0.1;
    }
}

/* Container System */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.container-sm {
    max-width: 768px;
}

.container-lg {
    max-width: 1440px;
}

/* Clean White Card System */
.clean-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: all 0.3s ease;
}

.clean-card:hover {
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--border-medium);
}

.elevated-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: 
        0 4px 12px var(--shadow-light),
        0 2px 4px var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.elevated-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 28px var(--shadow-medium),
        0 6px 12px var(--shadow-light);
}

/* Header Styles */
.header {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: var(--z-sticky);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.nav-container {
    text-align: center;
    position: relative;
}

/* Logo container with enhanced styling */
.logo {
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(76, 175, 80, 0.1);
}

/* Enhanced Logo with subtle effects */
.logo-img {
    height: 90px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    padding: 8px;
    box-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
}

.logo-img:hover {
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.1));
}

.tagline {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    font-weight: 700;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-green);
    border-radius: 2px;
}

/* MOTEELZ-Style Download Buttons */
.download-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
    direction: ltr;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 170px;
    height: 56px;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-align: left;
    direction: ltr;
    box-shadow: 0 4px 12px var(--shadow-brand-green);
    cursor: pointer;
}

.btn-download:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* Active link styles */
.btn-download[href]:not([href="#"]) {
    cursor: pointer;
}

.btn-download[href="#"] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent);
    transition: left 0.5s ease;
}

.btn-download:hover::before {
    left: 100%;
}

/* Green style matching site identity */
.btn-download.app-store {
    background: linear-gradient(135deg, #095028 0%, #0f6b2d 50%, #198639 100%);
    box-shadow: 0 4px 15px rgba(9, 80, 40, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-download.google-play {
    background: linear-gradient(135deg, #095028 0%, #0f6b2d 50%, #198639 100%);
    box-shadow: 0 4px 15px rgba(9, 80, 40, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-download:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(9, 80, 40, 0.45);
    background: linear-gradient(135deg, #0f6b2d 0%, #198639 50%, #22c55e 100%);
}

.btn-download:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
    background: var(--brand-green);
    box-shadow: 0 2px 8px rgba(9, 80, 40, 0.6);
}

.btn-download i {
    font-size: 24px;
    flex-shrink: 0;
    opacity: 0.95;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    text-align: left;
}

.btn-text .small {
    font-size: 10px;
    opacity: 0.85;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
    text-transform: none;
}

.btn-text .large {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.2px;
}

/* Specific adjustments for each store */
.btn-download.app-store .btn-text .small {
    font-size: 9px;
}

.btn-download.google-play .btn-text .small {
    font-size: 9px;
    font-weight: 700;
}

/* Alternative layout for Arabic text */
.download-buttons-ar {
    direction: rtl;
}

.download-buttons-ar .btn-download {
    direction: rtl;
    text-align: right;
}

.download-buttons-ar .btn-text {
    align-items: flex-end;
    text-align: right;
}

/* Hero Section */
.hero {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(76, 175, 80, 0.05) 0%, 
        transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20%;
    width: 60%;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
    opacity: 0.6;
}

.hero-description {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 700;
}

.btn-cta {
    background: var(--gradient-green);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--shadow-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Tajawal', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    justify-content: center;
    height: 48px;
}

.btn-cta span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.btn-cta i {
    font-size: 14px;
    opacity: 0.9;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px var(--shadow-green);
    background: linear-gradient(45deg, var(--primary-light-green), var(--accent-green));
}

.btn-cta:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(76, 175, 80, 0.1) 0%, 
        rgba(76, 175, 80, 0.05) 40%, 
        transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9), 
        rgba(240, 240, 240, 0.8));
    border-radius: var(--radius-2xl);
    padding: 12px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(46, 125, 50, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: screenGlow 4s ease-in-out infinite;
}

.phone-screen-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.phone-screen-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.phone-screen-subtitle {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes screenGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Features Section */
.features {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl));
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--shadow-light);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-secondary);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 32px var(--shadow-medium);
    border-color: var(--border-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 8px 20px var(--shadow-green);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-icon i {
    font-size: var(--font-size-2xl);
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    z-index: 10;
    position: relative;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.feature-card p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: var(--font-size-base);
    font-weight: 700;
}

/* Why Choose Section */
.why-choose {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.why-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--shadow-light);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 28px var(--shadow-medium);
    border-color: var(--border-green);
}

.why-item i {
    font-size: var(--font-size-4xl);
    color: var(--primary-light-green);
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

.why-item:hover i {
    transform: scale(1.1);
    color: var(--accent-green);
}

.why-item p {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.7;
    font-size: var(--font-size-lg);
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    position: relative;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl));
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 12px var(--shadow-light);
    position: relative;
    letter-spacing: -0.02em;
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: var(--radius-sm);
}

.cta-section p {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    text-align: center;
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link:hover {
    color: var(--primary-light-green);
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.copyright {
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: var(--space-2xl) 0;
        min-height: 60vh;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero {
        padding: var(--space-xl) 0;
        min-height: 50vh;
        gap: var(--space-xl);
    }
    
    .hero-description {
        font-size: var(--font-size-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .btn-download {
        width: 100%;
        max-width: 280px;
        min-width: 240px;
        justify-content: center;
        gap: 16px;
        padding: 14px 24px;
        height: 60px;
    }
    
    .btn-download i {
        font-size: 26px;
    }
    
    .btn-text .large {
        font-size: 16px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-card,
    .why-item {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.75rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .header {
        padding: var(--space-lg) 0;
    }
    
    .logo {
        padding: 2px;
    }
    
    .logo-img {
        height: 65px;
        padding: 4px;
    }
    
    .tagline {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-lg);
    }
    
    .hero {
        padding: var(--space-lg) 0;
        min-height: auto;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 14px;
        height: 44px;
    }
    
    .btn-cta span {
        font-size: 14px;
    }
    
    .btn-cta i {
        font-size: 13px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .feature-card,
    .why-item {
        padding: var(--space-md);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: var(--font-size-xl);
    }
    
    .download-buttons {
        gap: var(--space-sm);
    }
    
    .btn-download {
        padding: 12px 20px;
        min-width: 200px;
        max-width: 220px;
        height: 56px;
        gap: 12px;
    }
    
    .btn-download i {
        font-size: 22px;
    }
    
    .btn-text .small {
        font-size: 9px;
    }
    
    .btn-text .large {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .download-buttons {
        gap: var(--space-sm);
    }
    
    .btn-download {
        min-width: 140px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 13px;
        height: 40px;
    }
    
    .btn-cta span {
        font-size: 13px;
    }
    
    .btn-cta i {
        font-size: 12px;
    }
    
    .features-grid,
    .why-grid {
        gap: var(--space-md);
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}