/**
 * Estilos da Página de Planos
 * RFC Automações Theme
 */

:root {
    --dark-bg: #000000;
    --green-neon: #00ff41;
    --gold-cta: #F5C100;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --border-subtle: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Animated Background with Subtle Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Subtle noise texture */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
        /* Gradient overlays */
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 193, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(0, 255, 65, 0.05) 0%, transparent 40%),
        /* Base dark background with subtle pattern */
        linear-gradient(45deg, #000000 25%, transparent 25%), 
        linear-gradient(-45deg, #000000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000000 75%), 
        linear-gradient(-45deg, transparent 75%, #000000 75%);
    background-size: 
        256px 256px,
        100% 100%,
        100% 100%,
        100% 100%,
        20px 20px,
        20px 20px,
        20px 20px,
        20px 20px;
    background-position: 
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        10px 10px,
        10px 10px;
    animation: backgroundShift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Plans Hero Section */
.plans-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.plans-hero-section::before,
.plans-hero-section::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--green-neon);
    border-radius: 50%;
    opacity: 0;
    box-shadow:
        0 0 20px rgba(0, 255, 65, 0.5),
        0 0 40px rgba(0, 255, 65, 0.3);
    animation: particleFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.plans-hero-section::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.plans-hero-section::after {
    top: 60%;
    left: 80%;
    animation-delay: 4s;
    background: var(--gold-cta);
    box-shadow:
        0 0 20px rgba(245, 193, 0, 0.5),
        0 0 40px rgba(245, 193, 0, 0.3);
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translate(50px, -100px);
    }
    90% {
        opacity: 0.4;
    }
}

/* Animations for Hero Section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    0%, 50% {
        border-right-color: var(--green-neon);
    }
    51%, 100% {
        border-right-color: transparent;
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Simple Animations for Hero Section */
.hero-tagline {
    opacity: 1 !important; /* Garante que o mini título não suma */
    transform: translateY(0);
}

.hero-tagline:not(.visible),
#hero-title:not(.visible),
.hero-description:not(.visible) {
    opacity: 0;
    transform: translateY(20px);
}

.hero-tagline.visible,
#hero-title.visible,
.hero-description.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-neon);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    background: linear-gradient(45deg, #00ff41, #00ff88, #00ff41);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
}

.plans-hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 32px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 255, 65, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 65, 0.1), transparent 50%);
    backdrop-filter: blur(10px);
}

.hero-image:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
        0 35px 70px rgba(0, 255, 65, 0.3),
        0 0 0 1px rgba(0, 255, 65, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--green-neon) 50%, transparent 100%);
    margin: 0 auto;
    max-width: 60%;
    opacity: 0.3;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--green-neon);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 12px var(--green-neon);
    animation: dotMove 3s ease-in-out infinite;
}

@keyframes dotMove {
    0%, 100% { left: 0%; }
    50% { left: calc(100% - 8px); }
}

/* Problem Section */
.plans-problem-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 100px 0;
    position: relative;
}

.plans-problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(0, 255, 65, 0.02) 25%, 
            transparent 50%, 
            rgba(245, 193, 0, 0.01) 75%, 
            transparent 100%);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.plans-problem-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.problem-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 65, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--green-neon);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.15);
}

.problem-item:hover::after {
    opacity: 1;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.problem-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Solution Section */
.plans-solution-section {
    text-align: center;
    padding: 100px 0;
}

.plans-solution-section h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.plans-solution-section .highlight {
    color: var(--green-neon);
}

.solution-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 80px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px 36px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    align-items: center;
}

.solution-feature::before {
    content: attr(data-number);
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-neon), rgba(0, 255, 65, 0.5));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--dark-bg);
    transition: all 0.4s ease;
}

.solution-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(0, 255, 65, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--green-neon);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.15);
}

.solution-feature:hover::before {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 255, 65, 0.4);
}

.solution-feature:hover::after {
    opacity: 1;
}

.solution-feature-content {
    padding-left: 56px;
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
}

