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

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Custom Scrollbar Styles - Desktop Only */
@media (hover: hover) and (pointer: fine) {

    /* Webkit browsers (Chrome, Safari, Edge) */
    html::-webkit-scrollbar,
    body::-webkit-scrollbar,
    *::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track,
    *::-webkit-scrollbar-track {
        background: #0a0a0a;
        border-radius: 10px;
        margin: 4px 0;
    }

    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb,
    *::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #d946ef 0%, #ec4899 50%, #d946ef 100%);
        border-radius: 10px;
        border: 2px solid #0a0a0a;
        box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html::-webkit-scrollbar-thumb:hover,
    body::-webkit-scrollbar-thumb:hover,
    *::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #ec4899 0%, #d946ef 50%, #ec4899 100%);
        box-shadow: 0 0 15px rgba(217, 70, 239, 0.7), inset 0 0 8px rgba(255, 255, 255, 0.2);
        border-color: rgba(217, 70, 239, 0.3);
    }

    html::-webkit-scrollbar-thumb:active,
    body::-webkit-scrollbar-thumb:active,
    *::-webkit-scrollbar-thumb:active {
        background: linear-gradient(180deg, #c026d3 0%, #db2777 100%);
        box-shadow: 0 0 20px rgba(217, 70, 239, 0.9), inset 0 0 10px rgba(255, 255, 255, 0.25);
    }

    html::-webkit-scrollbar-corner,
    body::-webkit-scrollbar-corner,
    *::-webkit-scrollbar-corner {
        background: #0a0a0a;
    }

    /* Firefox Scrollbar */
    html {
        scrollbar-width: thin;
        scrollbar-color: #d946ef #0a0a0a;
    }

    body {
        scrollbar-width: thin;
        scrollbar-color: #d946ef #0a0a0a;
    }

}

:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --accent-color: #FF2D55;
    --text-primary: #1C1C1E;
    --text-secondary: #8E8E93;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F2F2F7;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;

    /* Transition timing */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.4s;
    --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-bounce: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Light Theme Variables */
body[data-theme="light"] {
    --bg-dark: #FFFFFF;
    --bg-darker: #F5F5F7;
    --text-light: #1C1C1E;
    --text-gray: #6E6E73;
    --border-color: rgba(0, 0, 0, 0.1);
    --card-bg: #FFFFFF;
    --nav-bg: rgba(255, 255, 255, 0.8);
}

html, body {
    height: 100%;
    margin: 0 !important;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

html {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    overflow-y: auto;
    /* Explicitly allow vertical scroll */
    width: 100%;
    position: relative;
    /* Optimize theme transitions to not block scrolling */
    will-change: background-color, color;
}

/* Modal open state - Better approach using class instead of inline styles */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Enhanced scrolling for desktop browsers */
@media (hover: hover) and (pointer: fine) {
    html {
        scrollbar-gutter: stable;
    }

    /* Simplified for better scrolling performance */
    .navbar {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
}

/* Screen Reader Only - Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reveal Animation Classes */
.reveal-element {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    /* transition removed to prevent scroll locking */
    /* Ensure touch events work properly on iOS */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Optimize rendering to prevent scroll blocking */
    will-change: background-color, box-shadow;
    contain: layout style;
}

.nav-container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform var(--transition-normal) ease;
    margin-left: 1rem;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-light {
    display: none;
}

body[data-theme="light"] .logo-dark {
    display: none;
}

body[data-theme="light"] .logo-light {
    display: block;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: all var(--transition-normal) ease;
    position: relative;
    /* Ensure clickable on iOS Safari */
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 122, 255, 0.2);
    touch-action: manipulation;
    /* Prevent text selection on double-tap */
    -webkit-user-select: none;
    user-select: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal) ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:focus-visible {
    outline: 2px solid rgba(0, 122, 255, 0.6);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal) ease;
    position: relative;
    margin-left: auto;
    margin-right: 2rem;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    background: rgba(0, 122, 255, 0.1);
    transform: scale(1.1);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    position: absolute;
    transition: all var(--transition-normal) ease;
}

/* Dark theme shows SUN icon (click to go to light) */
.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #FFFFFF;
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
    color: #1C1C1E;
}

