/* ==========================================================================
   Boox TV - Cyberpunk Neon Styling Sheet
   ========================================================================== */

/* Global Variables */
:root {
    --bg-color: #030303;
    --card-bg: rgba(6, 6, 8, 0.65);
    --card-bg-hover: rgba(12, 12, 18, 0.8);
    
    /* Neon RGB Values for drop-shadows & glows */
    --cyan-rgb: 0, 229, 255;
    --purple-rgb: 157, 78, 221;
    --pink-rgb: 255, 0, 127;
    --dark-rgb: 3, 3, 3;
    
    /* Colors */
    --cyan: rgb(var(--cyan-rgb));
    --purple: rgb(var(--purple-rgb));
    --pink: rgb(var(--pink-rgb));
    --white: #ffffff;
    --white-low: rgba(255, 255, 255, 0.05);
    --border-low: rgba(255, 255, 255, 0.08);
    --border-glow-cyan: rgba(var(--cyan-rgb), 0.2);
    --border-glow-magenta: rgba(var(--pink-rgb), 0.2);
    
    /* Fonts */
    --font-futuristic: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transition defaults */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink);
}

/* ==========================================================================
   Space Background & Interactive Grids
   ========================================================================== */
.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
    background-color: #010103;
}

.galaxy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    transform: scale(1.05);
    transition: transform 0.1s ease-out;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('brand-assets/home-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.65;
    z-index: 1;
    pointer-events: none;
    transform: scale(1.05);
    transition: transform 0.1s ease-out;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(18, 18, 24, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 24, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    opacity: 0.8;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.75;
}

/* ==========================================================================
   Header and Sticky Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
    padding: 14px 28px;
    background: rgba(6, 6, 8, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.01);
}

.header.scrolled {
    top: 10px;
    padding: 10px 24px;
    background: rgba(3, 3, 5, 0.85);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(var(--cyan-rgb), 0.15);
    border-color: rgba(var(--cyan-rgb), 0.35);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 38px;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .nav-logo {
    height: 34px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: var(--font-futuristic);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--cyan);
    text-shadow: 0 0 8px rgba(var(--cyan-rgb), 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    transition: var(--transition);
}

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

.btn-nav-glow {
    background: rgba(var(--cyan-rgb), 0.1);
    color: var(--cyan);
    font-family: var(--font-futuristic);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid rgba(var(--cyan-rgb), 0.4);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.1);
    transition: var(--transition);
}

.btn-nav-glow:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.6);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    z-index: 10;
    position: relative;
}

.logo-container {
    margin-bottom: 25px;
}

.hero-logo {
    max-width: 320px;
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(var(--cyan-rgb), 0.35));
}

.hero-title {
    font-family: var(--font-futuristic);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title span {
    display: inline-block;
}

.glow-text {
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(var(--cyan-rgb), 0.45));
    animation: neon-pulse 3s infinite alternate;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Button Premium Glow Styles */
.btn-neon-primary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    color: #000;
    text-decoration: none;
    font-family: var(--font-futuristic);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 4px;
    overflow: hidden;
    border: none;
    z-index: 1;
    transition: var(--transition);
}

.btn-neon-primary .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-neon-primary:hover .btn-glow {
    opacity: 1;
}

.btn-neon-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(var(--cyan-rgb), 0.65), 0 0 10px rgba(var(--purple-rgb), 0.5);
}

.btn-neon-secondary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-futuristic);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid rgba(var(--cyan-rgb), 0.35);
    transition: var(--transition);
}

.btn-neon-secondary:hover {
    background: rgba(var(--cyan-rgb), 0.08);
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(var(--cyan-rgb), 0.25);
}

/* Background floating spheres */
.hero-glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.cyan-sphere {
    width: 350px;
    height: 350px;
    background: var(--cyan);
    top: 25%;
    left: 10%;
    animation: drift-slow 12s infinite alternate ease-in-out;
}

.magenta-sphere {
    width: 400px;
    height: 400px;
    background: var(--pink);
    bottom: 15%;
    right: 8%;
    animation: drift-slow 15s infinite alternate-reverse ease-in-out;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 50px 0;
    position: relative;
    z-index: 10;
}

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Glassmorphism Stat Cards */
.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-low);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg-hover);
    border-color: rgba(var(--cyan-rgb), 0.3);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(var(--cyan-rgb), 0.1);
}

.stat-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hologram-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(var(--cyan-rgb), 0.5));
}

