:root {
    --bg: #04070d;
    --bg-accent: #0a1220;
    --accent: #6ad6ff;
    --accent-dark: #1bb5ff;
    --accent-strong: #00d1ff;
    --accent-glow: rgba(106, 214, 255, 0.7);
    --text: #ecf7ff;
    --text-muted: #9bb5cc;
    --glass: rgba(11, 17, 28, 0.82);
    --glass-border: rgba(123, 221, 255, 0.18);
    --container-max: 1200px;
    --transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    background:
        radial-gradient(circle at top left, rgba(66, 165, 245, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(0, 209, 255, 0.12), transparent 35%),
        var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .logo-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.03em;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Effects - Ultra Premium Titanium Glow */
/* Background Effects - Ultra Premium Titanium Glow (GPU Optimized) */
.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(94, 234, 212, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(4, 7, 13, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    contain: strict;
    will-change: transform;
    transform: translateZ(0);
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
    contain: strict;
    will-change: transform;
    transform: translateZ(0);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(4, 7, 13, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(106, 214, 255, 0.16);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    z-index: 1000;
    transform: translateZ(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #041018;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.35rem;
    border-radius: 10px;
    box-shadow: 0 0 25px var(--accent-glow), inset 0 0 10px rgba(255,255,255,0.25);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}

.logo-accent {
    color: var(--accent);
    text-shadow: 0 0 6px rgba(89, 211, 255, 0.9), 0 0 14px rgba(89, 211, 255, 0.7), 0 0 24px rgba(89, 211, 255, 0.45);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    gap: 5px;
    transition: var(--transition);
    z-index: 1001;
}

.hamburger-btn:hover {
    border-color: var(--accent);
}

.hamburger-btn .bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--accent);
    color: var(--bg);
}

.mobile-nav-close i, .mobile-nav-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--accent);
}

.mobile-nav-cta {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(106, 214, 255, 0.08);
    border: 1px solid rgba(106, 214, 255, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(106, 214, 255, 0.18);
}

.hero-pill i { width: 14px; height: 14px; }

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #8be9ff 0%, var(--accent) 35%, #1bb5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 18px rgba(106, 214, 255, 0.25);
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 95%;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

/* Buttons - Elite SaaS Style */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 35%, var(--accent-dark) 100%);
    color: #041018;
    font-weight: 800;
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 12px 30px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.4);
    filter: brightness(1.06);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.btn-lg {
    padding: 1.15rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mockup */
.hero-image {
    position: relative;
}

.mockup-container {
    position: relative;
    z-index: 1;
}

.mockup-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.main-mockup {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.floating-badge {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    animation: floating 6s ease-in-out infinite;
}

.badge-1 { top: 10%; right: -5%; }
.badge-2 { bottom: 20%; left: -10%; animation-delay: 1s; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Features Grid */
.features-grid {
    padding: 70px 0 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title h2 span {
    color: var(--accent);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(15, 22, 32, 0.9) 0%, rgba(9, 14, 22, 0.96) 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 28px 18px 24px 18px;
    border: 1px solid rgba(106, 214, 255, 0.14);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.feature-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, rgba(106, 214, 255, 0.5), transparent);
    border-left: 1px solid rgba(106, 214, 255, 0.25);
    border-bottom: 1px solid rgba(106, 214, 255, 0.25);
    transform: translate(0, 0);
}


.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(34, 197, 94, 0.06), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(106, 214, 255, 0.45);
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(17, 27, 36, 0.96) 0%, rgba(8, 15, 23, 1) 100%);
    box-shadow: 0 25px 55px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(106, 214, 255, 0.12);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(106, 214, 255, 0.08);
    border: 1px solid rgba(106, 214, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 0 22px rgba(106, 214, 255, 0.08);
}

.icon-box i, .icon-box svg {
    width: 28px !important;
    height: 28px !important;
    stroke: var(--accent) !important;
    color: var(--accent) !important;
    stroke-width: 2.5px !important;
    display: block !important;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #041018;
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.15);
}

.feature-card:hover .icon-box i, .feature-card:hover .icon-box svg {
    stroke: #041018 !important;
    color: #041018 !important;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing {
    padding: 70px 0 40px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.billing-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.billing-label.active {
    color: var(--text);
    font-weight: 800;
}

.discount-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px; width: 24px;
    left: 3px; bottom: 3px;
    background-color: var(--accent);
    transition: .4s;
}

input:checked + .slider { background-color: rgba(34, 197, 94, 0.2); }
input:checked + .slider:before { transform: translateX(26px); background-color: #22c55e; }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.pricing-grid.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.price-card {
    background: linear-gradient(180deg, rgba(11, 17, 28, 0.95) 0%, rgba(8, 11, 17, 0.98) 100%);
    padding: 1.6rem 1.4rem;
    border-radius: 22px 15px 20px 15px;
    border: 1px solid rgba(106, 214, 255, 0.12);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.03);
    will-change: transform;
    transform: translateZ(0);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.price-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(106, 214, 255, 0.45), transparent);
    border-left: 1px solid rgba(106, 214, 255, 0.2);
    border-bottom: 1px solid rgba(106, 214, 255, 0.2);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, transparent 100%);
    z-index: 0; pointer-events: none;
}