.solution-visual {
    max-width: 400px;
    margin: 80px auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 9 / 16;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.video-thumbnail:hover .thumbnail-image {
    transform: scale(1.05);
}

.play-button {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 255, 65, 0.5));
}

.video-cta-text {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    padding: 0 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Video Modal Styles */
.video-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    padding: 0;
    background: #000;
    border: 2px solid var(--green-neon);
}

.video-modal-content {
    aspect-ratio: 9 / 16;
    width: auto;
    height: 90vh;
    max-height: 900px;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* About Section */
.plans-about-section {
    padding: 80px 0;
}

.about-card {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.08) 0%, rgba(245, 193, 0, 0.06) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
}

.about-card h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.about-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-badge {
    background: rgba(0, 255, 65, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.about-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-badge:hover {
    background: rgba(0, 255, 65, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 255, 65, 0.2);
    border-color: rgba(0, 255, 65, 0.4);
}

.about-badge:hover::before {
    transform: translateX(100%);
}

/* Social Proof Section */
.plans-social-proof-section {
    text-align: center;
    padding: 100px 0;
}

.plans-social-proof-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-proof-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proof-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.proof-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.proof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 65, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.proof-card:hover {
    border-color: var(--green-neon);
    box-shadow: 0 25px 50px rgba(0, 255, 65, 0.15);
}

.proof-card:hover::before {
    opacity: 1;
}

.proof-image-container {
    width: 100%;
    position: relative;
    overflow: visible;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 16px;
    line-height: 0;
}

.proof-client-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.proof-card:hover .proof-client-image {
    transform: scale(1.08);
    z-index: 10;
    filter: drop-shadow(0 8px 30px rgba(0, 255, 65, 0.4));
}

/* Carousel Navigation */
.carousel-nav {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 65, 0.2);
    border: 2px solid var(--green-neon);
    color: var(--green-neon);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(0, 255, 65, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--green-neon);
    border-color: var(--green-neon);
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}

.dot:hover {
    background: rgba(0, 255, 65, 0.5);
}

/* Plans Pricing Section */
.plans-pricing-section {
    padding: 120px 0;
}

.plans-pricing-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 800;
}

.plans-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 80px;
    font-size: 1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 850px;
    width: 100%;
    max-width: 380px;
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--green-neon), var(--gold-cta));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.plan-card:hover {
    border-color: var(--green-neon);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 255, 65, 0.2);
}

.plan-card:hover::before {
    opacity: 0.3;
}

.plan-card.featured {
    border: 1px solid var(--gold-cta);
    background: rgba(245, 193, 0, 0.05);
}

.plan-card.featured::before {
    opacity: 0.2;
}

.plan-card.featured:hover::before {
    opacity: 0.4;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-neon);
    color: var(--dark-bg);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card:nth-child(3) .plan-badge {
    background: var(--gold-cta);
}

.plan-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-neon);
    margin-bottom: 8px;
}

.plan-price-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
}

.pro-features li {
    font-size: 0.85rem !important;
    padding: 8px 0 !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-features li::before {
    flex-shrink: 0;
    margin-right: 10px !important;
}

.plan-features li::before {
    content: '✓';
    color: var(--green-neon);
    font-weight: bold;
    margin-right: 12px;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--green-neon);
    color: var(--green-neon);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    background: var(--green-neon);
    color: var(--dark-bg);
}

.plan-card.featured .plan-cta {
    background: linear-gradient(135deg, rgba(245, 193, 0, 0.15), rgba(245, 193, 0, 0.05));
    color: var(--gold-cta);
    border-color: var(--gold-cta);
    font-size: 0.875rem;
    padding: 10px 25px;
}

.plan-card.featured .plan-cta:hover {
    background: linear-gradient(135deg, rgba(245, 193, 0, 0.25), rgba(245, 193, 0, 0.15));
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.plans-faq-section {
    padding: 100px 0;
}

.faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 80px 60px;
}

