/* Mobile Development Page Styles */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f1419 0%, #1e3a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.mobile-loader {
    margin: 0 auto 2rem;
}

.phone-outline {
    width: 60px;
    height: 100px;
    border: 3px solid var(--accent-blue);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.phone-outline::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.screen {
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-bars {
    display: flex;
    gap: 4px;
}

.bar {
    width: 3px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 2px;
    animation: barPulse 1.5s infinite ease-in-out;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }
.bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes barPulse {
    0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.loading-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: pulse 1.5s infinite;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1419 0%, #1e3a3a 50%, #2c4a4a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Mobile Particles */
.mobile-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.mobile-particles::before,
.mobile-particles::after {
    content: '📱';
    position: absolute;
    font-size: 20px;
    animation: floatMobile 12s infinite ease-in-out;
}

.mobile-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mobile-particles::after {
    top: 70%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes floatMobile {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.3; }
}

/* App Icons Flow */
.app-icons-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.app-icons-flow::before {
    content: '🎨 🚀 🔒 ⚡ 📊 🌟';
    position: absolute;
    top: 30%;
    left: -100%;
    white-space: nowrap;
    font-size: 24px;
    animation: iconsFlow 20s linear infinite;
}

@keyframes iconsFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Network Grid */
.network-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--accent-blue) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--accent-blue) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: networkPulse 8s infinite ease-in-out;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.08; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    padding-top: 6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    animation: badgeGlow 3s infinite ease-in-out;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
}

.hero-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    color: var(--text-white);
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateX(50px);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px rgba(0, 212, 255, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: phoneFloat 6s infinite ease-in-out;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f1419, #1e3a3a);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.indicators {
    display: flex;
    gap: 4px;
}

.signal, .wifi, .battery {
    width: 16px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.app-content {
    padding: 20px;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.app-header h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.app-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: cardSlideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(20px);
}

.feature-card:nth-child(1) { animation-delay: 1.5s; }
.feature-card:nth-child(2) { animation-delay: 1.7s; }
.feature-card:nth-child(3) { animation-delay: 1.9s; }

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card.active {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.card-icon {
    font-size: 24px;
}

.card-content h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 12px;
}

.app-footer {
    margin-top: auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), #00ff88);
    border-radius: 2px;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 70%; }
}

.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

/* What We Offer Section */
.offerings-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, #ffffff 0%, #a0d4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-16);
}

.offering-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a5a 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.card-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-features li {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--space-2);
    color: var(--color-primary);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .offering-card {
        padding: var(--space-6);
    }
}

/* Why Choose Our Mobile App Development Section */
.why-choose-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-16);
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: var(--space-8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-primary);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.card-icon.speed {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.card-icon.security {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.card-icon.scalability {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-icon.experience {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-icon.expertise {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
}

.card-icon.industry {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding: var(--space-1) 0;
    position: relative;
    padding-left: var(--space-5);
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: var(--space-1);
    color: var(--color-primary);
    font-weight: 600;
}

.expertise-highlight {
    margin-top: var(--space-16);
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius-xl);
    padding: var(--space-10);
    text-align: center;
}

.expertise-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Styles for Why Choose Section */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .expertise-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .expertise-highlight {
        padding: var(--space-6);
    }
}

/* How We Work With You Section */
.engagement-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.model-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: var(--space-8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.model-card.featured {
    border-color: var(--color-primary);
    background: rgba(0, 212, 255, 0.05);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a5a 100%);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.model-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.model-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a5a 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.model-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.model-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.model-features li {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
}

.model-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--space-2);
    color: var(--color-primary);
    font-weight: 600;
}

.model-ideal {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding: var(--space-4);
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border-left: 3px solid var(--color-primary);
}

/* Responsive Styles for Engagement Section */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .model-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .model-card {
        padding: var(--space-6);
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.faq-question {
    padding: var(--space-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a5a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.cta-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 180px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #1e3a3a;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: #f0f9ff;
    color: #1e3a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #1e3a3a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles for CTA Section */
@media (max-width: 768px) {
    .cta-title {
        font-size: var(--text-2xl);
    }
    
    .cta-description {
        font-size: var(--text-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Floating Platforms */
.floating-platforms {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.platform-icon {
    position: absolute;
    font-size: 3rem;
    animation: floatPlatform 8s infinite ease-in-out;
    opacity: 0.6;
}

.platform-icon.ios { 
    top: 15%; 
    left: -15%; 
    animation-delay: 0s; 
}

.platform-icon.android { 
    bottom: 25%; 
    right: -20%; 
    animation-delay: 2s; 
}

.platform-icon.react { 
    top: 60%; 
    left: -10%; 
    animation-delay: 4s; 
}

@keyframes floatPlatform {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(15px) rotate(-3deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .floating-platforms {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .app-content {
        padding: 16px;
    }
}