.stat-number {
    font-family: var(--font-futuristic);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--white) 30%, rgba(var(--cyan-rgb), 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-futuristic);
}

/* Border card anim borders */
.card-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 12px;
    border: 1px solid transparent;
}

.stat-card:hover .card-glow-border {
    border-image: linear-gradient(to bottom right, var(--cyan), var(--purple)) 1;
    opacity: 0.5;
}

/* ==========================================================================
   Bento Grid Benefits Section
   ========================================================================== */
.benefits-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-family: var(--font-futuristic);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 25px;
}

.bento-box {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-low);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bento-box:hover {
    background: var(--card-bg-hover);
    border-color: rgba(var(--purple-rgb), 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(var(--purple-rgb), 0.15);
    transform: scale(1.01);
}

.bento-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--purple-rgb), 0.05) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-box:hover .bento-glow {
    opacity: 1;
}

.bento-content {
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

/* Bento configuration spans */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-small-2 {
    grid-column: span 2;
    grid-row: span 1;
}

/* Tags inside Bento boxes */
.tag {
    align-self: flex-start;
    font-family: var(--font-futuristic);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.tag-cyan {
    background: rgba(var(--cyan-rgb), 0.15);
    color: var(--cyan);
    border: 1px solid rgba(var(--cyan-rgb), 0.3);
}

.tag-magenta {
    background: rgba(var(--pink-rgb), 0.15);
    color: var(--pink);
    border: 1px solid rgba(var(--pink-rgb), 0.3);
}

.tag-purple {
    background: rgba(var(--purple-rgb), 0.15);
    color: var(--purple);
    border: 1px solid rgba(var(--purple-rgb), 0.3);
}

.tag-pink {
    background: rgba(255, 0, 127, 0.15);
    color: var(--pink);
    border: 1px solid rgba(255, 0, 127, 0.3);
}

.bento-content h3 {
    font-family: var(--font-futuristic);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.bento-large .bento-content h3 {
    font-size: 2rem;
    margin-top: 10px;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Neon Checklist */
.checklist-neon {
    margin-top: 30px;
    display: grid;
    grid-template-cols: repeat(2, 1fr);
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: var(--cyan);
    font-weight: 900;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--cyan);
}

.check-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Bento Shield Lock animation */
.security-lock-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.shield-lock {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 12px rgba(var(--pink-rgb), 0.45));
    animation: pulse-glow 3s infinite ease-in-out;
}

/* ==========================================================================
   Devices Multipantalla Section
   ========================================================================== */
.devices-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.devices-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.devices-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-left {
    text-align: left;
    margin-left: 0;
}

.device-list {
    list-style: none;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.device-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.neon-cyan {
    background-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.neon-magenta {
    background-color: var(--pink);
    box-shadow: 0 0 10px var(--pink);
}

.neon-purple {
    background-color: var(--purple);
    box-shadow: 0 0 10px var(--purple);
}

.device-list li strong {
    font-family: var(--font-futuristic);
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.device-list li p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Mockup and visual column */
.devices-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-glow-back {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.15) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
}

.holographic-device-showcase {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* TV Showcase Frame */
.showcase-tv {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 82%;
    aspect-ratio: 16/9;
    background: #060608;
    border: 2px solid rgba(var(--cyan-rgb), 0.35);
    border-radius: 12px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(var(--cyan-rgb), 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    padding: 7px;
    box-sizing: border-box;
}

.tv-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #07070a 0%, #150f1f 100%);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
}

.tv-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.03) 50%, rgba(0,0,0,0.1) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.4;
}

.tv-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    z-index: 2;
}

.tv-logo-min {
    font-family: var(--font-futuristic);
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--cyan);
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(var(--cyan-rgb), 0.5);
}

.tv-menu-min {
    display: flex;
    gap: 4px;
}

.tv-menu-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.tv-menu-dot.active {
    background: var(--cyan);
    box-shadow: 0 0 5px var(--cyan);
}

.tv-hero-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 10px;
    z-index: 2;
}

.tv-hero-info {
    display: flex;
    flex-direction: column;
}

.tv-badge {
    font-size: 0.45rem;
    font-weight: 900;
    background: rgba(var(--cyan-rgb), 0.15);
    color: var(--cyan);
    padding: 2px 4px;
    border-radius: 2px;
    align-self: flex-start;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    border: 1px solid rgba(var(--cyan-rgb), 0.25);
}