body[data-theme="light"] .theme-toggle {
    border-color: rgba(0, 0, 0, 0.2);
}

body[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 122, 255, 0.1);
}

/* Light theme shows MOON icon (click to go to dark) */
body[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
    color: #FFFFFF;
}

body[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #1C1C1E;
}

.hero {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 150% 100% at center,
            transparent 0%,
            transparent 20%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0.2) 80%,
            rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 4rem 2rem;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease, gradientShift 8s ease-in-out infinite;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #43e97b, #38f9d7, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.85;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    margin-top: 4rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 1rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: linear-gradient(180deg, #FF00CC 0%, #9900FF 100%);
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Advanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.apps-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.apps-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 100%;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #007AFF, #00D4FF, #007AFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-header p {
    color: #999;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 3rem 0;
}

.carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    align-items: center;
    justify-content: flex-start;
}

.app-card {
    flex: 0 0 320px;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(0) scale(1);
    opacity: 0.85;
}

.app-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(217, 70, 239, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}





.app-card:hover {
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(217, 70, 239, 0.2);
    transform: translateY(-5px) scale(1.02);
}

.app-card:hover::after {
    opacity: 1;
}

.app-card.active {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(217, 70, 239, 0.6);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(217, 70, 239, 0.3);
}

.app-card.active::after {
    opacity: 0.8;
}

.app-card.active .app-name {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(217, 70, 239, 0.6);
}

.app-card.active .app-icon-img {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(217, 70, 239, 0.4);
}

.app-card:not(.active) {
    filter: brightness(0.7);
}

.app-icon-container {
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
}

