/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* CSS Variables for Theme */
:root {
    /* Dark Theme (Default) */
    --bg-primary: #1c1917;
    --bg-secondary: #292524;
    --text-primary: #fef3c7;
    --text-secondary: #fed7aa;
    --hero-title: #fef3c7;
    --hero-paragraph: #fed7aa;
    --body-text: #fed7aa;
    --cta-button-bg: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    --cta-button-text: white;
    --secondary-button-bg: rgba(249, 115, 22, 0.1);
    --secondary-button-text: #f97316;
    --secondary-button-border: rgba(249, 115, 22, 0.2);
    --secondary-button-hover: rgba(249, 115, 22, 0.2);
    --accent-color: #f97316;
    --accent-color-secondary: #f59e0b;
    --accent-hover: #fb923c;
    --section-bg: #1c1917;
    --border-color: rgba(249, 115, 22, 0.1);
    --gradient-text: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    --app-icon-bg: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    --app-icon-color: white;
}

[data-theme="light"] {
    /* Light Theme */
    --bg-primary: #fafcf3;
    --bg-secondary: #f3f4f0;
    --text-primary: #0e0f0b;
    --text-secondary: #363a2c;
    --hero-title: #0e0f0b;
    --hero-paragraph: #363a2c;
    --body-text: #363a2c;
    --cta-button-bg: #0e0f0b;
    --cta-button-text: #fafcf3;
    --secondary-button-bg: #f3f4f0;
    --secondary-button-text: #0e0f0b;
    --secondary-button-border: #363a2c;
    --secondary-button-hover: #e8e9e5;
    --accent-color: #0e0f0b;
    --accent-color-secondary: #363a2c;
    --accent-hover: #363a2c;
    --section-bg: #fafcf3;
    --border-color: rgba(54, 58, 44, 0.2);
    --gradient-text: linear-gradient(135deg, #0e0f0b 0%, #363a2c 100%);
    --app-icon-bg: white;
    --app-icon-color: #f97316;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--body-text);
    font-size: 1.1rem;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-primary {
    background: var(--cta-button-bg);
    color: var(--cta-button-text);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

[data-theme="light"] .btn-primary {
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: var(--secondary-button-bg);
    color: var(--secondary-button-text);
    border: 2px solid var(--secondary-button-border);
}

.btn-secondary:hover {
    background: var(--secondary-button-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--cta-button-text);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--bg-secondary);
    opacity: 0.95;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.8rem;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation Actions (Cart + Theme Toggle) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 1.2rem;
    border-radius: 50%;
}

.theme-toggle:hover {
    background: var(--secondary-button-bg);
    border-radius: 50%;
    transform: rotate(20deg);
}

.theme-icon {
    display: none;
}

.theme-icon.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 6rem 0 3rem;
    background: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: backgroundFlow 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(249, 115, 22, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: gridMove 30s linear infinite;
    z-index: 0;
}

/* Open Source Logos Background */
.hero-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.hero-logos::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 150px;
    background:
        /* Row 1 - 10 dots (right-aligned) */
        radial-gradient(circle 3px at 30px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 70px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 110px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 150px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 190px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 230px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 270px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 310px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 350px 20px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 390px 20px, #f97316 50%, transparent 50%),
        /* Row 2 - 8 dots (right-aligned) */
        radial-gradient(circle 3px at 110px 60px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 150px 60px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 190px 60px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 230px 60px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 270px 60px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 310px 60px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 350px 60px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 390px 60px, #f97316 50%, transparent 50%),
        /* Row 3 - 6 dots (right-aligned) */
        radial-gradient(circle 3px at 190px 100px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 230px 100px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 270px 100px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 310px 100px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 350px 100px, #f97316 50%, transparent 50%),
        radial-gradient(circle 3px at 390px 100px, #f97316 50%, transparent 50%);
    z-index: 100;
    pointer-events: none;
}

.hero-logos::after {
    display: none;
}

.os-logo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(249, 115, 22, 0.6);
    transition: all 0.3s ease;
    z-index: 2;
}

.os-logo img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    opacity: 0.6;
    filter: brightness(0) saturate(100%) invert(59%) sepia(83%) saturate(2763%) hue-rotate(354deg) brightness(102%) contrast(96%);
}

.os-logo.wordpress {
    bottom: 5%;
    left: 5%;
}

.os-logo.ghost {
    bottom: 5%;
    left: 22%;
}

.os-logo.discourse {
    bottom: 5%;
    left: 39%;
}

.os-logo.magento {
    bottom: 5%;
    left: 56%;
}

.os-logo.nextcloud {
    bottom: 5%;
    left: 73%;
}

.os-logo.akaunting {
    bottom: 5%;
    left: 90%;
}

.os-logo.git {
    display: none;
}

.os-logo.linux {
    display: none;
}

.os-logo.nginx {
    display: none;
}

.os-logo.mysql {
    display: none;
}

.os-logo.mongodb {
    display: none;
}

.os-logo.python {
    display: none;
}

.os-logo.javascript {
    display: none;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
        opacity: 0.8;
    }
}

@keyframes backgroundFlow {
    0%, 100% {
        background: 
            radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 75% 25%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 25% 75%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-item i {
    color: #fb923c;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero-actions .btn {
    position: relative;
    overflow: hidden;
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.hero-actions .btn:hover::before {
    left: 100%;
}

.hero-actions .btn-primary {
    animation: buttonGlow 3s ease-in-out infinite;
}

[data-theme="light"] .hero-actions .btn-primary {
    animation: buttonGlowLight 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
    }
}

@keyframes buttonGlowLight {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
    }
    50% {
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 2rem 0;
}

/* Hero Logos Text */
.hero-logos-text {
    position: absolute;
    bottom: -0.2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: 100%;
}

.hero-logos-text p {
    font-size: 1rem;
    color: rgb(131 73 33 / 80%);
    font-weight: 500;
    margin: 0;
}

/* Hero Logos Container */
.hero-logos-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-logos-more {
    position: absolute;
    bottom: 1%;
    left: calc(47.5% + 40px);
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    font-size: 0.9rem;
    color: rgb(131 73 33 / 90%);
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    pointer-events: auto;
    background: rgba(249, 115, 22, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

.hero-logos-more::before,
.hero-logos-more::after {
    content: '●';
    color: rgba(249, 115, 22, 0.4);
    font-size: 0.5rem;
    vertical-align: middle;
    margin: 0 0.5rem;
}

.device-showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: visible;
    margin: 0 auto;
    background: transparent;
}

.device-showcase:hover .product-image {
    transform: scale(1.05);
}



.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) drop-shadow(0 8px 20px rgba(249, 115, 22, 0.1));
    animation: productBreathe 4s ease-in-out infinite;
}

@keyframes productBreathe {
    0%, 100% {
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) drop-shadow(0 8px 20px rgba(249, 115, 22, 0.1));
    }
    50% {
        filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.18)) drop-shadow(0 10px 25px rgba(249, 115, 22, 0.15));
    }
}