.tv-hero-info h4 {
    font-family: var(--font-futuristic);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #fff;
}

.tv-hero-info p {
    font-size: 0.55rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.tv-play-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cyan);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.6);
    flex-shrink: 0;
}

.tv-play-btn svg {
    width: 10px;
    height: 10px;
}

.tv-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: auto;
    z-index: 2;
}

.tv-cat-card {
    position: relative;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tv-cat-card span {
    font-family: var(--font-futuristic);
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    z-index: 2;
    letter-spacing: 0.5px;
}

.tv-cat-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.tv-cat-card.live .tv-cat-glow { background: var(--pink); box-shadow: 0 0 6px var(--pink); }
.tv-cat-card.movies .tv-cat-glow { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.tv-cat-card.series .tv-cat-glow { background: var(--purple); box-shadow: 0 0 6px var(--purple); }

.tv-stand {
    width: 25px;
    height: 15px;
    background: rgba(var(--cyan-rgb), 0.35);
    margin: 0 auto;
}

.tv-base {
    width: 100px;
    height: 4px;
    background: rgba(var(--cyan-rgb), 0.5);
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(var(--cyan-rgb), 0.4);
}

/* Smartphone Showcase Frame */
.showcase-phone {
    position: absolute;
    bottom: 15px;
    right: 25px;
    width: 110px;
    height: 210px;
    background: #060608;
    border: 2px solid rgba(var(--pink-rgb), 0.35);
    border-radius: 18px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(var(--pink-rgb), 0.2),
        0 0 5px rgba(var(--pink-rgb), 0.4);
    padding: 5px;
    box-sizing: border-box;
    z-index: 10;
    animation: float-phone 5s infinite alternate ease-in-out;
}

.phone-notch {
    width: 40px;
    height: 8px;
    background: #060608;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #07070a 0%, #170d1a 100%);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 6px 6px;
    box-sizing: border-box;
}

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

.phone-logo {
    font-family: var(--font-futuristic);
    font-size: 0.5rem;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: 0.5px;
}

.phone-status {
    font-size: 0.4rem;
    color: rgba(255, 255, 255, 0.35);
}

.phone-player {
    height: 55px;
    border-radius: 4px;
    background-image: linear-gradient(135deg, #1b0c33, #b50256);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.phone-player::before {
    content: 'LIVE';
    position: absolute;
    top: 3px;
    left: 3px;
    background: var(--pink);
    color: #fff;
    font-size: 0.35rem;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 2px;
    font-family: var(--font-futuristic);
}

.phone-play-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.phone-play-icon svg {
    width: 8px;
    height: 8px;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.phone-item.active {
    background: rgba(var(--pink-rgb), 0.08);
    border-color: rgba(var(--pink-rgb), 0.2);
}

.phone-item span {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.phone-item.active span {
    color: #fff;
    font-weight: 700;
}

.phone-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.phone-dot.cyan { background: var(--cyan); box-shadow: 0 0 3px var(--cyan); }
.phone-dot.pink { background: var(--pink); box-shadow: 0 0 3px var(--pink); }
.phone-dot.purple { background: var(--purple); box-shadow: 0 0 3px var(--purple); }

/* Keyframe for phone floating independent of background */
@keyframes float-phone {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-8px) rotate(1deg);
    }
}

/* Floating Futuristic streaming card dashboard mockup */
.floating-ui-card {
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 280px;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--cyan-rgb), 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(var(--cyan-rgb), 0.2);
    border-radius: 12px;
    padding: 15px;
    z-index: 10;
    animation: float-slow 6s infinite alternate ease-in-out;
}

.ui-header {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.ui-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ui-dot:nth-child(1) { background-color: var(--pink); }
.ui-dot:nth-child(2) { background-color: var(--purple); }
.ui-dot:nth-child(3) { background-color: var(--cyan); }

.ui-title {
    font-family: var(--font-futuristic);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-left: 5px;
}

.ui-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.ui-item:hover {
    border-color: rgba(var(--cyan-rgb), 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.ui-item-img {
    width: 44px;
    height: 30px;
    border-radius: 4px;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Fictional imagery backgrounds */
.neon-city-img {
    background-image: linear-gradient(135deg, #1b0c33, #5d0f80);
}
.quantum-drift-img {
    background-image: linear-gradient(135deg, #071f33, #02e0b5);
}
.galaxy-cup-img {
    background-image: linear-gradient(135deg, #3d022b, #b50256);
}

.ui-tag {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--cyan);
    font-size: 0.45rem;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 2px;
    font-family: var(--font-futuristic);
}

.ui-tag-live {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: var(--pink);
    color: #fff;
    font-size: 0.45rem;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 2px;
    font-family: var(--font-futuristic);
    box-shadow: 0 0 5px var(--pink);
}

.ui-item-desc {
    display: flex;
    flex-direction: column;
}

.ui-item-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.ui-item-category {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-futuristic);
    margin-top: 1px;
}

/* ==========================================================================
   Compatibility Section
   ========================================================================== */
.compatibility-section {
    padding: 70px 0;
    position: relative;
    z-index: 10;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.comp-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.comp-glow-sphere {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--pink-rgb), 0.1) 0%, transparent 60%);
    filter: blur(35px);
    z-index: 1;
}

.comp-image {
    width: 90%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.comp-hud-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(var(--cyan-rgb), 0.15));
}

.comp-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Glassmorphism device cards */
.comp-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.comp-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--cyan-rgb), 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(var(--cyan-rgb), 0.05);
}

.comp-icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comp-card:hover .comp-icon-glow {
    opacity: 1;
}

.comp-card-icon {
    width: 24px;
    height: 24px;
    margin: 0;
    flex-shrink: 0;
    color: var(--cyan);
    filter: drop-shadow(0 0 4px rgba(var(--cyan-rgb), 0.4));
    transition: var(--transition);
}

.comp-card:hover .comp-card-icon {
    transform: scale(1.1) rotate(3deg);
    color: var(--pink);
    filter: drop-shadow(0 0 8px rgba(var(--pink-rgb), 0.6));
}

.comp-card:nth-child(even) .comp-card-icon {
    color: var(--pink);
    filter: drop-shadow(0 0 4px rgba(var(--pink-rgb), 0.4));
}

.comp-card:nth-child(even):hover .comp-card-icon {
    color: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(var(--cyan-rgb), 0.6));
}

.comp-card h4 {
    font-family: var(--font-futuristic);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #fff;
}

.comp-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 300;
    line-height: 1.3;
}

