/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --accent-color: #14b8a6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 20px;
    --container-max-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip to Content Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Button Color Variants */
.btn-apps {
    border-color: #6366f1;
    color: #6366f1;
}

.btn-apps:hover {
    background: #6366f1;
    border-color: #6366f1;
}

.btn-games {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.btn-games:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.btn-tools {
    border-color: #14b8a6;
    color: #14b8a6;
}

.btn-tools:hover {
    background: #14b8a6;
    border-color: #14b8a6;
}

.btn-learn {
    border-color: #f97316;
    color: #f97316;
}

.btn-learn:hover {
    background: #f97316;
    border-color: #f97316;
}

.btn span {
    margin-right: 8px;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Phone Mockup */
.phone-mockup {
    perspective: 1000px;
    animation: phoneTilt 8s ease-in-out infinite;
}

@keyframes phoneTilt {
    0%, 100% {
        transform: rotateY(-5deg) rotateX(5deg);
    }
    50% {
        transform: rotateY(5deg) rotateX(-5deg);
    }
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 3px solid #374151;
    transform-style: preserve-3d;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #111827;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.phone-button {
    position: absolute;
    right: -3px;
    top: 150px;
    width: 3px;
    height: 60px;
    background: #4b5563;
    border-radius: 0 2px 2px 0;
}

/* Launch Animation */
.launch-animation {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.launch-animation:hover {
    transform: scale(1.02);
}

.launch-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.rocket-container {
    position: relative;
    animation: rocketLaunch 5s ease-in-out infinite;
    z-index: 5;
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(280px) scale(0.7) rotate(-5deg);
        opacity: 0;
    }
    5% {
        transform: translateY(260px) scale(0.75) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(50px) scale(0.95) rotate(2deg);
        opacity: 1;
    }
    45% {
        transform: translateY(-80px) scale(0.85) rotate(-1deg);
        opacity: 1;
    }
    60% {
        transform: translateY(-200px) scale(0.6) rotate(0deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-320px) scale(0.4) rotate(1deg);
        opacity: 0.3;
    }
    85% {
        transform: translateY(-400px) scale(0.2) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: translateY(280px) scale(0.7) rotate(-5deg);
        opacity: 0;
    }
}

.rocket {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    transition: filter 0.3s ease;
    animation: rocketGlow 2s ease-in-out infinite;
}

@keyframes rocketGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    }
}

.rocket-container:hover .rocket {
    filter: drop-shadow(0 15px 35px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 30px rgba(255, 165, 0, 0.8));
}

.rocket-fire {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    background: linear-gradient(to top, 
        rgba(255, 165, 0, 0) 0%,
        rgba(255, 140, 0, 0.7) 30%,
        rgba(255, 69, 0, 0.9) 60%,
        rgba(255, 215, 0, 1) 100%
    );
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(5px);
    animation: fire 0.3s ease-in-out infinite alternate, fireFade 6s ease-in-out infinite;
}

@keyframes fire {
    0% {
        transform: translateX(-50%) scaleY(1) scaleX(1);
    }
    50% {
        transform: translateX(-50%) scaleY(1.4) scaleX(0.85);
    }
    100% {
        transform: translateX(-50%) scaleY(1) scaleX(1.15);
    }
}

@keyframes fireFade {
    0%, 3% {
        opacity: 0;
    }
    5%, 70% {
        opacity: 1;
    }
    80%, 100% {
        opacity: 0;
    }
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-top: 30px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.3);
    animation: brandFadeIn 5s ease-in-out infinite;
    letter-spacing: 1px;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: underlineExpand 5s ease-in-out infinite;
}

@keyframes underlineExpand {
    0%, 25% {
        width: 0%;
        opacity: 0;
    }
    35% {
        width: 80%;
        opacity: 1;
    }
    65% {
        width: 80%;
        opacity: 1;
    }
    75%, 100% {
        width: 0%;
        opacity: 0;
    }
}

@keyframes brandFadeIn {
    0%, 20% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    30% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    70% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    85% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
}

.launch-clouds {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    animation: cloudFloat 8s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.cloud::before {
    width: 35px;
    height: 35px;
    top: -15px;
    left: 10px;
}

.cloud::after {
    width: 45px;
    height: 45px;
    top: -20px;
    right: 10px;
}

.cloud:nth-child(1) {
    bottom: 100px;
    left: -100px;
    animation: cloudFloat1 6s ease-in-out infinite;
}

.cloud:nth-child(2) {
    bottom: 200px;
    left: -150px;
    animation: cloudFloat2 7s ease-in-out infinite;
    transform: scale(0.8);
}

.cloud:nth-child(3) {
    bottom: 150px;
    left: -120px;
    animation: cloudFloat3 8s ease-in-out infinite;
    transform: scale(0.6);
}

@keyframes cloudFloat1 {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(400px) translateY(-30px);
        opacity: 0;
    }
}

@keyframes cloudFloat2 {
    0% {
        transform: translateX(0) translateY(0) scale(0.8);
        opacity: 0;
    }
    12% {
        opacity: 0.6;
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(420px) translateY(-40px) scale(0.8);
        opacity: 0;
    }
}

@keyframes cloudFloat3 {
    0% {
        transform: translateX(0) translateY(0) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
    }
    85% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(450px) translateY(-50px) scale(0.6);
        opacity: 0;
    }
}