.price-card.featured {
    background: linear-gradient(180deg, rgba(10, 18, 32, 1) 0%, rgba(7, 12, 20, 1) 100%);
    border: 2px solid rgba(106, 214, 255, 0.7);
    transform: scale(1.02) translateZ(0);
    z-index: 10;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.85), 0 0 30px -5px rgba(106, 214, 255, 0.25);
}

.price-card .badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #000;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.price-card .tier {
    font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 0.15rem;
}

.plan-subtitle {
    font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; font-weight: 500;
}

.seat-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.35rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-weight: 600;
}
.seat-badge i, .seat-badge svg { width: 16px; height: 16px; color: var(--accent); stroke: var(--accent); }

.price-card .amount {
    font-size: 2.3rem; font-weight: 900; margin-bottom: 1rem; color: var(--accent);
    display: flex; align-items: baseline; justify-content: flex-start; gap: 4px; flex-wrap: wrap;
    letter-spacing: -0.04em;
}

.price-card .amount .period-label {
    font-size: 0.9rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; letter-spacing: 0;
}

.perks {
    list-style: none; margin-bottom: 1.6rem; flex-grow: 1; text-align: left;
}

.perks li {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.7rem; font-size: 0.82rem; color: #e2e8f0;
}

.perks li i, .perks li svg { width: 16px; height: 16px; color: var(--accent); stroke: var(--accent); flex-shrink: 0; }
.perks li.disabled { color: #444; }
.price-card .btn { width: 100%; text-align: center; }

/* Bento Features Section (Compact & High-Density) */
.bento-features {
    padding: 60px 0 30px;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
}

.bento-card {
    background: #08080c;
    border: 1px solid var(--glass-border);
    border-radius: 20px 14px 22px 14px;
    padding: 1.5rem 1.35rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    will-change: transform;
    transform: translateZ(0);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.bento-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(106, 214, 255, 0.4), transparent);
    border-left: 1px solid rgba(106, 214, 255, 0.2);
    border-bottom: 1px solid rgba(106, 214, 255, 0.2);
}


.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, transparent 100%);
    z-index: 0; pointer-events: none;
}

.bento-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px -10px rgba(16, 185, 129, 0.2);
    transform: translateY(-4px);
}

.bento-icon {
    width: 52px;
    height: 52px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.bento-icon i, .bento-icon svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #10b981 !important;
    color: #10b981 !important;
    stroke-width: 2.5px !important;
    display: block !important;
    transition: var(--transition);
}

.bento-card:hover .bento-icon {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.1);
}

.bento-card:hover .bento-icon i, .bento-card:hover .bento-icon svg {
    stroke: #000 !important;
    color: #000 !important;
}

.bento-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bento-content h3 {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.bento-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.8rem;
}

.bento-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.bento-list li:last-child { margin-bottom: 0; }