/* ==========================================================================
   Pricing Planes Section
   ========================================================================== */
.pricing-section {
    padding: 100px 0 120px;
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    align-items: stretch;
}

/* Premium pricing cards */
.price-card {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-low);
    border-radius: 16px;
    padding: 40px 25px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-8px);
    background: var(--card-bg-hover);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* Specific glows for pricing cards background */
.plan-glow-blue, .plan-glow-magenta, .plan-glow-purple, .plan-glow-pink {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    pointer-events: none;
    transition: var(--transition);
}

.plan-glow-blue { background-color: var(--cyan); }
.plan-glow-magenta { background-color: var(--pink); }
.plan-glow-purple { background-color: var(--purple); }
.plan-glow-pink { background-color: var(--pink); }

.price-card:hover .plan-glow-blue,
.price-card:hover .plan-glow-magenta,
.price-card:hover .plan-glow-purple,
.price-card:hover .plan-glow-pink {
    opacity: 0.35;
    transform: scale(1.5);
}

/* Highlighted Popular Plan */
.popular-card {
    border: 2px solid rgba(var(--pink-rgb), 0.45);
    background: rgba(10, 6, 12, 0.7);
    box-shadow: 0 0 20px rgba(var(--pink-rgb), 0.1);
    transform: scale(1.02);
}

.popular-card:hover {
    border-color: var(--pink);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(var(--pink-rgb), 0.25);
    transform: scale(1.04) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    left: 20px;
    background: var(--pink);
    color: #fff;
    font-family: var(--font-futuristic);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--pink);
}

.price-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.price-header h3 {
    font-family: var(--font-futuristic);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 15px;
}