/* Image loading states are now handled natively by the browser */
.product-image {
    /* Browser handles loading state natively with loading="eager" attribute */
}



.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(249, 115, 22, 0.5), 
        rgba(245, 158, 11, 0.4), 
        transparent
    );
    opacity: 0.4;
    animation: dataFlow 4s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
    will-change: transform, opacity;
}

.line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    background: #f97316;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: dataPoint 4s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.8);
    opacity: 0.9;
}

.line-1 {
    width: 90px;
    height: 3px;
    top: 28%;
    left: 8%;
    transform: rotate(35deg);
    animation-delay: 0s;
}

.line-1::before {
    animation-delay: 0s;
}

.line-2 {
    width: 75px;
    height: 3px;
    top: 65%;
    right: 12%;
    transform: rotate(-25deg);
    animation-delay: 1s;
}

.line-2::before {
    animation-delay: 1s;
}

.line-3 {
    width: 85px;
    height: 3px;
    bottom: 22%;
    left: 15%;
    transform: rotate(20deg);
    animation-delay: 2s;
}

.line-3::before {
    animation-delay: 2s;
}

.floating-apps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.floating-apps .app-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.18),
        0 6px 15px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(249, 115, 22, 0.3);
    animation: appFloat 5s ease-in-out infinite;
    backdrop-filter: blur(12px);
    border: none;
    transition: all 0.3s ease;
    will-change: transform;
    opacity: 0.95;
    z-index: 20;
    pointer-events: auto;
}

