:root {
    --primary: #00A8E8;
    --primary-dark: #0086B8;
    --accent: #7ED321;
    --dark-bg: #0B0F19;
    --dark-section: #111827;
    --text-white: #F9FAFB;
    --text-gray: #9CA3AF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-footer: rgba(17, 24, 39, 0.8);
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 8rem 0;
}

.alternate-bg {
    background-color: var(--dark-section);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.glass-border {
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 86px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 168, 232, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 168, 232, 0.1);
    border: 1px solid rgba(0, 168, 232, 0.2);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-peru {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-peru i {
    color: #ff4d4d; /* Subtle red for the flag icon */
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-visual {
    position: relative;
}

.dashboard-preview-container {
    position: relative;
    z-index: 2;
}

.dashboard-img {
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    z-index: 3;
}

.badge-top {
    top: -20px;
    right: -20px;
    border: 1px solid var(--accent);
}

.badge-top .lucide {
    color: var(--accent);
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(0, 168, 232, 0.15), transparent 70%);
    z-index: 1;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: inherit;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: inherit;
}

.section-header.text-center {
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box .lucide {
    width: 30px;
    height: 30px;
}

.icon-box.blue {
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary);
}

.icon-box.green {
    background: rgba(126, 211, 33, 0.1);
    color: var(--accent);
}

.icon-box.cyan {
    background: rgba(0, 210, 255, 0.1);
    color: #00D2FF;
}

.icon-box.lime {
    background: rgba(191, 255, 0, 0.1);
    color: #BFFF00;
}

.icon-box.orange {
    background: rgba(255, 122, 0, 0.1);
    color: #FF7A00;
}

.icon-box.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.rounded-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.text-primary {
    color: var(--primary);
}

/* App Section */
.app-features {
    margin-top: 3rem;
}

.app-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-feature-item .lucide {
    color: var(--accent);
    flex-shrink: 0;
}

.app-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.app-feature-item p {
    color: var(--text-gray);
}

.app-img {
    width: 100%;
    max-width: 480px; max-height: 700px; object-fit: contain;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 168, 232, 0.2));
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card-v2 {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(0, 168, 232, 0.05); /* Very subtle tint */
}

.pricing-card-v2.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.plan-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
}

.plan-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.plan-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(0, 168, 232, 0.1) 0%, rgba(0, 168, 232, 0.2) 100%);
    backdrop-filter: blur(10px);
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.plan-features li .lucide {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.plan-price-block {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-term {
    display: block;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.w-full {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-section);
    padding: 6rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.logo-footer {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.logo-footer:hover {
    opacity: 0.8;
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a .lucide {
    width: 20px;
    height: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-contact p .lucide {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .dashboard-img {
        transform: none;
    }

    .grid-2,
    .grid-2-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visual-content {
        order: 2;
    }

    .text-content {
        order: 1;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .app-section .visual-content {
        order: 2;
    }

    .app-section .text-content {
        order: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* WhatsApp Float styles consolidated at the end of the file */

/* Reclamaciones Badge */
.reclamaciones-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    max-width: 220px;
    margin-top: 1rem;
}

.reclamaciones-badge:hover {
    background: rgba(0, 168, 232, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.reclamaciones-badge .lucide {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.reclamaciones-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.reclamaciones-badge span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.reclamaciones-badge strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Single Plan Styles */
.pricing-grid.single-plan {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 4rem auto 0;
}

.pricing-card-v2.unlimited {
    width: 100%;
    transform: scale(1.02);
    border: 1px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 168, 232, 0.2);
}

.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 600;
}

.promo-expiry {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-extra-note {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    text-align: left;
}

.plan-extra-note .lucide {
    color: var(--primary);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.plan-extra-note p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.plan-title.text-gradient {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
}

.footer-centered-legal {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.footer-centered-legal .footer-legal-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links a {
    color: #ffffff !important;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    display: block;
}

/* Button Pulse Animation */
.btn-pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 168, 232, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 232, 0);
    }
}

/* WhatsApp Floating Container & Tooltip System */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.whatsapp-container * {
    pointer-events: auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: wa-pulse 2s infinite;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whatsapp-float span {
    display: inline-block;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background: #128C7E;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Interactive WhatsApp Tooltip */
.whatsapp-tooltip {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(37, 211, 102, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    text-align: left;
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-tooltip-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.whatsapp-tooltip-close:hover {
    color: white;
}

.tooltip-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #25D366;
    background: rgba(37, 211, 102, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-tooltip p {
    font-size: 0.85rem;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
}

.whatsapp-tooltip strong {
    color: #25D366;
}

/* Tooltip Arrow pointing down to the float button */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 35px;
    width: 10px;
    height: 10px;
    background: rgba(17, 24, 39, 0.95);
    border-right: 1px solid rgba(37, 211, 102, 0.3);
    border-bottom: 1px solid rgba(37, 211, 102, 0.3);
    transform: rotate(45deg);
}

/* Responsive Styles for WhatsApp Container & Tooltip */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    .whatsapp-float {
        padding: 10px 15px;
    }
    .whatsapp-float span {
        font-size: 0.8rem;
    }
    .whatsapp-tooltip {
        max-width: 230px;
        padding: 0.8rem 1rem;
    }
    .whatsapp-tooltip p {
        font-size: 0.8rem;
    }
    .whatsapp-tooltip::after {
        right: 25px;
    }
}

/* Promo Bar at the top of Navbar */
.promo-bar {
    background: linear-gradient(90deg, #1f2937, #111827);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    font-size: 0.85rem;
    font-weight: 500;
    width: 100%;
    z-index: 1001;
    transition: var(--transition);
}

.promo-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.btn-promo-action {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-promo-action:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.4);
    transform: translateY(-1px);
}

.promo-bar-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 15px;
    transition: var(--transition);
}

.promo-bar-close:hover {
    color: white;
}

/* Pricing Actions layout */
.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 168, 232, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    pointer-events: none;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Toggle Active State */
.faq-item.active {
    border-color: var(--primary);
    background: rgba(0, 168, 232, 0.03);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .promo-bar {
        padding: 8px 30px 8px 10px;
        font-size: 0.75rem;
    }
    .promo-bar-content {
        gap: 8px;
    }
    .btn-promo-action {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    .faq-answer-inner {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.85rem;
    }
}