.bento-list li i, .bento-list li svg {
    color: var(--accent);
    stroke: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-item.reverse .detail-list li {
    justify-content: flex-end;
}

/* Footer Section */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Download Section (APK Sideload) */
.download-section {
    padding: 80px 0;
}

.download-box {
    background: linear-gradient(135deg, rgba(10, 18, 32, 0.98) 0%, rgba(4, 7, 13, 0.92) 100%);
    border: 1px solid rgba(106, 214, 255, 0.2);
    border-radius: 36px;
    padding: 4rem 3.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px -15px rgba(106, 214, 255, 0.2);
    backdrop-filter: blur(20px);
}

.download-header .icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 10px 25px var(--accent-glow);
}

.download-header .icon-circle i, .download-header .icon-circle svg {
    width: 32px;
    height: 32px;
    stroke: #000;
    stroke-width: 2.5;
}

.download-header h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.download-header h2 span {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.download-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-xl {
    padding: 1.15rem 2.75rem;
    font-size: 1.15rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #000;
    font-weight: 800;
    box-shadow: 0 15px 35px -10px var(--accent-glow);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px -10px rgba(16, 185, 129, 0.7);
    filter: brightness(1.1);
}

.btn-xl i {
    width: 24px;
    height: 24px;
}

.file-info {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.install-guide {
    text-align: left;
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
}

.install-guide h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--bg-accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--accent);
}

.step-txt h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-txt p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modal Overlay & Card */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3.5rem;
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--bg);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-accent);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px var(--accent-glow);
}

.modal-icon i { width: 32px; height: 32px; }

.modal-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.modal-subtitle strong { color: var(--accent); }

.form-group {
    margin-bottom: 1.75rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 1rem;
    border-radius: 16px;
}

.security-badge i { color: var(--accent); width: 24px; height: 24px; flex-shrink: 0; }

.btn-full { width: 100%; padding: 1.2rem; font-size: 1.1rem; border-radius: 18px; }

