:root {
    --primary: #FF1E1E;
    --primary-dark: #8B0000;
    --secondary: #0A0A0A;
    --accent: #FF5E5E;
    --bg-dark: #000000;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 30, 30, 0.15);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600&display=swap');

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 80px;
    height: auto;
    margin-bottom: 2rem;
    animation: logo-pulse 2s infinite ease-in-out;
}

.loading-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: loading-fill 1.5s ease-in-out forwards;
}

.loading-text {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
    animation: text-blink 1.5s infinite;
}

@keyframes logo-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(255, 30, 30, 0.4));
    }
}

@keyframes loading-fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes text-blink {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

span {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Header / Nav --- */
header {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.6;
}

nav ul li a:hover {
    color: var(--primary);
    opacity: 1;
    letter-spacing: 3px;
}

.cta-mini {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 30, 30, 0.3);
    border-radius: 2px;
    font-weight: 400;
}

.cta-mini:hover {
    background: var(--primary);
    color: white !important;
}

/* --- Hero --- */
.hero {
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 30, 30, 0.15) 0%, rgba(0, 0, 0, 1) 60%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    /* Center content */
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    /* Smaller size */
    margin: 2rem 0;
    line-height: 1.2;
    font-weight: 100;
    text-align: center;
}

.hero h1 span {
    font-weight: 400;
}

.hero-subtext {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    /* Reduced margin */
    font-weight: 200;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    /* Center buttons */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.1rem 2.5rem;
    border-radius: 60px;
    /* Pill shape from photo */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: none;
    /* Modern look */
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(255, 30, 30, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 30, 30, 0.4);
    filter: brightness(1.2);
}

.btn-outline {
    border: 1.5px solid #fff;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* --- Stats --- */
.stats {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 30, 30, 0.02);
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* --- Solution --- */
.solution {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.solution-card {
    background: var(--glass-bg);
    padding: 3rem 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3.5rem;
    /* Larger icons for the cards */
    margin-bottom: 2rem;
    color: var(--primary);
}

.solution-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.solution-card p {
    color: var(--text-muted);
}

.solution-details {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 30, 30, 0.1), transparent);
    border-radius: 12px;
}

.solution-details ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .solution-details ul {
        grid-template-columns: 1fr;
    }
}

.solution-details ul li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Investment --- */
.investment {
    padding: 3rem 0;
}

