/* ===== VARIABLES ===== */
:root {
    --primary: #1665af;
    --primary-dark: #1373d3;
    --secondary: #2EC4B6;
    --accent: #5ac8fa;
    --light: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #6C757D;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --gradient-1: linear-gradient(135deg, #166fc2 0%, #188fc7 100%);
    --gradient-2: linear-gradient(135deg, #2EC4B6 0%, #38D9A9 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    text-decoration: none;
}

.logo .streaming-text {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo .brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F4F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--light);
    border: 1px solid var(--medium-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge::before {
    content: '🔥';
}

/* ===== CUSTOM COMBO STYLES ===== */
.custom-combo-selector {
    margin: 1rem 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: var(--radius-md);
}

.selector-instruction {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.platform-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns on Desktop */
    gap: 1rem;
    /* Increased gap from 0.5rem */
    padding-right: 5px;
    /* Add a little padding */
}

/* Custom Scrollbar for checkboxes */
.platform-checkboxes::-webkit-scrollbar {
    width: 4px;
}

.platform-checkboxes::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

.platform-option {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: block;
    /* Full width */
}

.platform-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    /* Reduced horizontal padding slightly */
    background-color: white;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    /* Slightly smaller font to fit single line */
    color: var(--text-dark);
    transition: all 0.2s ease;
    white-space: nowrap;
    /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

.platform-option:hover .checkmark {
    border-color: var(--primary);
    background-color: #fff5f5;
}

.platform-option input:checked~.checkmark {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(46, 196, 182, 0.3);
}

.platform-option input:checked~.checkmark::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: white;
    color: var(--secondary);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Improve Savings Visibility - Reverted to standard style but kept margin */
.combo-ultimate .combo-savings {
    color: #0e5e54;
    /* Darker shade of teal/secondary */
    margin-top: 1rem;
    display: block;
    width: 100%;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.nav-links a {
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid #ddd;
    /* More visible border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Stronger shadow */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover,
.nav-links a:active {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 6px 12px rgba(22, 101, 175, 0.4);
    /* Even stronger on hover */
    transform: translateY(-2px);
    border-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--light);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    font-weight: 700;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== SECTIONS =====
#plataformas {
    padding-top: 120px;
} */

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    /* Reduced from 3rem */
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.25rem;
    /* Reduced from 0.75rem */
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== PLATFORMS GRID ===== */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1rem;
}

.platform-card {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--medium-gray);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.platform-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    overflow: hidden;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-info {
    flex: 1;
    min-width: 0;
}

.platform-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.platform-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.platform-bottom {
    margin-top: auto;
}

.platform-actions {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    width: 100%;
}

.platform-card .btn {
    flex: 1;
    justify-content: center;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 0;
    /* Permite que el botón se encoja más allá del contenido si es necesario */
}

/* ===== COMBOS SECTION ===== */
#combos {
    background: var(--light);
    max-width: 100%;
    padding: 5rem 2rem;
}

#combos>* {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.combos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    /* Make the 3rd column (Ultimate) wider */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    /* Align to top so heights don't stretch weirdly if content differs */
}

.combo-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.combo-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 159, 28, 0.05) 100%);
}

.combo-card.featured::before {
    content: '⭐ MÁS POPULAR';
    position: absolute;
    top: 30px;
    right: -45px;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 0;
    width: 200px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.combo-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.combo-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.combo-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.combo-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.combo-price .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.combo-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.combo-includes li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 0.95rem;
}

.combo-includes li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.combo-savings {
    background: rgba(46, 196, 182, 0.15);
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 1.25rem;
    color: #0e5e54;
    font-weight: 600;
    font-size: 0.9rem;
}

.combo-card .btn {
    width: 100%;
    justify-content: center;
}

/* Combo Personalizado - Precio y botón en línea */
.combo-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.combo-price-row .combo-price {
    margin-bottom: 0;
}

.combo-price-row .combo-price .amount {
    font-size: 1.5rem;
}

.combo-card .btn.btn-compact {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    white-space: nowrap;
    width: auto;
    flex-shrink: 0;
}