.checkout-success { text-align: center; }
.success-icon { width: 80px; height: 80px; background: rgba(34, 197, 94, 0.15); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.success-icon i { width: 44px; height: 44px; }
.checkout-success h4 { font-size: 1.75rem; margin-bottom: 1rem; }
.checkout-success p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; }
.license-sample { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); padding: 1.5rem; border-radius: 20px; margin-bottom: 2rem; }
.license-sample span { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.license-sample code { font-size: 1.3rem; color: var(--accent); font-weight: 800; letter-spacing: 2px; }

/* ============================================
   RESPONSIVE — OPTIMIZACIÓN MÓVIL VERTICAL
   ============================================ */

@media (max-width: 1199px) {
    .pricing-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-links { display: none !important; }
    header .btn-primary { display: none !important; }
    .hamburger-btn { display: flex; }
    
    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .cards-container, .guide-steps { grid-template-columns: 1fr; gap: 2rem; }
    .price-card.featured { transform: scale(1); }
    
    .download-box { padding: 3rem 2rem; }
    
    .floating-badge { display: none; }
    
    .features-grid { padding: 60px 0; }
    .bento-features { padding: 60px 0; }
    .pricing { padding: 60px 0; }
    .download-section { padding: 50px 0; }
}

@media (max-width: 768px) {
    header { height: 60px; }
    
    .container { padding: 0 1.25rem; }
    
    .section-title { margin-bottom: 3rem; }
    .section-title h2 { font-size: 2rem; }
    .section-title p { font-size: 1rem; }
    
    .hero { padding-top: 100px; padding-bottom: 50px; }
    .hero-content h1 { font-size: 2.2rem; line-height: 1.1; }
    .subtitle { font-size: 1rem; margin-bottom: 1.75rem; max-width: 100%; }
    .hero-pill { font-size: 0.75rem; padding: 5px 12px; margin-bottom: 1rem; }
    .hero-actions { gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; justify-content: center; }
    .btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
    
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
    .stat .count { font-size: 1.5rem; }
    .stat .label { font-size: 0.8rem; }
    
    .feature-card { padding: 2.5rem 1.75rem; border-radius: 20px; }
    .feature-card h3 { font-size: 1.3rem; }
    .feature-card p { font-size: 0.95rem; }
    .icon-box { width: 48px; height: 48px; margin-bottom: 1.5rem; }
    .icon-box i, .icon-box svg { width: 24px !important; height: 24px !important; }
    
    .pricing-grid.grid-4, .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .bento-card { padding: 1.75rem 1.5rem; border-radius: 20px; }
    .bento-icon { width: 50px; height: 50px; margin-bottom: 1.25rem; border-radius: 16px; }
    .bento-icon i, .bento-icon svg { width: 24px !important; height: 24px !important; }
    .bento-content h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
    .bento-content p { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .bento-list li { font-size: 0.82rem; margin-bottom: 0.6rem; }
    
    .price-card { padding: 2rem 1.25rem; border-radius: 20px; }
    .price-card .amount { font-size: 2.2rem; margin-bottom: 1rem; }
    .price-card .amount .period-label { font-size: 0.9rem; }
    .price-card .tier { font-size: 1.25rem; }
    .plan-subtitle { font-size: 0.85rem; margin-bottom: 0.75rem; }
    .seat-badge { font-size: 0.75rem; padding: 0.35rem 0.7rem; margin-bottom: 1.25rem; }
    .perks { margin-bottom: 2rem; }
    .perks li { font-size: 0.85rem; margin-bottom: 0.7rem; }
    .price-card .badge { font-size: 0.7rem; padding: 0.3rem 0.7rem; top: 12px; right: 12px; }
    
    .billing-toggle { flex-wrap: wrap; justify-content: center; gap: 0.75rem 1rem; margin-top: 1.75rem; }
    .billing-label { font-size: 0.95rem; text-align: center; }
    .switch { width: 50px; height: 28px; }
    .slider:before { height: 20px; width: 20px; }
    input:checked + .slider:before { transform: translateX(22px); }
    
    .download-box { padding: 2.5rem 1.5rem; border-radius: 28px; }
    .download-header .icon-circle { width: 56px; height: 56px; margin-bottom: 1.25rem; }
    .download-header .icon-circle i, .download-header .icon-circle svg { width: 26px !important; height: 26px !important; }
    .download-header h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
    .download-header p { font-size: 0.95rem; margin-bottom: 2rem; }
    .btn-xl { padding: 1rem 2rem; font-size: 1rem; border-radius: 16px; }
    .file-info { font-size: 0.85rem; }
    
    .install-guide { padding-top: 2.5rem; }
    .install-guide h3 { font-size: 1.35rem; margin-bottom: 2rem; }
    .step-item { padding: 1.5rem; gap: 1rem; flex-direction: column; align-items: flex-start; }
    .step-num { width: 34px; height: 34px; font-size: 1rem; }
    .step-txt h4 { font-size: 1.05rem; }
    .step-txt p { font-size: 0.88rem; }
    
    footer { padding: 40px 0 25px; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-content p { font-size: 0.82rem; }
    
    .modal-card { padding: 2rem 1.5rem; border-radius: 24px; max-width: 95%; margin: 0 0.75rem; }
    .modal-close { top: 16px; right: 16px; width: 38px; height: 38px; }
    .modal-card h3 { font-size: 1.5rem; }
    .modal-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-group input { padding: 1rem; font-size: 16px; }
    .security-badge { margin-bottom: 1.5rem; padding: 0.85rem; font-size: 0.8rem; }
    .btn-full { padding: 1.05rem; font-size: 1rem; }
    .success-icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; }
    .success-icon i { width: 36px !important; height: 36px !important; }
    .checkout-success h4 { font-size: 1.4rem; }
    .checkout-success p { font-size: 0.9rem; }
}

@media (max-width: 400px) {
    .container { padding: 0 1rem; }
    .hero-content h1 { font-size: 1.85rem; }
    .subtitle { font-size: 0.92rem; }
    .btn-lg { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
    .section-title h2 { font-size: 1.65rem; }
    .price-card .amount { font-size: 2rem; }
    .download-header h2 { font-size: 1.5rem; }
    .download-box { padding: 2rem 1.25rem; }
    .modal-card { padding: 1.5rem 1.25rem; }
}

@media (max-width: 896px) and (orientation: portrait) {
    .hero { padding-top: 90px; }
    .hero-image { order: -1; }
    .floating-badge { display: none; }
    .guide-steps { grid-template-columns: 1fr !important; }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2.2rem; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
