/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 196, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFC400 0%, #FFD700 100%);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFC400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo .logo-link:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 196, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #FFC400;
    background: rgba(255, 196, 0, 0.1);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-btn {
    background: linear-gradient(135deg, #FFC400 0%, #FFD700 100%);
    color: #1a2332;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 196, 0, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #FFC400 100%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 196, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 196, 0, 0.05) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 196, 0, 0.1);
    border: 1px solid rgba(255, 196, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: #FFC400;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #FFC400;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-points {
    margin: 2rem 0;
    text-align: right;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-point {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 196, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-point:hover {
    transform: translateX(-10px);
    background: rgba(255, 196, 0, 0.1);
    border-color: rgba(255, 196, 0, 0.4);
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 196, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 196, 0, 0.1);
    border-color: rgba(255, 196, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 196, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #FFC400 0%, #FFD700 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    text-align: right;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #FFC400;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e0;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FFC400 0%, #FFD700 100%);
    color: #1a2332;
    box-shadow: 0 8px 25px rgba(255, 196, 0, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 196, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #FFC400;
}

.btn-secondary:hover {
    background: #FFC400;
    color: #1a2332;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 196, 0, 0.3);
}

/* Sections */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFC400, #FFD700);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #1a2332;
    margin-top: 8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 196, 0, 0.3);
}

/* Color variations for cards */
.feature-card.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-card.purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(126, 34, 206, 0.1) 100%);
    border-color: rgba(147, 51, 234, 0.3);
}

.feature-card.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-color: rgba(249, 115, 22, 0.3);
}

.feature-card.yellow {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.15) 0%, rgba(255, 208, 0, 0.1) 100%);
    border-color: rgba(255, 196, 0, 0.3);
}

.feature-card.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.1) 100%);
    border-color: rgba(236, 72, 153, 0.3);
}

.feature-card.purple-light {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-card.yellow-light {
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.15) 0%, rgba(255, 196, 0, 0.1) 100%);
    border-color: rgba(255, 217, 0, 0.3);
}

.feature-card.pink-light {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-color: rgba(244, 114, 182, 0.3);
}

.feature-card.purple-dark {
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.15) 0%, rgba(107, 33, 168, 0.1) 100%);
    border-color: rgba(126, 34, 206, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #FFC400;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-card p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Cliq Section */
.why-cliq {
    padding: 5rem 0;
    background: #2d3748;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 196, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 196, 0, 0.1);
    border-color: rgba(255, 196, 0, 0.4);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.benefit-item p {
    color: #cbd5e0;
    line-height: 1.5;
}

/* Image Section */
.cliq-image-section {
    margin-top: 4rem;
    text-align: center;
}

.cliq-image-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 196, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cliq-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cliq-image:hover {
    transform: scale(1.02);
}

.image-caption {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFC400;
    font-style: italic;
}

/* Target Audience Section */
.target-audience {
    padding: 5rem 0;
    background: #1a2332;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.target-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 196, 0, 0.2);
    transition: all 0.3s ease;
    color: #ffffff;
}

.target-item:hover {
    background: rgba(255, 196, 0, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 196, 0, 0.4);
}

.target-description {
    text-align: center;
    margin-top: 3rem;
}

.target-description p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFC400;
    background: rgba(255, 196, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 196, 0, 0.3);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #2d3748;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 196, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(255, 196, 0, 0.1);
    border-color: rgba(255, 196, 0, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC400 0%, #FFD700 100%);
    color: #1a2332;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 196, 0, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFC400 0%, #FFD700 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.3rem;
    color: #1a2332;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #1a2332;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.3);
}

.cta-section .btn-primary:hover {
    background: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 35, 50, 0.4);
}

.cta-section .btn-secondary {
    background: transparent;
    color: #1a2332;
    border: 2px solid #1a2332;
}

.cta-section .btn-secondary:hover {
    background: #1a2332;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #1a2332;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 196, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFC400;
    text-decoration: none;
}

.footer-text p {
    color: #cbd5e0;
    font-size: 0.9rem;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-points {
        margin: 2rem 0;
    }
    
    .hero-point {
        font-size: 1rem;
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .hero-decoration .decoration-circle {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .features {
        padding: 3rem 0;
        background: #1a2332;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .why-cliq {
        padding: 3rem 0;
        background: #2d3748;
    }
    
    .target-audience {
        padding: 3rem 0;
        background: #1a2332;
    }
    
    .how-it-works {
        padding: 3rem 0;
        background: #2d3748;
    }
    
    .benefits-grid,
    .target-grid,
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item,
    .target-item,
    .step {
        padding: 1.5rem;
    }
    
    .cliq-image-container {
        padding: 1.5rem;
    }
    
    .cliq-image {
        height: 250px;
    }
    
    .image-caption {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .target-description p {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem;
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .feature-card,
    .step,
    .benefit-item,
    .target-item {
        padding: 1.2rem;
    }
    
    .feature-card h3,
    .step h3,
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p,
    .step p,
    .benefit-item p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        max-width: 250px;
    }
    

    
    .cliq-image {
        height: 200px;
    }
    
    .image-caption {
        font-size: 0.9rem;
    }
    
    .target-description p {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .footer-text p {
        font-size: 0.8rem;
    }
    
    .nav-logo .logo-link {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.2rem;
        padding: 0.4rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .feature-card,
    .step,
    .benefit-item,
    .target-item {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-content {
        padding: 5rem 1.5rem 2rem;
    }
    
    .mobile-hero-title {
        font-size: 1.4rem;
    }
    
    .cta-content h2 {
        font-size: 1.2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}