/* ==============================
   VARIABLES & GLOBALS
   ============================== */
:root {
    --bg-dark: transparent;
    --bg-card: rgba(20, 20, 20, 0.5);
    --bg-card-hover: rgba(20, 20, 20, 0.7);
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --accent: #3B82F6;
    --text-white: #ffffff;
    --text-gray: #e2e8f0;
    --text-dark: #ffffff;
    --danger: #ef4444;

    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-tech: 'Outfit', sans-serif;

    --transition-fast: 0.2s ease-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: #03030d;
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==============================
   UTILITIES & TYPOGRAPHY
   ============================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-md {
    max-width: 800px;
}

.font-montserrat {
    font-family: var(--font-heading);
}

.font-medium {
    font-weight: 500;
}

.text-gradient {
    /* Transformado de gradiente para um Azul Forte (Cyan Neon) sólido para estourar no fundo roxo */
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.text-white {
    color: var(--text-white);
}

.text-gray {
    color: var(--text-gray);
}

.text-dark {
    color: var(--text-dark);
}

.text-green-accent {
    color: var(--primary);
}

.text-red {
    color: var(--danger);
}

.text-strike {
    text-decoration: line-through;
    color: var(--text-gray);
    opacity: 0.6;
}

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

.text-left {
    text-align: left;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
}

.sm-text {
    font-size: 0.875rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.align-center {
    display: flex;
    align-items: center;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.inline-block {
    display: inline-block;
}

.blur-backdrop {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

.shadow-neon {
    box-shadow: var(--neon-shadow);
}

/* ==============================
   GRID LAYOUTS
   ============================== */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {

    .grid-2-col,
    .grid-4-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) and (min-width: 600px) {
    .grid-4-col {
        grid-template-columns: 1fr 1fr;
    }
}

.section {
    padding: 6rem 0;
}

/* Dark Features Section */
.features-modern {
    position: relative;
    background-color: #050505;
    padding: 8rem 0;
    overflow: hidden;
}

.features-modern .section-title {
    color: #ffffff;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.features-modern .section-subtitle {
    color: #a0aec0;
}

.glow-edge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 800px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.left-glow {
    left: -150px;
}

.right-glow {
    right: -150px;
}

.modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    z-index: 2;
    position: relative;
}

@media (max-width: 992px) {
    .modern-grid {
        grid-template-columns: 1fr;
    }
}

.dark-card {
    background: linear-gradient(145deg, #121215, #0a0a0c);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.dark-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.light-dark-card {
    background: linear-gradient(145deg, #222228, #18181c);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.light-dark-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.border-bottom-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #e2e8f0;
}

.comparison-list-modern li i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.btn-primary.btn-glow:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.hover-scale {
    transition: var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* ==============================
   COMPONENTS & SECTIONS
   ============================== */

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
}

.logo-item {
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: #e0e0e0;
}

.logo-item strong {
    font-size: 1.2rem;
    display: block;
}

.logo-divider {
    height: 40px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #03030d;
    background-image: url('/img/header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 3, 13, 0.95) 0%, rgba(3, 3, 13, 0.6) 100%);
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-learn-more {
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    position: relative;
    transition: var(--transition-base);
}

.btn-learn-more:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .hero-container {
        text-align: center;
        align-items: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        text-align: center !important;
    }

    .hero-description {
        text-align: center !important;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-bg-glow {
        display: none;
    }
}

/* Floating Elements */
.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(59, 130, 246, 0.2);
    z-index: 3;
}

.icon-chart {
    top: 20%;
    right: 10%;
}

.icon-pie {
    bottom: 30%;
    right: 5%;
    color: #00d4ff;
}

.icon-trend {
    top: 40%;
    right: 45%;
    color: #3b82f6;
}

.icon-currency {
    bottom: 15%;
    right: 40%;
    font-size: 1.8rem;
}

.float-anim-1 {
    animation: floatAlt 5s ease-in-out infinite;
}

.float-anim-2 {
    animation: floatAlt 6s ease-in-out infinite 1s;
}

.float-anim-3 {
    animation: floatAlt 7s ease-in-out infinite 2s;
}

.float-anim-4 {
    animation: floatAlt 5.5s ease-in-out infinite 1.5s;
}

@keyframes floatAlt {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.tech-animated-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-tech);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #fff;
}

.tech-animated-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    /* Aumentando para 6s totais para a transição ficar suave como seda */
    animation: diagonalShine 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes diagonalShine {
    0% {
        left: -150%;
    }

    40% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.tech-animated-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    color: #fff;
}

.icon-slide {
    transition: transform 0.3s ease;
}

.tech-animated-btn:hover .icon-slide {
    transform: translateX(8px);
}

.animate-float {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.max-w-md {
    max-width: 450px !important;
}

/* Features Focus 4 Cards */
.feature-card {
    padding: 2rem;
    text-align: left;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05);
}

.feature-card .icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-flex;
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-top: 3rem;
}

.comparison-card {
    padding: 3rem;
    position: relative;
    background: var(--bg-card);
}

.comparison-card.card-accent {
    background: rgba(59, 130, 246, 0.03);
    border-left: 1px solid var(--glass-border);
}

.card-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #cecece;
}

.comparison-list li i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Video VSL */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    margin-top: 2rem;
}

.video-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), transparent);
    z-index: -1;
    border-radius: 22px;
    padding: 2px;
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-base);
}

