:root {
    --bg: #030305;
    --bg-accent: #0a0a0e;
    --accent: #10b981;
    --accent-dark: #059669;
    --accent-glow: rgba(16, 185, 129, 0.4);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --glass: rgba(18, 18, 24, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --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-color: 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(16, 185, 129, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(3, 3, 5, 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(3, 3, 5, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    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: var(--bg);
    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);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
}

.logo-text span {
    color: var(--accent);
}

.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);
}

/* 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(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 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(16, 185, 129, 0.2);
}

.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, #34d399 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.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-dark) 100%);
    color: #000000;
    font-weight: 800;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px -10px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px var(--accent-glow);
    background: var(--accent-dark);
}

.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: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.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(135deg, rgba(20, 20, 28, 0.8) 0%, rgba(12, 12, 18, 0.9) 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(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(34, 197, 94, 0.4);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 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);
}

.icon-box i, .icon-box svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #10b981 !important;
    color: #10b981 !important;
    stroke-width: 2.5px !important;
    display: block !important;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--accent);
    color: #000000;
    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: #000000 !important;
    color: #000000 !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: 100px 0;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.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(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.price-card {
    background: #08080c;
    padding: 2.25rem 1.75rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    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);
    will-change: transform;
    transform: translateZ(0);
}

.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, #0d1a14 0%, #08080c 100%);
    border: 2px solid var(--accent);
    transform: scale(1.02) translateZ(0);
    z-index: 10;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px -5px rgba(16, 185, 129, 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.25rem; font-weight: 800; color: var(--text); margin-bottom: 0.15rem;
}

.plan-subtitle {
    font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; font-weight: 500;
}

.seat-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.85rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    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.8rem; font-weight: 900; margin-bottom: 1.25rem; 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: 1rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; letter-spacing: 0;
}

.perks {
    list-style: none; margin-bottom: 2.5rem; flex-grow: 1; text-align: left;
}

.perks li {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.9rem; 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: 90px 0;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.bento-card {
    background: #08080c;
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    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);
}

.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: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    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.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.bento-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
}

.bento-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.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(16, 185, 129, 0.08) 0%, rgba(3, 3, 5, 0.6) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    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(16, 185, 129, 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 Update */
@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) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
        text-align: center;
    }
    .hero-content h1 { font-size: 3.5rem; }
    .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; }
}

@media (max-width: 768px) {
    .pricing-grid.grid-4, .bento-grid {
        grid-template-columns: 1fr; /* 1 columna en vertical para móviles */
        gap: 1.5rem;
    }
    .bento-card {
        padding: 2rem 1.5rem;
    }
    .price-card {
        padding: 2.5rem 1.5rem;
    }
    .price-card .amount {
        font-size: 2.75rem; /* Tamaño más compacto para que no se desborde */
        margin-bottom: 1rem;
    }
    .price-card .amount .period-label {
        font-size: 1rem;
    }
    .price-card .tier {
        font-size: 1.5rem;
    }
    .seat-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    .perks li {
        font-size: 0.9rem;
    }
}
