:root {
    /* Cores Premium Dark Theme Base */
    --bg-base: #09090b;
    /* Zinc 950 */
    --bg-elevated: #111114;
    /* Elevated subtle */
    --bg-panel: rgba(255, 255, 255, 0.03);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);

    /* Sombras e Efeitos */
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
    --shadow-glow-red: 0 0 30px rgba(239, 68, 68, 0.3);
    --glass-blur: blur(16px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Utilitários Globais */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Efeitos de Glow no Fundo */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(9, 9, 11, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
    max-width: 100vw;
}

.bg-glow.top-left {
    top: -200px;
    left: -200px;
}

.bg-glow.bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(9, 9, 11, 0) 70%);
}

.bg-glow.left-center {
    top: 50%;
    left: -300px;
    transform: translateY(-50%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
}

/* Header Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-subtle);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.btn-primary-outline {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary-outline:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.8);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Botões Globais */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}

.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-panel);
    margin-bottom: 2rem;
    backdrop-filter: var(--glass-blur);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.pulse-dot.red {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    backdrop-filter: var(--glass-blur);
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}


/* Common Sections */
.section {
    padding: 6rem 0;
}

.bg-elevated {
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-header:not(.text-center) .section-subtitle {
    margin-inline: 0;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(220px, auto);
}

.bento-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.bento-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.col-span-2 {
    grid-column: span 2;
}

.flex-row-sm {
    display: flex;
    align-items: center;
}

.bento-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-icon.gradient-primary {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.bento-icon.gradient-secondary {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.bento-icon.gradient-gold {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bento-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(99, 102, 241, 0.2);
    filter: blur(50px);
    border-radius: 50%;
}

/* Carousels */
.carousel-section {
    margin-bottom: 3.5rem;
}

.carousel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.carousel-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.carousel-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: rgba(239, 68, 68, 0.05);
}

.text-glow-red {
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* The container needs to cut off the scrollbar but let cards expand if hovered slightly, though standard flex overflow works 
       We will completely hide scrollbar but allow touch scroll */
.carousel-container {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 10px 0;
    /* space for box shadows */
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: 0 1rem;
}

/* Animação base para o carrossel infinito */
.carousel-track.animated {
    animation: scrollCarousel 40s linear infinite;
}

.carousel-track.animated:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }

    /* -50% assumes we duplicated exactly once */
}

/* General Cards injected by JS */
.movie-card {
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
}

.movie-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* Movie specific padding and sizes */
.align-movies .movie-card {
    width: 200px;
    aspect-ratio: 2/3;
    display: flex;
    flex-direction: column;
}

.align-movies .movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.align-movies .movie-card:hover img {
    opacity: 0.8;
}

.movie-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 10px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Passos */
.steps-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: center;
}

.step-card {
    flex: 1;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    position: relative;
    background: transparent;
    border: none;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    opacity: 0.15;
    font-family: 'Outfit';
    margin-bottom: 0.5rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: -1rem 0;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}

/* Pricing Section - Neon Blue Theme */
.text-blue-neon {
    color: #0d6efd;
    text-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
}

.bg-glow-blue {
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(9, 9, 11, 0) 70%) !important;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.promo-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.plan-card {
    background: rgba(17, 17, 20, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
}

.plan-card.popular {
    border-color: rgba(13, 110, 253, 0.5);
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.08) 0%, rgba(17, 17, 20, 0.8) 100%);
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.1);
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
    white-space: nowrap;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.plan-price-currency {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.plan-price-value {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Outfit';
    color: #fff;
    line-height: 1;
}

.plan-price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    align-self: flex-end;
    margin-bottom: 0.5rem;
    margin-left: 0.2rem;
}

.plan-features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
    text-align: left;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plan-features-list svg {
    color: #0d6efd;
    flex-shrink: 0;
}

.btn-blue {
    background: #0d6efd !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3) !important;
}

.btn-blue:hover {
    background: #0b5ed7 !important;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.6) !important;
    transform: translateY(-2px);
}

.promo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-item:last-child {
    border-bottom: none;
}

.promo-item-name {
    font-weight: 600;
    color: var(--text-secondary);
}

.promo-item-price {
    font-family: 'Outfit';
    font-weight: 800;
    color: #0d6efd;
    font-size: 1.1rem;
}

.features-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-pill svg {
    color: #0d6efd;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-plans-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .features-bar {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .plan-card {
        padding: 2rem 1.2rem;
    }

    .plan-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Glass Panel do Registro */
.glass-panel {
    background: rgba(17, 17, 20, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    overflow: hidden;
}

.register-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.register-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.text-success {
    color: #10b981;
}

.safe-checkout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

/* Formulário Dark Elegante */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row.split {
    flex-direction: row;
    gap: 1rem;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-field input,
.input-field select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.input-field input:focus,
.input-field select:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.input-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.input-field select option {
    background: var(--bg-elevated);
    color: #fff;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0;
    background: var(--bg-base);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .col-span-2 {
        grid-column: span 1;
    }

    .glass-panel {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .hidden-sm {
        display: none;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border-subtle);
        flex-direction: column;
        padding: 1.5rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.3s;
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu-toggle {
        display: flex;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow,
    .hidden-mobile {
        display: none;
    }

    .form-row.split {
        flex-direction: column;
    }

    .movies-wrapper .carousel-track {
        padding: 0 1rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* === FIX MOBILE OVERFLOW === */
    .bg-glow {
        width: 300px;
        height: 300px;
    }

    .section {
        padding: 4rem 0;
        overflow-x: hidden;
    }

    .section-title {
        font-size: 1.8rem;
        word-break: break-word;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .glass-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        border-radius: 20px;
    }

    .register-title {
        font-size: 1.8rem;
    }

    .carousel-container {
        max-width: 100vw;
    }

    .carousel-track {
        padding: 0 0.5rem;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        margin-bottom: 2.5rem;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .stat-item strong {
        font-size: 1.5rem;
    }

    .bento-card {
        padding: 1.8rem;
    }

    .promo-plans-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .feature-pill {
        font-size: 0.85rem;
    }

    .benefit-list li {
        font-size: 0.85rem;
    }

    .safe-checkout {
        font-size: 0.8rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .header-container {
        height: 65px;
    }

    .footer {
        padding: 2rem 0;
    }
}