.floating-apps .app-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 1.2rem;
    opacity: 0;
    animation: appGlow 5s ease-in-out infinite;
    z-index: -1;
}

.floating-apps .app-icon:hover {
    transform: var(--base-transform) translateY(-5px) scale(1.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(249, 115, 22, 0.4);
}

.floating-apps .app-1 {
    top: -12%;
    left: 50%;
    animation-delay: -0.5s;
    --base-transform: translateX(-50%);
    transform: var(--base-transform);
}

.floating-apps .app-1::before {
    animation-delay: -0.5s;
}

.floating-apps .app-2 {
    top: -2%;
    right: -6%;
    animation-delay: -1s;
    --base-transform: translate(0, 0);
    transform: var(--base-transform);
}

.floating-apps .app-2::before {
    animation-delay: -1.8s;
}

.floating-apps .app-3 {
    top: 50%;
    right: -12%;
    animation-delay: -1.5s;
    --base-transform: translateY(-50%);
    transform: var(--base-transform);
}

.floating-apps .app-3::before {
    animation-delay: -3.2s;
}

.floating-apps .app-4 {
    bottom: -2%;
    right: -6%;
    animation-delay: -2s;
    --base-transform: translate(0, 0);
    transform: var(--base-transform);
}

.floating-apps .app-4::before {
    animation-delay: -4.5s;
}

.floating-apps .app-5 {
    bottom: -12%;
    left: 50%;
    animation-delay: -2.5s;
    --base-transform: translateX(-50%);
    transform: var(--base-transform);
}

.floating-apps .app-5::before {
    animation-delay: -2.5s;
}

.floating-apps .app-6 {
    bottom: -2%;
    left: -6%;
    animation-delay: -3s;
    --base-transform: translate(0, 0);
    transform: var(--base-transform);
}

.floating-apps .app-6::before {
    animation-delay: -3s;
}

.floating-apps .app-7 {
    top: 50%;
    left: -12%;
    animation-delay: -3.5s;
    --base-transform: translateY(-50%);
    transform: var(--base-transform);
}

.floating-apps .app-7::before {
    animation-delay: -3.5s;
}

.floating-apps .app-8 {
    top: -2%;
    left: -6%;
    animation-delay: -4s;
    --base-transform: translate(0, 0);
    transform: var(--base-transform);
}

.floating-apps .app-8::before {
    animation-delay: -4s;
}

.floating-apps .app-icon i {
    font-size: 1.7rem;
    color: white;
    animation: iconBounce 4s ease-in-out infinite;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Animations */
@keyframes productFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes appFloat {
    0%, 100% {
        transform: var(--base-transform) translateY(0px) rotate(0deg);
    }
    25% {
        transform: var(--base-transform) translateY(-10px) rotate(2deg);
    }
    50% {
        transform: var(--base-transform) translateY(-20px) rotate(0deg);
    }
    75% {
        transform: var(--base-transform) translateY(-10px) rotate(-2deg);
    }
}

@keyframes appGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(5deg);
    }
    50% {
        transform: scale(1.05) rotate(0deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0.2;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
    100% {
        opacity: 0.2;
        transform: scaleX(0.8);
    }
}

@keyframes dataPoint {
    0% {
        left: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.problem-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.problem-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.problem-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.feature-highlight {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Apps Section */
.apps-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.app-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.app-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.app-card .app-icon {
    width: 60px;
    height: 60px;
    background: var(--app-icon-bg);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.app-card .app-icon i {
    font-size: 1.5rem;
    color: var(--app-icon-color);
}

.app-card .app-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.app-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    line-height: 1.2;
    z-index: 2;
    position: relative;
}

.app-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.app-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.app-features .feature {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

[data-theme="light"] .app-features .feature {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

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

.app-pricing .project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.app-pricing .project-link:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

.app-pricing .project-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.app-pricing .project-link:hover i {
    transform: translateX(3px);
}

.app-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(249, 115, 22, 0.2);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag.free {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.apps-cta {
    text-align: center;
}

.apps-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-visual {
    background: rgba(249, 115, 22, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
}

.step-visual i {
    font-size: 3rem;
    color: var(--accent-color);
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.demo-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.demo-content p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.video-placeholder {
    background: var(--bg-primary);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.video-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .video-icon {
    transform: scale(1.1);
}

.video-icon i {
    font-size: 2rem;
    color: white;
    margin-left: 0.25rem;
}

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

.video-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.pricing-features .feature-item:last-child {
    border-bottom: none;
}

.pricing-features .feature-item i {
    color: #fb923c;
    font-size: 1.2rem;
}

.traffic-pricing {
    background: rgba(249, 115, 22, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.traffic-pricing h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.traffic-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border-radius: 0.5rem;
}

.tier-amount {
    font-weight: 600;
    color: var(--text-primary);
}

.tier-price {
    font-weight: 600;
    color: var(--accent-color);
}

.traffic-note {
    font-size: 0.9rem;
    color: #fb923c;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: #fb923c;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.1);
}

.faq-question h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

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

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

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

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

/* License Disclaimer */
.license-disclaimer {
    background: var(--bg-secondary);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-text p {
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

.disclaimer-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.disclaimer-text a:hover {
    border-bottom-color: var(--accent-color);
}

@media (max-width: 768px) {
    .license-disclaimer {
        padding: 2rem 0;
    }

    .disclaimer-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .disclaimer-content i {
        font-size: 1.25rem;
        margin-top: 0;
    }

    .disclaimer-text p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fb923c;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f97316;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        padding: 0;
        margin-top: -2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid,
    .apps-grid,
    .steps-container,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-logos::before {
        top: -10px;
        right: 5%;
        width: 200px;
        height: 80px;
        background:
            /* Row 1 - 6 dots (mobile) */
            radial-gradient(circle 2px at 20px 15px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 50px 15px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 80px 15px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 110px 15px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 140px 15px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 170px 15px, #f97316 50%, transparent 50%),
            /* Row 2 - 4 dots (mobile) */
            radial-gradient(circle 2px at 80px 40px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 110px 40px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 140px 40px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 170px 40px, #f97316 50%, transparent 50%),
            /* Row 3 - 3 dots (mobile) */
            radial-gradient(circle 2px at 110px 65px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 140px 65px, #f97316 50%, transparent 50%),
            radial-gradient(circle 2px at 170px 65px, #f97316 50%, transparent 50%);
    }

    .hero-logos-more {
        font-size: 0.75rem;
        bottom: -2%;
        padding: 0.4rem 1rem;
    }

    .hero-logos-more::before,
    .hero-logos-more::after {
        font-size: 0.4rem;
        margin: 0 0.3rem;
    }

    .feature-card,
    .app-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .app-card .app-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .app-card .app-icon i {
        font-size: 1.3rem;
    }

    .app-card .app-icon img {
        width: 35px;
        height: 35px;
    }
    
    .app-card h3 {
        font-size: 1.2rem;
    }
    
    .pricing-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    
    .floating-apps .app-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-apps .app-icon i {
        font-size: 1.4rem;
    }
    
    .floating-apps .app-1 {
        top: -12%;
        left: 50%;
    }
    
    .floating-apps .app-2 {
        top: 8%;
        right: -10%;
    }
    
    .floating-apps .app-3 {
        top: 50%;
        right: -12%;
    }
    
    .floating-apps .app-4 {
        bottom: 8%;
        right: -10%;
    }
    
    .floating-apps .app-5 {
        bottom: -12%;
        left: 50%;
    }
    
    .floating-apps .app-6 {
        bottom: 8%;
        left: -10%;
    }
    
    .floating-apps .app-7 {
        top: 50%;
        left: -12%;
    }
    
    .floating-apps .app-8 {
        top: 8%;
        left: -10%;
    }
    
    .amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 11rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-card {
        margin: 0;
    }
    
    .traffic-tiers {
        gap: 0.25rem;
    }
    
    .tier {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .app-card {
        min-height: 160px;
    }
    
    .app-card .app-icon {
        width: 45px;
        height: 45px;
    }

    .app-card .app-icon i {
        font-size: 1.2rem;
    }

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

    .app-card h3 {
        font-size: 1.1rem;
    }
    
    
    .floating-apps .app-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-apps .app-icon i {
        font-size: 1.2rem;
    }
    
    .floating-apps .app-1 {
        top: -14%;
        left: 50%;
    }
    
    .floating-apps .app-2 {
        top: 5%;
        right: -12%;
    }
    
    .floating-apps .app-3 {
        top: 50%;
        right: -14%;
    }
    
    .floating-apps .app-4 {
        bottom: 5%;
        right: -12%;
    }
    
    .floating-apps .app-5 {
        bottom: -14%;
        left: 50%;
    }
    
    .floating-apps .app-6 {
        bottom: 5%;
        left: -12%;
    }
    
    .floating-apps .app-7 {
        top: 50%;
        left: -14%;
    }
    
    .floating-apps .app-8 {
        top: 5%;
        left: -12%;
    }
    
    /* Hide some OS logos on mobile to reduce clutter */
    .os-logo.mongodb,
    .os-logo.mysql,
    .os-logo.nginx,
    .os-logo.git {
        display: none;
    }

    .os-logo {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .os-logo img {
        width: 1.5rem;
        height: 1.5rem;
        filter: brightness(0) saturate(100%) invert(59%) sepia(83%) saturate(2763%) hue-rotate(354deg) brightness(102%) contrast(96%);
    }
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}
.benefits-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.benefit-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.benefit-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.benefit-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Apps Showcase Section */
.apps-showcase {
    padding: 3rem 0;
    background: var(--bg-primary);
    width: 100%;
    overflow: hidden;
}

.apps-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.showcase-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.apps-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: nowrap;
    animation: scrollLeft 40s linear infinite;
    height: 80px;
    white-space: nowrap;
}

.apps-row:nth-child(2) {
    animation: scrollRight 40s linear infinite;
}

.app-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.app-logo:hover {
    opacity: 1;
}

.app-logo i {
    font-size: 2.5rem;
    color: rgba(249, 115, 22, 0.8);
}

.app-logo span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .showcase-title {
        font-size: 1.8rem;
    }

    .showcase-description {
        font-size: 1rem;
    }

    .showcase-header {
        padding: 0 1rem;
    }

    .apps-row {
        gap: 2rem;
    }

    .app-logo {
        min-width: 80px;
    }

    .app-logo i {
        font-size: 2rem;
    }

    .app-logo span {
        font-size: 0.8rem;
    }
}
/* Cart Styles */
.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cart-icon-wrapper:hover {
    background-color: var(--bg-secondary);
}

.cart-icon {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 20px;
    padding: 0 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-count.hidden {
    display: none;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.cart-overlay.show {
    display: block;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
}

.cart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--text-primary);
    background: var(--bg-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cart-item-price {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.delete-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ef4444;
    background: var(--bg-primary);
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.delete-btn:hover {
    background: #ef4444;
    color: white;
}

.delete-btn svg {
    width: 16px;
    height: 16px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--bg-primary);
    border-color: var(--accent-color);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--cta-button-bg);
    color: var(--cta-button-text);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive cart styles */
@media (max-width: 768px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Legal/Privacy Policy Page Styles */
.legal-content {
    padding: 8rem 0 4rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.legal-section ul li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-section ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-section a:hover {
    border-bottom-color: var(--accent-color);
}

.legal-section .cta-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.legal-section .cta-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(5px);
    border-bottom-color: transparent;
}

.legal-section .important-notice {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.legal-section .important-notice strong {
    color: var(--accent-color);
    font-weight: 700;
}

.contact-info {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info strong {
    color: var(--text-primary);
}

/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 6rem 1rem 2rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.75rem;
    }

    .legal-section h2 {
        font-size: 1.35rem;
    }
}