/* ===== REFERENCIAS SECTION ===== */
.referencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.referencia-card {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.referencia-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.referencia-placeholder {
    width: 100%;
    height: 100px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.referencia-stars {
    color: #2997ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.referencia-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.referencia-author {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-gray);
}

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

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question span:first-child {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Increased to allow longer content */
}

.faq-answer-content {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--light);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--medium-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.85rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the icon */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    /* Remove underline */
    font-size: 1.8rem;
    /* Adjust icon size */
    color: white;
    /* Ensure icon is white */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Remove old mobile menu styles */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    z-index: 1001;
    flex-direction: column;
    padding: 4rem 2rem;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    /* Pill styling */
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    /* Full width for easier tapping */
    text-align: center;
    max-width: 300px;
    /* Prevent too wide on tablets */
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 6px 12px rgba(22, 101, 175, 0.4);
    transform: translateY(-2px);
    border-color: transparent;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    /* Mobile Header & Nav */
    header {
        padding: 0.75rem 1rem;
    }

    nav {
        flex-direction: row;
        /* Keep logo and hamburger in row */
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .nav-links {
        display: none !important;
        /* Hide horizontal links */
    }

    .menu-toggle {
        display: block;
        /* Show hamburger */
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        padding: 1rem;
    }

    .platform-info {
        width: 100%;
    }

    .platform-desc {
        white-space: normal;
    }

    .platform-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }

    .platform-prices {
        justify-content: center;
    }

    .platform-card .btn {
        width: 100%;
        justify-content: center;
    }

    .combos-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .combo-price .amount {
        font-size: 2rem;
    }
}

/* ===== CAROUSEL ===== */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* Wider for desktop */
    margin: 0 auto;
    /* Height will be determined by content/aspect-ratio */
}

.carousel-track-container {
    background: var(--light);
    height: auto;
    /* Remove fixed height */
    aspect-ratio: 1422 / 1024;
    /* Aspect ratio for 3 slides (474*3 / 1024) */
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33.333%;
    /* 3 slides on desktop */
    padding: 0 5px;
    /* Gap between slides */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Changed to cover to fill the "phone screen" */
    border-radius: var(--radius-md);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 2px solid white;
    /* Added white border */
    cursor: pointer;
    font-size: 1.5rem;
    /* Slightly smaller font */
    width: 50px;
    /* Fixed width */
    height: 50px;
    /* Fixed height */
    display: flex;
    /* Use flexbox */
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease;
    padding: 0;
    /* Remove padding */
}

.carousel-button:hover {
    background: var(--primary);
}

.carousel-button--left {
    left: -60px;
}

.carousel-button--right {
    right: -60px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
    margin-top: 1rem;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background: var(--primary);
}

.is-hidden {
    display: none;
}

/* Promo Banner */
.promo-banner {
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.promo-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
}

.promo-banner a:hover {
    text-decoration: none;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.8rem;
        /* Smaller font on mobile */
        padding: 0.5rem;
        line-height: 1.4;
        /* Better line height for wrapping */
    }

    .promo-banner p {
        margin: 0;
        /* Remove default margins */
    }

    .carousel-container {
        max-width: 320px;
    }

    .carousel-track-container {
        height: auto;
        aspect-ratio: 474 / 1024;
    }

    .carousel-button--left {
        left: 10px;
    }

    .carousel-button--right {
        right: 10px;
    }

    .carousel-slide {
        width: 100%;
        padding: 0;
    }

    /* Custom Combo Mobile */
    .platform-checkboxes {
        grid-template-columns: 1fr !important;
        /* Force 1 Column on Mobile */
    }

    .nav-links {
        display: flex;
        gap: 0.5rem;
        /* Reduced gap */
        width: 100%;
        overflow-x: auto;
        padding: 0.5rem;
        /* Reduced padding */
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .nav-links a {
        font-size: 0.8rem;
        /* Slightly smaller font */
        padding: 0.4rem 0.8rem;
        /* Compact padding */
    }
}

/* Scroll Buttons */
.scroll-buttons {
    position: fixed;
    bottom: 100px;
    /* Above WhatsApp button */
    right: 30px;
    /* Centered relative to 55px WhatsApp button (25px + 5px offset) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
    align-items: center;
    /* Ensure buttons are centered in the container */
}

.scroll-btn {
    width: 45px;
    height: 45px;
    background: rgba(2, 138, 206, 0.719);
    /* Light blue transparent */
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 0;
    /* Reset padding */
}

.scroll-btn span {
    display: inline-block;
    /* Fine-tune centering for these specific glyphs */
    margin-left: 2px;
    margin-top: 2px;
}

#scroll-up span {
    transform: rotate(-90deg);
    /* Right -> Up */
    margin-left: 0;
    /* Reset/Adjust for Up arrow */
    margin-top: 0;
    margin-right: 2px;
    /* Push slightly left visually */
}

#scroll-down span {
    transform: rotate(90deg);
    /* Right -> Down */
}

.scroll-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
    /* Scale button, don't rotate it */
    border-color: var(--primary);
}