/* Stats Section */
.stats {
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Products Section */
.products {
    padding: var(--section-padding);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.category-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.category-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.category-card > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.products-list {
    margin-top: 30px;
}

.product-placeholder {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.product-placeholder p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product-placeholder span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Featured Section */
.featured-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.featured-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.featured-card.app-featured:hover {
    border-color: #6366f1;
}

.featured-card.game-featured:hover {
    border-color: #8b5cf6;
}

.featured-card.tool-featured:hover {
    border-color: #14b8a6;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.featured-badge svg {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    stroke: none;
}

.featured-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.featured-card:hover .featured-icon {
    transform: scale(1.1) rotate(5deg);
}

.featured-icon .icon-placeholder {
    font-size: 40px;
    line-height: 1;
}

.featured-icon .icon-placeholder img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

.featured-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.featured-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.featured-stats {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.featured-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.featured-btn:hover::before {
    left: 0;
}

.featured-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
}

.featured-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.featured-btn:hover svg {
    transform: translateX(3px);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-btn {
    margin-top: 20px;
    display: inline-flex;
    gap: 10px;
}

.about-btn svg {
    width: 20px;
    height: 20px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-feature-card {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about-feature-card:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, #ffffff 0%, rgba(99, 102, 241, 0.08) 100%);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.about-feature-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-feature-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.about-india-card {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.15) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.95) 80%, rgba(19, 136, 8, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 153, 51, 0.3), rgba(255, 255, 255, 0.2), rgba(19, 136, 8, 0.3)) 1;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.about-india-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 33%, #FFFFFF 66%, #138808 100%);
    border-radius: 16px 16px 0 0;
}

.about-india-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 20px 30px rgba(0, 0, 0, 0.12);
    border-image: linear-gradient(90deg, rgba(255, 153, 51, 0.5), rgba(255, 255, 255, 0.3), rgba(19, 136, 8, 0.5)) 1;
}

.india-flag {
    font-size: 40px;
    margin-bottom: 12px;
}

.about-india-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.about-india-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f97316 100%);
    z-index: 0;
}

.cta-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.03) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.03) 75%, 
        transparent 100%);
    background-size: 200% 200%;
    animation: shimmer 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.float-icon {
    position: absolute;
    font-size: 48px;
    opacity: 0.15;
    animation: floatUpDown 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.float-icon:nth-child(1) { animation-delay: 0s; animation-duration: 7s; }
.float-icon:nth-child(2) { animation-delay: 0.5s; animation-duration: 6s; }
.float-icon:nth-child(3) { animation-delay: 1s; animation-duration: 8s; }
.float-icon:nth-child(4) { animation-delay: 1.5s; animation-duration: 7.5s; }
.float-icon:nth-child(5) { animation-delay: 2s; animation-duration: 6.5s; }
.float-icon:nth-child(6) { animation-delay: 2.5s; animation-duration: 7s; }
.float-icon:nth-child(7) { animation-delay: 3s; animation-duration: 6.8s; }
.float-icon:nth-child(8) { animation-delay: 3.5s; animation-duration: 7.2s; }

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-25px) rotate(-5deg);
    }
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 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='1'%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");
    animation: patternMove 20s linear infinite;
    z-index: 2;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.cta-container {
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

.cta-btn-primary {
    background: white;
    color: #667eea;
}

.cta-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    background: #f97316;
    color: white;
}

.cta-btn-secondary:hover {
    background: #ea580c;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.cta-feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Play Store Banner */
.playstore-banner-wrapper {
    margin-top: 50px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.playstore-banner-link {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.playstore-banner {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playstore-banner-link:hover .playstore-banner {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.playstore-banner-link:active .playstore-banner {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    color: white;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-image {
        order: -1; /* Phone appears first on mobile */
    }
    
    .hero-content {
        order: 1; /* Content appears second on mobile */
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
    
    .rocket {
        width: 100px;
        height: 100px;
    }
    
    .brand-name {
        font-size: 26px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-card {
        padding: 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-badge {
        display: block;
        text-align: center;
    }
    
    .about-btn {
        display: flex;
        justify-content: center;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        padding: 18px 20px;
        border-radius: 12px;
        background: var(--bg-secondary);
        margin-bottom: 12px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .nav-links a:hover {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        transform: translateX(8px);
        border-color: var(--primary-light);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        padding: 8px;
        border-radius: 8px;
        background: var(--bg-secondary);
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        background: var(--bg-secondary);
    }
    
    .hamburger span {
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--primary-color);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: var(--primary-color);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .playstore-banner-wrapper {
        margin-top: 35px;
        padding: 0 20px;
    }
    
    .playstore-banner {
        max-width: 320px;
        border-radius: 8px;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        width: 100%;
    }
    
    .footer-links a {
        flex: 0 0 calc(50% - 6px);
        padding: 14px 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        text-align: center;
        backdrop-filter: blur(10px);
    }
    
    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        color: white;
        transform: translateY(-2px);
    }
    
    .footer-legal {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
    
    .footer-legal a {
        /* Keep original simple style */
        padding: 0;
        background: none;
        border: none;
    }
    
    .footer-legal a:hover {
        background: none;
        color: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 20px 50px;
    }
    
    .hero .container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
        border-radius: 35px;
        padding: 10px;
    }
    
    .phone-screen {
        border-radius: 28px;
    }
    
    .rocket {
        width: 80px;
        height: 80px;
    }
    
    .brand-name {
        font-size: 22px;
        margin-top: 20px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        margin-bottom: 40px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-feature {
        font-size: 14px;
    }
    
    .playstore-banner-wrapper {
        margin-top: 30px;
    }
    
    .playstore-banner {
        max-width: 280px;
        border-radius: 6px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
}