.investment-box {
    background: linear-gradient(90deg, #111 0%, #000 100%);
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

@media (max-width: 992px) {
    .investment-box {
        flex-direction: column;
        text-align: center;
    }
}

.investment-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.investment-left p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-box {
    display: flex;
    flex-direction: column;
    text-align: right;
}

@media (max-width: 992px) {
    .price-box {
        text-align: center;
    }
}

.price-from {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.price-value {
    font-size: 4.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-scope {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.guarantee {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* --- Testimonials Full-Width Carousel --- */
.testimonials {
    padding: 5rem 0;
    background: transparent;
    overflow: hidden;
    width: 100%;
}

.testimonial-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    width: max-content;
    animation: scroll-linear 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 500px;
    /* Much wider cards */
    max-width: 600px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--primary);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes scroll-linear {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 85vw;
        padding: 2rem;
    }
}

@media (max-width: 1200px) {
    .testimonial-card {
        min-width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 20px);
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: calc(100% - 20px);
    }
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    /* Much bigger stars */
    margin-bottom: 2.5rem;
    display: flex;
    gap: 10px;
}

.testimonial-card p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.5;
}

.testigo .name {
    display: block;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
}

.testigo .position {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
    letter-spacing: 2px;
}

.trustpilot-footer {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trustpilot-footer i {
    color: #00b67a;
    font-size: 1rem;
}

.trustpilot-footer i {
    color: #45D184;
    /* Trustpilot Green */
    font-size: 1.1rem;
}

/* Carousel Dots Removed for Linear Flow */
.carousel-dots {
    display: none;
}

/* --- Scarcity --- */
.scarcity {
    background: var(--primary);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    font-weight: 600;
}

.scarcity-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.warning-icon {
    font-size: 1.5rem;
}

/* --- Contact / Form --- */
.contact {
    padding: 5rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.contact-text h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 2rem;
    line-height: 1;
    font-weight: 100;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-weight: 200;
}

.form-container {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.input-group {
    margin-bottom: 2rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 1px;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-bottom-color: var(--primary);
    outline: none;
    padding-left: 10px;
}

.btn-submit {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(255, 30, 30, 0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 30, 30, 0.4);
    filter: brightness(1.1);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* --- Footer --- */
footer {
    padding: 2.5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo img {
    height: 80px;
    /* Enlarged footer logo */
    width: auto;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation Right --- */
.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Increased gap */
}

.cta-nav {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 30, 30, 0.05);
    /* Very subtle red tint */
    border: 1px solid rgba(255, 30, 30, 0.4);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cta-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 30, 30, 0.4);
    transform: translateY(-2px);
}

.lang-switcher {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    /* Separator between button and switcher */
}

.lang-btn {
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.4;
    padding: 4px 0;
}

.lang-btn:hover {
    opacity: 1;
    color: white;
}

.lang-btn.active {
    color: var(--primary);
    opacity: 1;
    font-weight: 600;
}

.lang-divider {
    opacity: 0.1;
    font-size: 0.8rem;
}

/* --- Mobile Nav --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 1rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(255, 30, 30, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav ul li {
    margin: 2.5rem 0;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    /* Extra thin as requested */
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    color: var(--primary);
    letter-spacing: 8px;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    #desktop-nav {
        display: none;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
    }

    .logo img {
        height: 70px;
    }

    .nav-right {
        gap: 1rem;
    }

    .cta-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }

    /* Hide Method Cards in Responsive as requested */
    .solution-grid {
        display: none;
    }

    .solution-details {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    /* Improve Mobile Carousel */
    .testimonial-card {
        min-width: 300px;
        /* More readable on mobile */
        padding: 1.5rem;
    }

    .testimonial-track {
        gap: 20px;
        animation: scroll-linear-mobile 25s linear infinite;
    }

    @keyframes scroll-linear-mobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 10px));
        }

        /* Half gaps */
    }

    .investment-box {
        padding: 2rem 1.5rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    header {
        height: 80px;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .lang-switcher {
        padding-left: 0.8rem;
    }

    .lang-btn {
        font-size: 0.6rem;
    }

    .footer-logo img {
        height: 60px;
    }
}

/* --- Detailed Services --- */
.services-detailed {
    padding: 8rem 0;
    position: relative;
    background: transparent;
}

.service-block {
    margin-bottom: 8rem;
    max-width: 800px;
}

.service-block.left {
    margin-left: 0;
    text-align: left;
}

.service-block.right {
    margin-left: auto;
    text-align: right;
}

.service-block i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

.service-block h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-transform: none;
    /* As per the photo */
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-block p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    max-width: 90%;
    display: inline-block;
}

.service-block.right p {
    max-width: 90%;
}

@media (max-width: 768px) {
    .services-detailed {
        padding: 4rem 0;
    }

    .service-block {
        text-align: left !important;
        margin-bottom: 5rem;
        max-width: 100%;
    }

    .service-block i {
        font-size: 2.5rem;
    }
}

/* --- Services Grid --- */
.services-grid-detailed {
    padding: 4rem 0 8rem;
    background: transparent;
}

.grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-item-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
    border: 1px solid rgba(255, 30, 30, 0.08);
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grid-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 30, 30, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.grid-item-card:hover {
    transform: translateY(-15px);
    background: linear-gradient(145deg, rgba(30, 10, 10, 0.95) 0%, rgba(10, 5, 5, 0.98) 100%);
    border-color: rgba(255, 30, 30, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 30, 30, 0.15);
}

.grid-item-card h3 {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
}

.grid-item-card:hover h3 {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 30, 30, 0.4);
}

.card-divider {
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 2rem;
    transition: width 0.5s ease;
}

.grid-item-card:hover .card-divider {
    width: 80px;
}

.grid-item-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-detailed {
        grid-template-columns: 1fr;
    }

    .grid-item-card {
        padding: 2rem 1.5rem;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 8rem 0;
    position: relative;
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-title h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.faq-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.accordion-header i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
    color: var(--text-muted);
}

.accordion-item:hover {
    border-color: rgba(255, 30, 30, 0.3);
    background: rgba(255, 30, 30, 0.03);
}

.accordion-item.active {
    border-color: var(--primary);
    background: rgba(255, 30, 30, 0.05);
    box-shadow: 0 0 30px rgba(255, 30, 30, 0.1);
}

.accordion-item.active .accordion-header {
    /* Subtle glow behind text */
    background: linear-gradient(90deg, rgba(255, 30, 30, 0.1), transparent);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.accordion-content p {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.badge .live-dot {
    display: inline-block;
    margin-left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* Elimina cualquier degradado heredado de span y aplica el color verde */
    background: none !important;
    background-color: #00cf85 !important;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}