.price-amount {
    font-family: var(--font-futuristic);
    font-size: 2.3rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.popular-card .price-amount {
    color: var(--pink);
    text-shadow: 0 0 12px rgba(var(--pink-rgb), 0.3);
}

.price-amount .currency {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 2px;
}

.plan-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-body {
    flex-grow: 1;
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '▶';
    font-size: 0.6rem;
    color: var(--cyan);
}

.popular-card .price-features li::before {
    color: var(--pink);
}

.price-features li.highlight-feature {
    color: var(--cyan);
    font-weight: 500;
}

.popular-card .price-features li.highlight-feature {
    color: var(--pink);
}

.price-footer {
    text-align: center;
}

/* Pricing Buttons */
.btn-price-order, .btn-price-order-magenta, .btn-price-order-pink {
    display: block;
    width: 100%;
    padding: 14px;
    text-decoration: none;
    font-family: var(--font-futuristic);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
}

.btn-price-order {
    background: transparent;
    color: var(--cyan);
    border: 1px solid rgba(var(--cyan-rgb), 0.4);
}

.btn-price-order:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.5);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.btn-price-order-magenta {
    background: var(--pink);
    color: #fff;
    border: 1px solid var(--pink);
    box-shadow: 0 0 15px rgba(var(--pink-rgb), 0.3);
}

.btn-price-order-magenta:hover {
    background: transparent;
    color: var(--pink);
    box-shadow: 0 0 25px rgba(var(--pink-rgb), 0.4);
    transform: translateY(-2px);
}

.btn-price-order-pink {
    background: transparent;
    color: var(--pink);
    border: 1px solid rgba(var(--pink-rgb), 0.4);
}

.btn-price-order-pink:hover {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 0 20px rgba(var(--pink-rgb), 0.5);
    border-color: var(--pink);
    transform: translateY(-2px);
}

/* Custom border colors on card hover */
.price-card:hover {
    border-color: rgba(var(--cyan-rgb), 0.3);
}
.price-card:nth-child(3):hover {
    border-color: rgba(var(--purple-rgb), 0.3);
}
.price-card:nth-child(4):hover {
    border-color: rgba(var(--pink-rgb), 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: rgba(2, 2, 3, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 40px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(var(--cyan-rgb), 0.2));
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav h4, .footer-contact h4 {
    font-family: var(--font-futuristic);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-nav a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

.contact-text-highlight {
    font-size: 0.95rem;
    color: var(--cyan);
    font-family: var(--font-futuristic);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(var(--cyan-rgb), 0.3);
}

.contact-buttons {
    margin-top: 10px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-futuristic);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25d366;
    color: #000;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

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

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */

/* Neon Slogan Pulsing */
@keyframes neon-pulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(var(--cyan-rgb), 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(var(--cyan-rgb), 0.7)) drop-shadow(0 0 8px rgba(var(--purple-rgb), 0.5));
    }
    100% {
        filter: drop-shadow(0 0 12px rgba(var(--cyan-rgb), 0.3));
    }
}

/* Floating Animation */
.animate-float {
    animation: float 4s infinite alternate ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-12px);
    }
}

/* Floating slow for cards */
@keyframes float-slow {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-15px) rotate(1.5deg);
    }
}

/* Pulse Glow */
.animate-pulse-slow {
    animation: pulse-slow 8s infinite alternate ease-in-out;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(var(--pink-rgb), 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(var(--pink-rgb), 0.6)) drop-shadow(0 0 10px rgba(var(--cyan-rgb), 0.4));
    }
}

/* BG Spheres Drift Animation */
@keyframes drift-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, -40px) scale(1.15);
    }
    100% {
        transform: translate(-30px, 60px) scale(0.9);
    }
}

/* JS Scroll Reveal Defaults */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Configurations
   ========================================================================== */

/* Large Screens */
@media (min-width: 1400px) {
    .section-container {
        max-width: 1300px;
    }
}

/* Medium Tablets & Laptops */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .bento-medium {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .bento-small-2 {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .devices-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comp-visual-wrapper {
        order: 2;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    /* Sticky header adjustment */
    .header {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        padding: 16px 20px !important;
    }
    
    .header.scrolled {
        top: 0 !important;
        padding: 12px 20px !important;
    }

    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(3, 3, 3, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding-bottom: 80px;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .bento-large, .bento-medium, .bento-small-2 {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .checklist-neon {
        grid-template-columns: 1fr;
    }
    
    .comp-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-card {
        transform: scale(1);
    }
    
    .popular-card:hover {
        transform: scale(1.02) translateY(-5px);
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-logo {
        max-width: 240px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn-neon-primary, .btn-neon-secondary {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bento-content {
        padding: 25px;
    }
    
    .floating-ui-card {
        width: 220px;
        right: 0;
        bottom: -20px;
    }
    
    .holographic-device-showcase {
        transform: scale(0.8);
        margin: -30px 0;
    }
    
    .comp-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}