.faq-card h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 24px;
    padding: 32px 32px 32px 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-neon), var(--gold-cta));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 50%, rgba(0, 255, 65, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 65, 0.3);
    transform: translateX(8px);
    box-shadow: -8px 0 24px rgba(0, 255, 65, 0.1);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover::after {
    opacity: 1;
}

.faq-question-plans {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question-plans {
    color: var(--green-neon);
}

.faq-answer-plans {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section {
    text-align: center;
    margin: 60px auto 0;
    max-width: 400px;
}

.faq-cta-final {
    text-align: center;
    margin-top: 60px;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    z-index: 1000;
}

.mobile-cta-bar .cta-button {
    width: 100%;
    text-align: center;
}

/* Popup Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--green-neon);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0, 255, 65, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 255, 65, 0.2);
    border: 2px solid var(--green-neon);
    color: var(--green-neon) !important;
    font-size: 1.5rem;
    cursor: pointer !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 10000 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    color: var(--green-neon);
    background: rgba(0, 255, 65, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-primary);
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: center;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-option-btn {
    display: block;
    width: 100%;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-subtle);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.modal-option-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-option-btn:hover {
    border-color: var(--green-neon);
    background: rgba(0, 255, 65, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 255, 65, 0.2);
}

.modal-option-btn:hover::before {
    opacity: 1;
}

.modal-option-btn .option-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-option-btn .option-value {
    display: block;
    font-size: 1.5rem;
    color: var(--green-neon);
    font-weight: 700;
}

.modal-option-btn.lifetime {
    border-color: var(--gold-cta);
}

.modal-option-btn.lifetime:hover {
    border-color: var(--gold-cta);
    background: rgba(245, 193, 0, 0.08);
    box-shadow: 0 15px 30px rgba(245, 193, 0, 0.2);
}

.modal-option-btn.lifetime .option-value {
    color: var(--gold-cta);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plans-hero-section h1 {
        font-size: 2.5rem;
    }

    .problem-grid,
    .solution-grid,
    .about-features,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plans-hero-section,
    .plans-problem-section,
    .plans-solution-section,
    .plans-about-section,
    .plans-social-proof-section,
    .plans-pricing-section,
    .plans-faq-section {
        padding: 80px 0;
    }

    .mobile-cta-bar {
        display: block;
    }

    .about-card,
    .faq-card {
        padding: 60px 32px;
    }

    /* Carousel for Mobile */
    .proof-carousel {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden;
    }

    .proof-card {
        display: none;
    }

    .proof-card.active {
        display: block;
    }

    .proof-image-container {
        height: 70vh;
        min-height: 500px;
    }

    .proof-client-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .proof-card:hover .proof-client-image {
        transform: none;
    }

    .carousel-nav {
        display: block;
    }

    .carousel-dots {
        display: flex;
    }

    /* Video Modal Mobile */
    .video-modal-content {
        width: 95vw;
        height: auto;
        aspect-ratio: 9 / 16;
    }

    .solution-visual {
        max-width: 100%;
    }
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(0, 255, 65, 0.08);
    border: 2px solid var(--green-neon);
    color: var(--green-neon);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 25px rgba(0, 255, 65, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: rgba(0, 255, 65, 0.2);
    color: var(--dark-bg) !important;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 255, 65, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
    .plans-hero-section h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .plans-hero-section h1 {
        font-size: 2.25rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image {
        height: 350px !important;
        border-radius: 24px;
    }
    
    /* Plan Cards Mobile */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .plan-card {
        max-width: 100%;
        height: auto;
        min-height: 500px;
    }

    .pro-features li {
        font-size: 0.8rem !important;
        white-space: normal !important;
        text-overflow: clip;
    }
}

/* Desktop Hover Effects for Testimonials */
@media (min-width: 969px) {
    .proof-card {
        transform-style: preserve-3d;
    }

    .proof-card:hover {
        z-index: 20;
        transform: translateY(-8px);
    }
    
    .proof-image-container {
        overflow: visible;
    }
}