.video-container:hover .video-thumbnail {
    opacity: 0.6;
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-base);
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Process Section */
.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--glass-border) 0, var(--glass-border) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

@media (max-width: 992px) {
    .process-grid::before {
        display: none;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
    padding: 10px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--bg-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-title {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Testimonials Carousel */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: hidden;
    padding: 2rem 0;
    max-width: 1000px;
    scroll-behavior: smooth;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.card-inner {
    padding: 2px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    padding-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--bg-card), var(--bg-dark));
    border: 1px solid var(--glass-border);
}

.center-card .card-inner {
    transform: scale(1.05);
    /* slightly bigger */
    border-color: rgba(59, 130, 246, 0.3);
}

.t-image-wrapper {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.t-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.center-card .t-image-wrapper img,
.card-inner:hover .t-image-wrapper img {
    filter: grayscale(0%);
}

.badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.t-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.carousel-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Benefits Checklist */
.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.benefits-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.check-list li:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .benefits-two-cols {
        grid-template-columns: 1fr;
    }
}

/* Presenter Banner (Green) */
.bg-green-solid {
    background: var(--accent);
    color: var(--text-dark);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.huge-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 25vw;
    font-family: var(--font-heading);
    color: rgba(0, 0, 0, 0.05);
    /* very faint dark text */
    white-space: nowrap;
    font-weight: 900;
    z-index: 1;
}

.marquee-scroll {
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, -50%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

.presenter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.p-image {
    max-height: 500px;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent);
}

@media (max-width: 768px) {
    .presenter-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 0;
    }

    .presenter-image-container {
        display: flex;
        justify-content: center;
    }
}

/* Pricing Section */
.pricing {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, var(--bg-dark) 70%);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.badge-tag {
    display: inline-block;
    padding: 0.2rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.price-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
}

.currency {
    color: var(--text-gray);
    font-size: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.period {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.payment-methods span {
    font-size: 0.8rem;
    margin-left: 5px;
}

.security-info {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* FAQ */
.faq {
    position: relative;
}

.faq-bg {
    font-size: 18vw;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(59, 130, 246, 0.05);
    /* Faint green */
    line-height: 0.8;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.accordion {
    position: relative;
    z-index: 10;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.acc-icon {
    color: var(--primary);
    transition: var(--transition-fast);
}

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

.accordion-item.active .accordion-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content {
    padding: 1.5rem;
    color: var(--text-gray);
    font-size: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    background: var(--bg-card);
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: var(--transition-fast);
}

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

/* Animations */
.pulse-anim {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Globs */
.glow-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.top-left {
    top: -100px;
    left: -100px;
}

.bottom-right {
    bottom: -100px;
    right: -100px;
}

.bg-blob.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 500px;
}

/* ==============================
   RESPONSIVE POLISH
   ============================== */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .features-modern {
        padding: 4rem 0;
    }

    .dark-card,
    .light-dark-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .faq-bg {
        font-size: 40vw;
    }

    .price {
        font-size: 2.2rem;
    }

    .huge-bg-text {
        font-size: 300vw;
    }

    .tech-animated-btn {
        padding: 1rem 1.5rem !important;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .btn-learn-more {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        width: 100%;
        gap: 1rem;
    }

    .comparison-list-modern li {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-content {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .header {
        padding: 0 10px;
    }
}

/* ==============================
   WHATSAPP FLOATING BUTTON
   ============================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.pulse-anim-wa {
    animation: bounceWa 2.5s infinite ease-in-out;
}

@keyframes bounceWa {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #222;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #222;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}