/* Mobile App Development Page Styles */

/* Page-level mobileapp styles */
.mobileapp-page {
    background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 50%, #e9d5ff 100%);
    font-family: 'JetBrains Mono', monospace;
    padding-top: 0; /* Reset any padding that might interfere with header */
}

/* Ensure body doesn't overlap with fixed header */
body.mobileapp-page,
body:has(.mobileapp-page) {
    margin-top: 0;
    padding-top: 0;
}

/* No header overrides needed - the main issue was the .comparison-row.header conflict */

.mobileapp-page h1, .mobileapp-page h2, .mobileapp-page h3, .mobileapp-page h4, .mobileapp-page h5, .mobileapp-page h6 {
    font-family: 'Orbitron', monospace;
}

/* Enhanced gradient effects for mobileapp theme */
.mobileapp-gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile-themed animations */
@keyframes mobileappPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.mobileapp-icon {
    animation: mobileappPulse 2s ease-in-out infinite;
}

/* Mobile device background effect */
.mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 24%, rgba(139, 92, 246, 0.05) 25%, rgba(139, 92, 246, 0.05) 26%, transparent 27%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* ===== HERO SECTION ===== */
.mobileapp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
    padding-top: 120px;
    padding-bottom: 6rem;
}

.mobileapp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mobileapp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobileapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b46c1;
    width: fit-content;
}

.badge-icon {
    font-size: 1rem;
}

.mobileapp-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1e293b;
    margin: 0;
}

.mobileapp-hero-title .greeting-text-bold {
    display: block;
    font-weight: 700;
    color: #1e293b;
}

.mobileapp-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1e293b;
    margin: 0;
}

.mobileapp-hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobileapp-hero-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #334155;
}