.app-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.app-card.active .app-icon-img {
    transform: translateY(-2px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-icon-img:hover {
    transform: scale(1.08) rotate(2deg);
}

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

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

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.app-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: all 0.5s ease;
    letter-spacing: 0.5px;
    user-select: text;
    cursor: text;
}

.app-category {
    color: #d946ef;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.app-card.active .app-category {
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.app-description {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    user-select: text;
    cursor: text;
}

.app-card.active .app-description {
    color: #e8e8e8;
}

/* Text selection styling */
.app-card ::selection {
    background: rgba(217, 70, 239, 0.3);
    color: #ffffff;
}

.app-card ::-moz-selection {
    background: rgba(217, 70, 239, 0.3);
    color: #ffffff;
}

.app-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-card.active .stat-label {
    color: #c0c0c0;
}

.app-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.app-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.app-link:hover::before {
    width: 300px;
    height: 300px;
}

.app-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(88, 86, 214, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 0.7;
}

.carousel-btn:hover {
    background: rgba(217, 70, 239, 0.2);
    border-color: rgba(217, 70, 239, 0.5);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.carousel-btn.prev {
    left: -24px;
}

.carousel-btn.next {
    right: -24px;
}

.carousel-btn.prev:hover svg {
    transform: translateX(-2px);
}

.carousel-btn.next:hover svg {
    transform: translateX(2px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #d946ef, #ec4899);
    transition: width 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active::after {
    width: 100%;
    animation: slideProgress 4s linear;
}

@keyframes slideProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.about-section {
    padding: 5rem 0;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.feature {
    padding: 2rem;
    border-radius: var(--border-radius);
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
}

.support-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E5EA;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
    transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 122, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:active::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Styles for Featured and Upcoming Sections */
@media (max-width: 768px) {
    .featured-app-container {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .featured-app-card {
        flex: 1 1 100%;
        max-width: 500px;
        padding: 2rem;
    }

    .featured-icon-img {
        width: 100px;
        height: 100px;
    }

    .featured-app-name {
        font-size: 1.75rem;
    }

    .featured-app-description {
        font-size: 0.95rem;
    }

    .featured-app-stats {
        gap: 2rem;
    }

    .featured-app-link {
        width: 100%;
        text-align: center;
    }

    .upcoming-section {
        padding: 0 1rem;
        margin-top: 3rem;
    }

    .upcoming-title {
        font-size: 2rem;
        letter-spacing: 2px;
        padding: 0 0.5rem;
        word-break: keep-all;
        overflow-wrap: normal;
    }

    .upcoming-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .upcoming-cards-container {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 1.5rem;
    }

    .upcoming-card {
        padding: 1.5rem;
    }
}

/* Mobile Phones - Portrait */
@media (max-width: 480px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        min-height: 100vh;
        /* Fix iOS scroll issues */
        -webkit-overflow-scrolling: auto;
        position: relative;
    }

    /* Interactive elements should still prevent double-tap zoom */
    button,
    a:not([href^="#"]) {
        touch-action: manipulation;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .navbar {
        width: 100%;
        left: 0;
        right: 0;
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .logo-section {
        flex: 1;
        min-width: 0;
    }

    .logo {
        height: 40px;
        max-width: 100%;
        margin-left: 0;
    }

    .company-name {
        font-size: 0.9rem;
        display: none;
    }

    .nav-links {
        gap: 0.75rem;
        flex-shrink: 0;
        margin-right: 0;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem;
        white-space: nowrap;
    }

    .hero {
        min-height: 100vh;
        width: 100%;
        overflow: hidden;
        margin-top: 70px;
    }

    .hero-content {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        animation: fadeInUp 1s ease, gradientShift 6s ease-in-out infinite;
        filter: drop-shadow(0 0 15px rgba(103, 126, 234, 0.3));
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }

    .scroll-indicator {
        margin-top: 3rem;
    }

    .apps-showcase {
        overflow: hidden;
        width: 100%;
        padding: 3rem 0;
    }

    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .carousel-container {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }

    .carousel-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 0;
        /* Changed from touch to auto for better mobile compatibility */
        -webkit-overflow-scrolling: auto;
        scroll-snap-type: x mandatory;
    }

    .carousel {
        padding: 0 3.5rem;
        gap: 1rem;
        width: max-content;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        will-change: transform;
    }

    .app-card {
        flex: 0 0 280px;
        padding: 1.5rem;
        max-width: 280px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        opacity: 1;
        border: 2px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .app-card::after {
        display: none;
    }

    .app-icon-container {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .app-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .app-icon-img {
        width: 65px;
        height: 65px;
        border-radius: 16px;
    }

    .app-name {
        font-size: 1.15rem;
        text-align: center;
    }

    .app-category {
        text-align: center;
        font-size: 0.8rem;
    }

    .app-description {
        font-size: 0.9rem;
        line-height: 1.5;
        flex: 1;
        text-align: center;
    }

    .app-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .app-link {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        display: flex;
        opacity: 0.9;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-indicators {
        padding: 0 1rem;
        margin-top: 1rem;
    }

    .about-section,
    .support-section {
        padding: 3rem 1rem;
        width: 100%;
        overflow: hidden;
    }

    .about-container,
    .support-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .about-container h2,
    .support-container h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .about-text,
    .support-subtitle {
        font-size: 1rem;
        padding: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
        margin-top: 2rem;
    }

    .feature {
        padding: 1.5rem;
        text-align: center;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
        width: 100%;
        margin: 0;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        font-size: 16px;
        padding: 0.875rem;
        border-radius: 10px;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .contact-info {
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .footer {
        width: 100%;
        padding: 2rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* Mobile Phones - Landscape and Small Tablets */
@media (min-width: 481px) and (max-width: 768px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .navbar {
        padding: 0.875rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo {
        height: 50px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 80px;
    }

    .hero-title {
        font-size: 2.25rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        padding: 0 1rem;
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .carousel-container {
        padding: 0 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }

    .carousel-wrapper {
        overflow-x: auto;
        width: 100%;
        /* Changed from touch to auto for better mobile compatibility */
        -webkit-overflow-scrolling: auto;
        scroll-snap-type: x mandatory;
    }

    .carousel {
        padding: 0 2rem;
        gap: 1.25rem;
        width: max-content;
    }

    .app-card {
        flex: 0 0 320px;
        padding: 2rem;
        max-width: 320px;
        scroll-snap-align: center;
        min-height: 420px;
        border: 2px solid rgba(255, 255, 255, 0.05);
    }

    .app-icon-img {
        width: 70px;
        height: 70px;
    }

    .app-name {
        font-size: 1.25rem;
    }

    .app-description {
        font-size: 0.95rem;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }

    .carousel-btn.prev {
        left: 0.5rem;
    }

    .carousel-btn.next {
        right: 0.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .about-container,
    .support-container {
        padding: 0 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1.5rem;
    }

    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Tablets - Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container {
        padding: 0 2rem;
        max-width: 100%;
    }

    .carousel {
        padding: 0 3rem;
        gap: 1.5rem;
    }

    .app-card {
        flex: 0 0 320px;
        min-height: 450px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        transform: scale(0.9);
    }

    .app-card.active {
        transform: scale(1.05) translateY(-10px);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets - Landscape and Small Desktops */
@media (min-width: 1025px) and (max-width: 1366px) {
    .carousel-container {
        max-width: 1200px;
        padding: 0 3rem;
    }

    .carousel {
        padding: 0 4rem;
        gap: 2rem;
    }

    .app-card {
        flex: 0 0 340px;
        min-height: 460px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .app-card.active {
        transform: scale(1.08) translateY(-12px);
    }
}

/* Featured App Styles */
.featured-app-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1200px) {
    .featured-app-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .featured-app-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 1.5rem;
    }
}

.featured-app-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: 30px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow:
        0 30px 90px rgba(217, 70, 239, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
    height: 100%;
    min-height: 500px;
}

.featured-app-card:nth-child(1) {
    animation-delay: 0.1s;
}

.featured-app-card:nth-child(2) {
    animation-delay: 0.2s;
}

.featured-app-card:nth-child(3) {
    animation-delay: 0.3s;
}

.featured-app-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 40px 110px rgba(217, 70, 239, 0.4),
        0 25px 70px rgba(0, 0, 0, 0.5);
    border-color: rgba(217, 70, 239, 0.6);
}

.featured-app-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}


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

    to {
        transform: rotate(360deg);
    }
}

.featured-app-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.featured-app-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(0deg,
            rgba(217, 70, 239, 0.8) 0%,
            rgba(217, 70, 239, 0.8) 25%,
            transparent 25%,
            transparent 100%);
    border-radius: 35px;
    animation: borderRun 2s linear infinite;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
}

@keyframes borderRun {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.featured-icon-img {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    box-shadow:
        0 20px 60px rgba(217, 70, 239, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.featured-app-card:hover .featured-icon-img {
    transform: scale(1.05);
    box-shadow:
        0 25px 70px rgba(217, 70, 239, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.featured-app-info {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-app-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
}

.featured-app-category {
    color: #ec4899;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.featured-app-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 2rem;
    max-width: 400px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.featured-app-link {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, #d946ef, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
    position: relative;
    overflow: hidden;
}

.featured-app-link::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;
}

.featured-app-link:hover::before {
    left: 100%;
}

.featured-app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.5);
}

/* Upcoming Section Styles */
.upcoming-section {
    margin-top: 5rem;
    padding: 0 2rem;
}

.upcoming-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    animation: gradientShift 8s ease-in-out infinite;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #43e97b, #38f9d7, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 40px rgba(0, 0, 0, 0.3));
}

.upcoming-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.upcoming-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.upcoming-card {
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
}

.upcoming-card:nth-child(1) {
    animation-delay: 0.1s;
}

.upcoming-card:nth-child(2) {
    animation-delay: 0.2s;
}

.upcoming-card:nth-child(3) {
    animation-delay: 0.3s;
}

.upcoming-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(217, 70, 239, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.upcoming-card:hover {
    border-color: rgba(217, 70, 239, 0.3);
    transform: translateY(-10px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(217, 70, 239, 0.2);
}

.upcoming-card:hover::after {
    opacity: 1;
}

.upcoming-icon-container {
    margin-bottom: 1.5rem;
}

.upcoming-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.upcoming-card:hover .upcoming-icon-img {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(217, 70, 239, 0.4);
}

.upcoming-app-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.upcoming-app-category {
    color: #d946ef;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.upcoming-app-description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.upcoming-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 20px;
    color: #ec4899;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Styles */
.app-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.app-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: 30px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow:
        0 30px 90px rgba(217, 70, 239, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(217, 70, 239, 0.3);
    border-color: #d946ef;
    transform: scale(1.1) rotate(90deg);
}

.modal-body {
    padding: 1.5rem 1.75rem;
    text-align: center;
    flex: 1;
    overflow-y: auto;
}

.modal-icon-container {
    margin-bottom: 1rem;
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    box-shadow:
        0 20px 60px rgba(217, 70, 239, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    animation: bounce 0.5s ease 0.2s;
}

.modal-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

.modal-category {
    color: #ec4899;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
}

.modal-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.modal-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-stat-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-features {
    margin-bottom: 1.25rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.25rem;
    border-radius: 15px;
    border: 1px solid rgba(217, 70, 239, 0.2);
}

.modal-features h3 {
    color: #d946ef;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 700;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    color: #d0d0d0;
    padding: 0.35rem 0 0.35rem 1.75rem;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.4;
    display: block;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0.25rem;
    top: 0.35rem;
    color: #ec4899;
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.4;
    display: inline-block;
    width: 1.2rem;
    text-align: center;
}

.modal-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #d946ef, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
}

.modal-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 1rem;
    }

    .modal-body {
        padding: 1.25rem 1rem;
    }

    .modal-name {
        font-size: 1.5rem;
    }

    .modal-stats {
        gap: 1.5rem;
        padding: 0.6rem;
    }

    .modal-features {
        padding: 0.8rem;
    }

    .modal-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        padding-left: 2rem;
        min-height: 1.5rem;
        position: relative;
        display: block;
    }

    .modal-features li::before {
        position: absolute;
        left: 0.25rem;
        top: 0.4rem;
        font-size: 0.85rem;
        line-height: 1;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .upcoming-section {
        padding: 0 0.5rem;
        margin-top: 2.5rem;
    }

    .upcoming-title {
        font-size: 1.75rem;
        letter-spacing: 1.5px;
        padding: 0 0.25rem;
        margin-bottom: 0.75rem;
    }

    .upcoming-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .upcoming-cards-container {
        gap: 1.25rem;
    }

    .upcoming-card {
        padding: 1.25rem;
    }

    .upcoming-icon-img {
        width: 70px;
        height: 70px;
    }

    .upcoming-app-name {
        font-size: 1.35rem;
    }

    .upcoming-app-category {
        font-size: 0.85rem;
    }

    .upcoming-app-description {
        font-size: 0.9rem;
    }

    .featured-app-container {
        padding: 0 1rem;
        margin: 2rem auto;
        gap: 1.5rem;
    }

    .featured-app-card {
        padding: 2rem 1.5rem;
        min-height: 420px;
    }

    .featured-icon-img {
        width: 110px;
        height: 110px;
    }

    .featured-app-name {
        font-size: 1.65rem;
    }

    .featured-app-category {
        font-size: 0.875rem;
        letter-spacing: 1.5px;
    }

    .featured-app-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }

    .featured-app-link {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .modal-features li {
        font-size: 0.75rem;
        padding-left: 2.5rem;
        line-height: 1.5;
    }

    .modal-features li::before {
        left: 0.3rem;
        font-size: 0.8rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .app-card {
        -webkit-tap-highlight-color: transparent;
        transition: border 0.2s ease, box-shadow 0.2s ease;
    }

    .app-card:active {
        border-color: rgba(217, 70, 239, 0.5);
    }

    .carousel-btn {
        opacity: 1;
    }

    .nav-link::after {
        display: none;
    }

    .app-link {
        padding: 1rem 1.5rem;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .navbar {
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
    }
}

/* Safe Area Adjustments for Modern Phones */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .navbar {
        padding-top: env(safe-area-inset-top);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .carousel {
        transition: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #F2F2F7;
        --text-secondary: #A1A1A6;
        --bg-primary: #000000;
        --bg-secondary: #1C1C1E;
        --card-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
    }

    body {
        background: var(--bg-primary);
    }

    .app-card {
        background: var(--bg-secondary);
    }

    .feature {
        background: var(--bg-secondary);
    }

    .contact-form {
        background: var(--bg-secondary);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: var(--bg-primary);
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }

    .carousel-btn {
        background: var(--bg-secondary);
        color: var(--text-primary);
    }
}

/* Ultra-wide Screens */
@media (min-width: 1920px) {
    .carousel-container {
        max-width: 1600px;
        padding: 0 4rem;
    }

    .carousel {
        gap: 2.5rem;
    }

    .app-card {
        flex: 0 0 380px;
        min-height: 480px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .app-card.active {
        transform: scale(1.1) translateY(-15px);
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

/* Loading States & Skeleton Screens */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 12px;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(217, 70, 239, 0.1);
    border-top-color: #d946ef;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Lazy Load Images */
img {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img.loaded {
    opacity: 1;
}

/* Performance Optimizations - Simplified */
@media (hover: hover) and (pointer: fine) {

    .featured-app-card,
    .upcoming-card,
    .app-card {
        contain: layout style;
    }
}

/* Scroll padding for navigation */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-padding: 100px 0 0 0;
    }

    /* Snap scroll for sections on desktop */
    @media (hover: hover) and (pointer: fine) {

        .hero,
        .apps-showcase,
        .about-section,
        .support-section {
            scroll-margin-top: 80px;
        }
    }
}

/* 3D Card Tilt Effect - Disabled for performance */

/* Enhanced Focus States for Accessibility */
.nav-link:focus,
.submit-btn:focus,
.featured-app-link:focus {
    outline: 3px solid rgba(0, 122, 255, 0.5);
    outline-offset: 4px;
}

/* Ripple Effect Container */
.ripple-container {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: ripple 0.6s ease-out;
}

/* Enhanced Parallax Sections - Disabled for performance */

/* Mobile Touch Feedback */
@media (hover: none) and (pointer: coarse) {

    .featured-app-card:active,
    .upcoming-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .submit-btn:active {
        transform: scale(0.95);
    }

    .nav-link:active {
        opacity: 0.7;
    }
}

/* macOS Specific Optimizations removed to prevent scroll interference */

/* iOS Specific Optimizations removed to prevent scroll interference */

/* Windows Specific Optimizations */
@media (hover: hover) and (pointer: fine) {
    @supports not (-webkit-backdrop-filter: blur(10px)) {
        /* Native scrolling for better performance */
    }
}

/* Android Specific Optimizations removed to prevent scroll interference */

/* Smooth Momentum Scrolling for iOS - Changed to auto to prevent scroll locking */
.modal-content {
    -webkit-overflow-scrolling: auto;
}

/* Better Button Press States */
.featured-app-link,
.submit-btn,
.upcoming-status {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

/* Improved Transition Performance - Minimal transforms */
.featured-app-card,
.upcoming-card,
.app-card {
    will-change: auto;
}

/* Gradient Text Animation Enhancement */
.hero-title,
.upcoming-title {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Entrance Animations */
.feature {
    animation: fadeInUp 0.6s ease both;
}

.feature:nth-child(1) {
    animation-delay: 0.1s;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.3s;
}

/* ========================================
   NEW SECTIONS STYLES
   ======================================== */

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

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

/* Theme-aware loading logo */
.loading-logo-light {
    display: none;
}

body[data-theme="light"] .loading-logo-dark {
    display: none;
}

body[data-theme="light"] .loading-logo-light {
    display: block;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d946ef, #ec4899);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* App Store Badge Styling */
.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #d946ef, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
    position: relative;
    overflow: hidden;
}

.apple-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.app-store-badge::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;
}

.app-store-badge:hover::before {
    left: 100%;
}

.app-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.5);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(100, 116, 139, 0.3);
    cursor: default;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-app {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1C1C1E;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 122, 255, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: white;
    color: #764ba2;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Enhanced Footer */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-img {
    width: 80px;
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: linear-gradient(135deg, #d946ef, #ec4899);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 70, 239, 0.4);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Enhanced Focus States */
.nav-link:focus-visible,
.submit-btn:focus-visible,
.featured-app-link:focus-visible,
.app-store-badge:focus-visible,
.back-to-top:focus-visible,
.newsletter-btn:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid rgba(0, 122, 255, 0.6);
    outline-offset: 4px;
    border-radius: 8px;
}

/* Success Message Animation */
.success-message {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
    font-weight: 600;
    animation: slideInRight 0.4s ease, slideOutRight 0.4s ease 2.6s;
    z-index: 1001;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .app-store-badge {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

    .apple-icon {
        width: 18px;
        height: 18px;
    }

    .testimonials-container h2,
    .faq-container h2,
    .newsletter-container h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.8rem;
        /* Increase touch target size for better mobile usability */
        padding: 0.5rem;
        min-height: 44px;
        /* iOS recommended minimum touch target */
        display: flex;
        align-items: center;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .hero,
    .carousel-btn,
    .scroll-indicator {
        display: none;
    }

    .app-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   LIGHT THEME STYLES
   ============================================ */

body[data-theme="light"] {
    background: #FFFFFF;
    color: #1C1C1E;
}

/* Navigation Bar - Light Theme */
body[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .nav-link {
    color: #1C1C1E;
}

body[data-theme="light"] .company-name {
    color: #1C1C1E;
}

/* Hero Section - Light Theme */
body[data-theme="light"] .hero {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EDF4 100%);
}

body[data-theme="light"] .hero::before {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body[data-theme="light"] .hero::after {
    background: none;
}

body[data-theme="light"] .hero-content {
    color: #1C1C1E;
}

body[data-theme="light"] .hero-title {
    filter: none;
}

body[data-theme="light"] .hero-subtitle {
    color: #6E6E73;
    opacity: 1;
}

body[data-theme="light"] .mouse {
    border-color: #1C1C1E;
}

body[data-theme="light"] .mouse::before {
    background: linear-gradient(180deg, #FF00CC 0%, #9900FF 100%);
}

body[data-theme="light"] .scroll-indicator p {
    color: #1C1C1E;
}

/* Apps Showcase - Light Theme */
body[data-theme="light"] .apps-showcase {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 50%, #FFFFFF 100%);
}

body[data-theme="light"] .apps-showcase::before {
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.05) 0%, transparent 50%);
}

body[data-theme="light"] .section-header h2 {
    background: linear-gradient(135deg, #007AFF, #00D4FF, #007AFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="light"] .section-header p {
    color: #6E6E73;
}

/* Featured App Cards - Light Theme */
body[data-theme="light"] .featured-app-card {
    background: #FFFFFF;
    border: 2px solid rgba(0, 122, 255, 0.3);
    box-shadow:
        0 30px 90px rgba(0, 122, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .featured-app-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 40px 110px rgba(0, 122, 255, 0.25),
        0 25px 70px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 122, 255, 0.6);
}

body[data-theme="light"] .featured-app-card::before {
    background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
}

body[data-theme="light"] .featured-app-icon::after {
    background: linear-gradient(0deg,
            rgba(0, 122, 255, 0.8) 0%,
            rgba(0, 122, 255, 0.8) 25%,
            transparent 25%,
            transparent 100%);
}

body[data-theme="light"] .featured-icon-img {
    box-shadow:
        0 20px 60px rgba(0, 122, 255, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .featured-app-card:hover .featured-icon-img {
    transform: scale(1.05);
    box-shadow:
        0 25px 70px rgba(0, 122, 255, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.15);
}

body[data-theme="light"] .featured-app-name {
    color: #1C1C1E;
    text-shadow: 0 0 30px rgba(0, 122, 255, 0.4);
}

body[data-theme="light"] .featured-app-category {
    color: #6E6E73;
}

body[data-theme="light"] .featured-app-description {
    color: #1C1C1E;
}

/* Testimonials Section - Light Theme */
body[data-theme="light"] .testimonials-section {
    background: #F5F7FA;
}

body[data-theme="light"] .testimonials-section h2 {
    color: #1C1C1E;
}

body[data-theme="light"] .testimonials-subtitle {
    color: #6E6E73;
}

body[data-theme="light"] .testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .testimonial-text {
    color: #1C1C1E;
}

body[data-theme="light"] .author-name {
    color: #1C1C1E;
}

body[data-theme="light"] .author-app {
    color: #6E6E73;
}

body[data-theme="light"] .stars {
    color: #FFD700;
}

/* FAQ Section - Light Theme */
body[data-theme="light"] .faq-section {
    background: #FFFFFF;
}

body[data-theme="light"] .faq-section h2 {
    color: #1C1C1E;
}

body[data-theme="light"] .faq-subtitle {
    color: #6E6E73;
}

body[data-theme="light"] .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .faq-question {
    background: transparent;
    color: #1C1C1E;
}

body[data-theme="light"] .faq-question:hover {
    background: rgba(0, 122, 255, 0.05);
}

body[data-theme="light"] .faq-icon {
    color: #007AFF;
}

body[data-theme="light"] .faq-answer {
    color: #1C1C1E;
}

body[data-theme="light"] .faq-answer p {
    color: #1C1C1E;
}

/* About Section - Light Theme */
body[data-theme="light"] .about-section {
    background: #F5F7FA;
}

body[data-theme="light"] .about-section h2 {
    color: #1C1C1E;
}

body[data-theme="light"] .about-text {
    color: #1C1C1E;
}

body[data-theme="light"] .feature h3 {
    color: #1C1C1E;
}

body[data-theme="light"] .feature p {
    color: #6E6E73;
}

/* Support Section - Light Theme */
body[data-theme="light"] .support-section {
    background: #FFFFFF;
}

body[data-theme="light"] .support-section h2 {
    color: #1C1C1E;
}

body[data-theme="light"] .support-subtitle {
    color: #6E6E73;
}

body[data-theme="light"] .contact-form input,
body[data-theme="light"] .contact-form select,
body[data-theme="light"] .contact-form textarea {
    background: #F5F7FA;
    color: #1C1C1E;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .contact-form input::placeholder,
body[data-theme="light"] .contact-form textarea::placeholder {
    color: #6E6E73;
}

body[data-theme="light"] .contact-form input:focus,
body[data-theme="light"] .contact-form select:focus,
body[data-theme="light"] .contact-form textarea:focus {
    border-color: #007AFF;
    background: #FFFFFF;
}

body[data-theme="light"] .contact-info p {
    color: #1C1C1E;
}

body[data-theme="light"] .contact-info a {
    color: #007AFF;
}

/* Footer - Light Theme */
body[data-theme="light"] .footer {
    background: #1C1C1E;
    color: #FFFFFF;
}

body[data-theme="light"] .footer-tagline {
    color: rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .footer-column h4 {
    color: #FFFFFF;
}

body[data-theme="light"] .footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

body[data-theme="light"] .footer-column a:hover {
    color: #FFFFFF;
}

body[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="light"] .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

body[data-theme="light"] .social-link {
    color: rgba(255, 255, 255, 0.7);
}

body[data-theme="light"] .social-link:hover {
    color: #007AFF;
}

/* Modal - Light Theme */
body[data-theme="light"] .modal-content {
    background: #FFFFFF;
    color: #1C1C1E;
    border: 2px solid rgba(0, 122, 255, 0.3);
    box-shadow:
        0 30px 90px rgba(0, 122, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .modal-icon {
    box-shadow:
        0 20px 60px rgba(0, 122, 255, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .modal-name {
    color: #1C1C1E;
    text-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
}

body[data-theme="light"] .modal-category {
    color: #007AFF;
}

body[data-theme="light"] .modal-description {
    color: #1C1C1E;
}

body[data-theme="light"] .modal-features {
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

body[data-theme="light"] .modal-features h3 {
    color: #007AFF;
}

body[data-theme="light"] .modal-features li {
    color: #1C1C1E;
}

body[data-theme="light"] .modal-features li::before {
    color: #007AFF;
}

body[data-theme="light"] .modal-close {
    color: #1C1C1E;
}

body[data-theme="light"] .modal-close:hover {
    background: rgba(0, 122, 255, 0.2);
    border-color: #007AFF;
}

body[data-theme="light"] .modal-cta {
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

body[data-theme="light"] .modal-cta:hover {
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.4);
}

/* Back to Top Button - Light Theme */
body[data-theme="light"] .back-to-top {
    background: #FFFFFF;
    color: #1C1C1E;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body[data-theme="light"] .back-to-top:hover {
    background: #007AFF;
    color: #FFFFFF;
}

/* Loading Screen - Light Theme */
body[data-theme="light"] .loading-screen {
    background: #FFFFFF;
}

/* Smooth transition for theme changes */
body {
    /* transition removed to prevent scroll locking */
}

.navbar,
.hero,
.apps-showcase,
.testimonials-section,
.faq-section,
.about-section,
.support-section,
.footer,
.featured-app-card,
.testimonial-card,
.modal-content,
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}