/* Global Styles */
:root {
    /* Color Palette */
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000000; /* Black */
    --accent-color: #FFD700; /* Gold */
    --text-color: #2D2D2D; /* Dark Gray */
    --light-text: #666666; /* Medium Gray */
    --lighter-text: #888888; /* Light Gray */
    --bg-light: #FAFAFA; /* Off-White */
    --white: #FFFFFF; /* Pure White */
    --black: #000000; /* Pure Black */
    --dark-bg: #0A0A0A; /* Dark Background */
    
    /* Effects */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
    
    /* Typography */
    --font-main: 'Tajawal', sans-serif;
    --font-heading: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pulse 2s infinite;
    min-width: 180px;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #ffea00);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    font-size: 1.1rem;
}

.cta-button.primary {
    background: #000000;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    background: #FFD700;
    color: #000000;
    box-shadow: 0 7px 20px rgba(255, 215, 0, 0.3);
}

.cta-button.ios-button {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.ios-button:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #000000;
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.3);
}

.cta-button i {
    margin-left: 8px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Header */
/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #000000;
    position: relative;
    display: inline-block;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFD700;
}

.logo span {
    font-size: 0.9rem;
    color: var(--lighter-text);
    font-weight: 500;
}

/* Hero Section */
/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    perspective: 1000px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero h1 span {
    display: inline-block;
    animation: bounce 2s infinite;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.label {
    font-size: 1rem;
    color: var(--light-text);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 30% 60%, rgba(255, 215, 0, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 70% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 30%);
    z-index: 0;
    animation: backgroundPulse 20s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.7;
        transform: scale(1.01) rotate(0.5deg);
    }
    66% {
        opacity: 0.8;
        transform: scale(0.99) rotate(-0.5deg);
    }
}

.hero-image img.hero-phone {
    max-width: 300px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    will-change: transform;
}

.floating-money {
    position: absolute;
    color: rgba(255, 215, 0, 0.6);
    font-size: 1.2rem;
    animation: floatMoney 20s linear infinite;
    opacity: 0;
    z-index: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    will-change: transform, opacity;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floating-money::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    animation: sparkle 1.5s infinite;
    animation-delay: 0.5s;
}

.floating-money:hover {
    transform: scale(1.5) rotate(15deg) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    z-index: 10;
}

/* Money Rain */
.money-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.money-rain i {
    position: absolute;
    color: rgba(255, 215, 0, 0.3);
    font-size: 1rem;
    animation: moneyRain 10s linear infinite;
    opacity: 0;
    animation-delay: calc(var(--delay) * 1s);
    left: calc(var(--x) * 1%);
}

/* Sparkle Effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: sparkle 1s ease-out forwards;
}

@keyframes sparkle {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes moneyRain {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-50px) rotate(360deg) scale(1);
        opacity: 0;
    }
}

/* Staggered animations for a more natural flow */
.floating-money:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 18s; }
.floating-money:nth-child(2) { left: 15%; animation-delay: 2s; animation-duration: 20s; font-size: 1.5rem; }
.floating-money:nth-child(3) { left: 25%; animation-delay: 4s; animation-duration: 22s; }
.floating-money:nth-child(4) { left: 35%; animation-delay: 1s; animation-duration: 19s; font-size: 1.7rem; }
.floating-money:nth-child(5) { left: 45%; animation-delay: 3s; animation-duration: 21s; }
.floating-money:nth-child(6) { left: 55%; animation-delay: 5s; animation-duration: 23s; font-size: 1.3rem; }
.floating-money:nth-child(7) { left: 65%; animation-delay: 2.5s; animation-duration: 20s; }
.floating-money:nth-child(8) { left: 75%; animation-delay: 4.5s; animation-duration: 24s; font-size: 1.6rem; }
.floating-money:nth-child(9) { left: 85%; animation-delay: 1.5s; animation-duration: 19s; }
.floating-money:nth-child(10) { left: 95%; animation-delay: 3.5s; animation-duration: 22s; font-size: 1.4rem; }

/* Floating Money Background Elements */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image .floating-money {
    position: absolute;
    color: rgba(255, 215, 0, 0.4);
    font-size: 1.5rem;
    animation: floatMoney 15s linear infinite;
    opacity: 0;
    z-index: 0;
}

.hero-image .floating-money:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 15s; }
.hero-image .floating-money:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.hero-image .floating-money:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 20s; }
.hero-image .floating-money:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.hero-image .floating-money:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 22s; }
.hero-image .floating-money:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 19s; }
.hero-image .floating-money:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 17s; }
.hero-image .floating-money:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 21s; }

/* Features Section */
/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: #FFD700;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.feature-card p {
    color: var(--light-text);
    font-size: 1rem;
}


/* Video Tutorial Section */
.video-tutorial {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.video-tutorial .section-title {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.video-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-cta {
    text-align: center;
    margin-top: 2rem;
}

.video-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.video-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary-color), #ffea00);
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.video-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

.testimonial-card .user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000, #333333);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta .cta-buttons {
    justify-content: center;
    margin-bottom: 2rem;
}

.offer {
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    background-color: #000000;
    color: #fff;
    padding: 2rem 0;
    border-top: 2px solid #FFD700;
    min-height: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.legal-links {
    margin-top: 1rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* New Sparkle Animation */
@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(180deg);
        opacity: 0;
    }
}

/* Money Rain Effect */
@keyframes moneyRain {
    0% {
        transform: translateY(-10%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .app-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 7rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .app-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-links ul li a:hover {
        transform: none;
    }
    
    .social-links {
        justify-content: center;
    }
}