.mobileapp-hero-benefits .benefit-icon {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.mobileapp-hero-benefits .benefit-text {
    font-weight: 500;
    color: #334155;
}

.feature-icon {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
}

.mobileapp-hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.mobileapp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.mobileapp-cta-button.primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.mobileapp-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.mobileapp-cta-button.secondary {
    color: #6b46c1;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.mobileapp-cta-button.secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.mobileapp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobileapp-showcase-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.app-showcase {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc);
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.showcase-icon {
    font-size: 1.5rem;
}

.showcase-title {
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.showcase-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.status-dot.active {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.device-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.device-preview {
    position: relative;
    transition: transform 0.3s ease;
}

.device-preview:hover {
    transform: translateY(-5px) rotate(1deg);
}

.device-preview.ios {
    transform: rotate(-2deg);
}

.device-preview.android {
    transform: rotate(2deg);
}

.device-preview:hover.ios {
    transform: translateY(-5px) rotate(-1deg);
}

.device-preview:hover.android {
    transform: translateY(-5px) rotate(1deg);
}

.device-frame {
    width: 140px;
    height: 280px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 1.5rem;
    padding: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.device-preview.ios .device-frame {
    background: linear-gradient(135deg, #1f2937, #374151);
}

.device-preview.android .device-frame {
    background: linear-gradient(135deg, #065f46, #047857);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.screen-header {
    background: #1e293b;
    color: white;
    padding: 0.5rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.indicators {
    display: flex;
    gap: 0.25rem;
    font-size: 0.6rem;
}

.app-header {
    text-align: center;
}

.app-header h3 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.screen-content {
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.screen-content .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 0.5rem;
    font-size: 0.7rem;
    color: #4c1d95;
}

.screen-content .feature-icon {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.device-label {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #8b5cf6;
    font-family: 'Orbitron', monospace;
}

.device-showcase {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.device-preview {
    position: relative;
    border-radius: 2rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.device-preview:hover {
    transform: translateY(-10px) rotate(2deg);
}

.device-preview.ios {
    background: linear-gradient(135deg, #1f2937, #374151);
}

.device-preview.android {
    background: linear-gradient(135deg, #065f46, #047857);
}

.device-frame {
    width: 200px;
    height: 400px;
    border-radius: 1.5rem;
    background: #000;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.device-screen {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #1e293b;
    color: white;
    font-size: 0.75rem;
}

.app-interface {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: calc(100% - 2rem);
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.interface-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content-block {
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 0.5rem;
    opacity: 0.8;
}

.content-block:nth-child(2) { opacity: 0.6; }
.content-block:nth-child(3) { opacity: 0.4; }

/* ===== OVERVIEW SECTION ===== */
.mobileapp-overview {
    padding: 5rem 0;
    background: #ffffff;
}

.mobileapp-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b46c1;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.mobileapp-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Platform Comparison */
.mobileapp-comparison-demo {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.demo-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.comparison-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.platform-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.platform-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-label {
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.section-label.mobile-web {
    background: #fee2e2;
    color: #dc2626;
}

.section-label.native-app {
    background: #dcfce7;
    color: #16a34a;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-group {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.25rem;
}

.stat-number.negative {
    color: #dc2626;
}

.stat-number.positive {
    color: #16a34a;
}

.stat-description {
    font-size: 0.75rem;
    color: #64748b;
}

.limitation-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.limitation-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.limitation-item.negative {
    color: #dc2626;
}

.limitation-item.positive {
    color: #16a34a;
}

.vs-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

/* App Categories */
.app-categories {
    margin: 4rem 0;
}

.categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.category-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.category-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.category-content p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Statistics */
.mobile-statistics {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
}

.statistics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.statistics-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.statistic-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content {
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Development Approach */
.development-approach {
    margin: 4rem 0;
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.principle-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.principle-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.principle-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== TECHNOLOGIES SECTION ===== */
.mobileapp-technologies {
    padding: 5rem 0;
    background: #f8fafc;
}

.mobileapp-technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tech-category {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.category-description {
    color: #64748b;
    font-size: 1.125rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.tech-item:hover {
    background: white;
    border-color: #8b5cf6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
}

.tech-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.tech-description {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tech-usage {
    font-size: 0.75rem;
    color: #8b5cf6;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
}

/* AI Enhancement Section */
.development-approach {
    background: linear-gradient(135deg, #1e293b, #475569);
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
    color: white;
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.approach-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.approach-subtitle {
    opacity: 0.9;
    font-size: 1.125rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.approach-feature {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.approach-benefit {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.4;
}


/* Technology Benefits */
.technology-benefits {
    margin: 4rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.benefit-description {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== PROCESS SECTION ===== */
.mobileapp-process {
    padding: 5rem 0;
    background: white;
}

.mobileapp-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #8b5cf6, transparent);
    z-index: 1;
}

.timeline-marker {
    position: relative;
    z-index: 2;
}

.marker-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.marker-icon {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: white;
    border-radius: 50%;
    padding: 0.25rem;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-content {
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}


.timeline-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-deliverables {
    margin-bottom: 1.5rem;
}

.timeline-deliverables h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
}

.timeline-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-deliverables li {
    color: #64748b;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 600;
}

.ai-note-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Process Advantages */
.process-advantages {
    margin: 4rem 0;
}

.advantages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.advantage-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Development Comparison Cards */
.development-comparison {
    margin: 4rem 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.comparison-card.traditional {
    border-left: 4px solid #dc2626;
}

.comparison-card.ai-enhanced {
    border-left: 4px solid #8b5cf6;
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.card-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-phase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border-left: 3px solid #e2e8f0;
}

.comparison-card.traditional .timeline-phase {
    border-left-color: #dc2626;
}

.comparison-card.ai-enhanced .timeline-phase {
    border-left-color: #8b5cf6;
}

.phase-name {
    font-weight: 500;
    color: #1e293b;
}

.phase-duration {
    font-size: 0.875rem;
    color: #64748b;
    font-family: 'Orbitron', monospace;
}

.card-total {
    text-align: center;
    font-size: 1.125rem;
    font-family: 'Orbitron', monospace;
    color: #1e293b;
}

.card-savings {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.savings-badge {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Quality Assurance */
.quality-assurance {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
}

.qa-header {
    text-align: center;
    margin-bottom: 3rem;
}

.qa-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.qa-subtitle {
    color: #64748b;
    font-size: 1.125rem;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.qa-item {
    text-align: center;
    background: white;
    border-radius: 1rem;
    padding: 2rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.qa-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.qa-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.qa-metric {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    display: block;
}

.qa-label {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.examples-grid .example-card {
    padding: 2rem;
}

.example-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
}

.highlight-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.example-outcome {
    color: #8b5cf6;
    font-size: 0.875rem;
    font-weight: 600;
}

/* App Statistics */
.app-statistics {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.statistics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.statistics-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.statistics-subtitle {
    color: #64748b;
    font-size: 1.125rem;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.statistic-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.statistic-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-metric {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* App Development Comparison */
[name="app-development-comparison"] {
    margin: 4rem 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.comparison-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 2rem 0;
    text-align: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.comparison-items.traditional .comparison-item {
    background: #fef2f2;
}

.comparison-items.devstack .comparison-item {
    background: #f0fdf4;
}

.item-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.item-text {
    color: #374151;
}

/* Client Testimonial */
.client-testimonial {
    background: linear-gradient(135deg, #1e293b, #475569);
    color: white;
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-quote {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #8b5cf6;
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
}

.quote-text {
    font-size: 1.125rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.author-title {
    font-size: 0.875rem;
    opacity: 0.8;
}

.author-company {
    font-size: 0.875rem;
    color: #8b5cf6;
    font-weight: 600;
}

.testimonial-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: #8b5cf6;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.mobileapp-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mobileapp-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cta-header {
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #c084fc;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prop-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.prop-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.prop-description {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-process-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-header {
    text-align: center;
    margin-bottom: 2rem;
}

.process-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin: 0 auto 1rem auto;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.4;
}


.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: #8b5cf6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.4;
}

.cta-actions {
    text-align: center;
}

.primary-action {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.cta-button.primary-large {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-button.primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.secondary-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
}








.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: #8b5cf6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Utility Classes */
.highlight {
    color: #f59e0b;
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .mobileapp-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .device-showcase {
        justify-content: center;
    }
    
    .platform-comparison {
        grid-template-columns: 1fr;
    }
    
    .vs-section {
        order: -1;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .client-testimonial {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-results {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .device-showcase {
        flex-direction: column;
        gap: 1rem;
    }
    
    .device-preview {
        transform: scale(0.8);
    }
    
    .mobileapp-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-row {
        grid-template-columns: 120px 1fr 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .example-results {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    
    .secondary-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .device-preview {
        transform: scale(0.7);
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        justify-content: center;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .timeline-marker {
        margin-bottom: 1rem;
        text-align: center;
    }
    
}