:root {
    --primary: #FF8C00;
    --highlight: #FF8C00;
    /* Replaced cyan with brand orange */
    --bg-dark: #050505;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-blue: #fff;
    /* Replaced blue with white */
    --neon-purple: rgba(255, 255, 255, 0.1);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --depth-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    /* Globally remove horrible blue outlines */
}

html {
    overflow-x: hidden;
    scroll-behavior: auto !important;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

#main-perspective {
    position: relative;
    width: 100%;
}

@media (max-width: 1024px) {
    .float-asset {
        display: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100% !important;
}



/* Global Floating Assets (GSAP) */
.float-asset {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.4));
    -webkit-mask-image: radial-gradient(circle, black 40%, rgba(0, 0, 0, 0) 70%);
    mask-image: radial-gradient(circle, black 40%, rgba(0, 0, 0, 0) 70%);
    display: block;
}

@keyframes float-idle {

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

    33% {
        transform: translateY(-30px) rotate(5deg);
    }

    66% {
        transform: translateY(15px) rotate(-5deg);
    }
}

@media (max-width: 1024px) {
    .float-asset {
        width: 60vw !important;
        opacity: 0.3 !important;
        right: -20vw !important;
        top: 20% !important;
    }
}

#float-globe {
    width: 550px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    opacity: 0.6 !important;
    z-index: 1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 100000;
    padding: 2.2rem 0;
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
    background: rgba(10, 10, 10, 0.3);
    /* Initial subtle glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

#ai-hud {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--neon-blue);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1001;
}

#hud-status {
    position: relative;
    padding-left: 15px;
}

#hud-status::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: pulse-hud 1s infinite;
}

@keyframes pulse-hud {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translateY(-50%) scale(0.8);
    }
}

.logo-container {
    width: 180px;
}

#t1mx-logo {
    width: 100%;
    height: auto;
    display: block;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.8;
    transition: 0.3s;
    font-size: 1.1rem;
    position: relative;
}

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

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

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

/* Hero Swiper */
.hero-section {
    height: 100vh;
    min-height: 600px;
    width: 100% !important;
    overflow: hidden;
    position: relative;
}

.hero-swiper {
    height: 100%;
    width: 100% !important;
}

.swiper-slide {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
    z-index: -1;
    /*transform: scale(1.1);*/
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-bg {
    transform: scale(1.03);
}

.slide-inner {
    position: relative;
    z-index: 5;
    width: 100% !important;
    padding: 140px 0 60px;
}

#inicio .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.content-box {
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.5rem;
    padding: 4rem;
    max-width: 800px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.content-box:hover {
    background: rgba(10, 10, 10, 0.45);
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 40px 80px rgba(255, 140, 0, 0.08);
}

@media (max-width: 768px) {
    .content-box {
        padding: 2.5rem 1.8rem;
        border-radius: 1.8rem;
    }
}

/*.content-box h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
}*/
.content-box h1, .content-box h2 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 2rem;
}

.content-box h1 span, .content-box h2 span {
    color: var(--primary);
    font-size: 0.5em;
    display: block;
    margin-top: 0.2rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.content-box p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #bbb;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Services */
.services {
    padding: 3rem 0 8rem 0;
    background: linear-gradient(rgba(10, 12, 18, 0.88), rgba(10, 12, 18, 0.88)), url('../assets/curves-pattern.png') center/cover no-repeat fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: #aaa;
    font-size: 1.2rem;
}

.highlight {
    color: var(--highlight);
}

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

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--depth-shadow);
    height: 100%;
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 40px 80px rgba(255, 140, 0, 0.15);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #aaa;
}

.card-list li {
    margin-bottom: 0.5rem;
}

.card-list li::before {
    content: '→';
    margin-right: 10px;
    color: var(--primary);
}

/* Frame-Dynamic Skill Styles */
.frame-dynamic-container {
    position: relative;
    padding: 2rem;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.dynamic-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.frame-bracket {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.3));
}

.bracket-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.bracket-tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.bracket-bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.bracket-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.frame-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
    opacity: 0;
    z-index: 2;
    filter: blur(1px);
}

.frame-dynamic-container:hover .frame-bracket {
    width: 80px;
    height: 80px;
    border-color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary));
    transform: translateZ(20px);
}

.dynamic-glow {
    position: absolute;
    inset: 0;
    background: transparent;
    /* Removed blue glow */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.frame-dynamic-container:hover .dynamic-glow {
    opacity: 1;
}



/* Tech Stack Section */
.tech-stack-section {
    padding: 3rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.35)), url('../assets/office-bg.jpg') center/cover no-repeat fixed;
    perspective: 1500px;
    overflow: hidden;
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    position: relative;
    transform-style: preserve-3d;
}

.tech-item {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floating-cloud 8s infinite ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    /* Premium glass pod */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tech-item img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: none;
    /* No more gray icons! */
    opacity: 0.9;
    transition: 0.4s;
}

.tech-item:hover {
    transform: translateZ(150px) scale(1.1) !important;
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(255, 140, 0, 0.2);
}

.tech-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.depth-1 {
    transform: translateZ(50px);
    animation-delay: 0s;
}

.depth-2 {
    transform: translateZ(-50px);
    animation-delay: -2s;
    opacity: 0.7;
}

.depth-3 {
    transform: translateZ(100px);
    animation-delay: -4s;
}

@keyframes floating-cloud {

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

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

.tech-item:hover {
    transform: translateZ(150px) scale(1.2) !important;
}

/* Process Section */
/* Methodology Dark-Theme Overhaul (Requested Color) */
.process-section.light-theme {
    background: #1b2739;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.process-section.light-theme .section-header h2 {
    color: #fff;
}

.process-section.light-theme .highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.process-section.light-theme .subtitle {
    color: #ccc;
}

.process-section.light-theme .step h4 {
    color: #fff;
    font-weight: 600;
}

.process-section.light-theme .step p {
    color: #aaa;
}

.process-section.light-theme .step-num {
    color: rgba(255, 140, 0, 0.1);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
}

/* Sound Waves Styles (Thicker Lines) */
.wave-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.sound-waves {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.wave-path {
    fill: none;
    stroke-width: 4;
    stroke: var(--primary);
    opacity: 0.4;
}

.path-2 {
    stroke: #ffffff;
    opacity: 0.15;
}

.path-3 {
    stroke: var(--primary);
    opacity: 0.1;
}

.process-section.light-theme .container {
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.step {
    position: relative;
    padding-top: 3rem;
}

.step-num {
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
}

.step h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Support/Infrastructure */
.support-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.55)), url('../assets/vector-bg.jpg') center/cover no-repeat fixed;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.support-visual {
    height: 320px;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../assets/servidores_t1mx.jpg') center/cover no-repeat;
    border-radius: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.cta-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2%;
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('../assets/cta_final_clean.jpg') center/cover no-repeat fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box {
    background: transparent;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 800px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.cta-box p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 1.15rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.btn-cta-small {
    background: #1b2739;
    color: #ffffff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta-small:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    color: #fff !important;
}

.btn-cta-small::after {
    display: none !important;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-logo {
    width: 140px;
    margin-bottom: 2rem;
}

.footer-links h4 {
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1.4rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-contact svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    color: #444;
    font-size: 0.9rem;
}

/* RE-RESPONSIVE FIXES */
@media (max-width: 992px) {

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

    .footer-logo {
        margin: 0 auto 2rem;
    }

    .nav-links {
        display: none;
    }

    .cta-box h2 {
        font-size: 2.2rem;
    }

    .stat-grid {
        justify-items: center;
    }
}

@media (max-width: 600px) {

    .services,
    .process-section,
    .support-section,
    .cta-section {
        padding: 5rem 0;
    }

    .cta-box {
        padding: 4rem 1.5rem;
    }

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

    header {
        padding: 1.5rem 0;
    }

    .logo-container {
        width: 140px;
    }
}

/* Partners Bar */
.partners-bar {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-bar p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

.partners-grid {
    display: flex;
    gap: 3rem;
}

.partners-grid span {
    font-size: 0.85rem;
    font-weight: 800;
    color: #444;
    transition: 0.3s;
    cursor: default;
}

.partners-grid span:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #111;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.float-whatsapp:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Mobile Adjustments for SEO sections */
@media (max-width: 768px) {
    .partners-bar .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .partners-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Pain Points Section */
.pain-points-section {
    padding: 8rem 0;
    background: rgba(10, 10, 10, 0.2);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.pain-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: 0.4s;
}

.pain-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.pain-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pain-item p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #eee;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #999;
    margin: 0;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

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

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

    /* Mobile Navigation Styles */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(10, 15, 25, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 999;
        gap: 2rem;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-links.nav-active li {
        animation: navLinkFade 0.5s ease forwards 0.2s;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1000;
        padding: 10px;
        background: transparent;
        border: none;
        outline: none;
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: 0.3s ease;
    }

    /* Hamburger Animation */
    .menu-toggle.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
        background: var(--primary);
    }

    .menu-toggle.toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .menu-toggle.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
        background: var(--primary);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

/* AI Core Section */
.ai-core-section {
    padding: 10rem 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}



#neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.ai-core-section .container {
    position: relative;
    z-index: 2;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-visual {
    position: relative;
    perspective: 2000px;
}

.ai-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, rgba(0, 242, 254, 0.08) 50%, transparent 100%);
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}

.ai-image-container {
    width: 100%;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.ai-image-container:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.ai-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.ai-overlay-tags {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.ai-tag {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-blue);
    animation: float-tag 4s infinite ease-in-out;
}

@keyframes float-tag {

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

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

.neural-map {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.neural-node {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.neural-node:hover {
    background: rgba(255, 140, 0, 0.05);
    border-color: var(--primary);
    transform: translateZ(50px);
}

.neural-node i {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

/* Depth Utilities */
.parallax-layer {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-text {
    text-shadow: none;
    /* Removed blue glow */
}

.iridescent-border {
    position: relative;
}

.iridescent-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(45deg, transparent, var(--primary), transparent, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.parallax-layer {
    will-change: transform;
}

/* Web Design Portfolio Section */
.web-portfolio-section {
    padding: 4rem 0;
    background: #090909;
    position: relative;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    overflow: hidden;
}

.web-portfolio-section .section-header {
    margin-bottom: 2.5rem;
}

/* Tabs Row (Horizontal row - Todo en un renglón) */
.web-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.web-tabs-row {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 100px;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    overflow: hidden;
}

.web-tabs-track {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    align-items: center;
    will-change: transform;
}

.web-tab-btn {
    background: transparent !important;
    border: 1px solid transparent !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 100px !important;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    box-shadow: none !important;
    user-select: none;
    -webkit-user-select: none;
}

.web-tab-btn:hover {
    color: #fff;
    transform: none !important;
}

.web-tab-btn.active {
    color: #fff;
    background: rgba(255, 140, 0, 0.22) !important;
    border: 1px solid rgba(255, 140, 0, 0.6) !important;
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.25) !important;
}

.web-tab-btn .tab-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 140, 0, 0.5);
    transition: color 0.3s ease;
}

.web-tab-btn.active .tab-num {
    color: var(--primary);
}

.web-tab-btn .tab-name {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Grid layout with browser and details panel side-by-side */
.web-portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    /* Stretch columns to match vertical size! */
}

/* Web Browser Showcase with horizontal slides track */
.web-browser-mockup {
    background: #121212;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 140, 0, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.web-browser-mockup:hover {
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 140, 0, 0.05);
}

.browser-header {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.browser-search-bar {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    color: #666;
    flex-grow: 1;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    font-family: monospace;
    letter-spacing: 0.5px;
}

.browser-viewport {
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    background: #090909;
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
}

.browser-viewport::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 6;
}

/* Slider slides container inside browser viewport */
.browser-slides-container {
    display: flex;
    width: 600%;
    /* 6 slides */
    height: 100%;
    will-change: transform;
}

.browser-slide-img {
    width: 16.6666%;
    /* 100% of viewport width / 6 */
    height: 100%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    /* Prevent flex items from shrinking! */
}

.browser-slide-img::-webkit-scrollbar {
    display: none;
}

.browser-slide-img img {
    width: 100%;
    min-height: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(1.2) contrast(1.05);
    /* Boost brightness & contrast for vibrant look */
}

.browser-screen-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
    z-index: 5;
    opacity: 0;
}

/* Details and persuasion panel (on the right) */
.web-portfolio-details-panel {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem 2rem;
    border-radius: 1.2rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--depth-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    height: 100%;
}

.persuasion-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    align-self: flex-start;
}

.web-portfolio-details-panel h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.web-portfolio-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dashboard Metrics */
.web-project-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.dashboard-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 0.8rem;
    text-align: center;
    transition: var(--transition);
}

.dashboard-metric:hover {
    border-color: rgba(255, 140, 0, 0.2);
    background: rgba(255, 140, 0, 0.02);
}

.metric-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #666;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-val {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.web-project-action .btn-primary {
    display: inline-block;
    padding: 0.85rem 2.8rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .web-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .web-portfolio-section {
        padding: 5rem 0;
    }

    .web-tabs-row {
        gap: 0.25rem;
        margin-bottom: 2.5rem;
        padding: 4px;
        flex-wrap: nowrap;
        /* Prevent wrapping so it scrolls horizontally */
    }

    .web-tab-btn {
        padding: 0.6rem 1.2rem !important;
        gap: 0.5rem;
        border-radius: 100px !important;
        width: auto !important;
        justify-content: center;
    }

    .web-portfolio-details-panel {
        padding: 2rem 1.5rem;
    }

    .browser-viewport {
        height: 250px;
    }

    .web-project-dashboard {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .dashboard-metric {
        padding: 0.8rem;
    }

    .metric-val {
        font-size: 1.6rem;
    }
}

.service-card,
.pain-item,
.neural-node,
.web-tab-btn,
.dashboard-metric {
    will-change: transform, box-shadow;
}

/* Contact Section & Form Styling */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.95)), url('../assets/office-bg.jpg') center/cover no-repeat fixed;
    position: relative;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--depth-shadow);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    box-shadow: var(--depth-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 0.8rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-wrapper textarea {
    padding-top: 1rem;
    resize: vertical;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--primary);
    font-size: 1.2rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-wrapper .focus-border {
    position: absolute;
    inset: 0;
    border-radius: 0.8rem;
    border: 1px solid var(--primary);
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: transparent;
    background: rgba(0, 0, 0, 0.5);
}

.input-wrapper input:focus ~ .focus-border,
.input-wrapper textarea:focus ~ .focus-border {
    opacity: 1;
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon {
    transform: scale(1.1);
}

.form-submit {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.btn-submit {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600 !important;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.85rem 2.2rem;
    transition: var(--transition);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .submit-arrow {
    transform: translateX(5px);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.8rem;
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.info-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
}

.info-text p, .info-text a {
    color: #aaa;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}

.info-text a:hover {
    color: var(--primary);
}

.live-status-badge {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    align-self: flex-start;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
    animation: pulse-hud 1.5s infinite;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #25D366;
    letter-spacing: 0.5px;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.8rem;
    font-size: 0.95rem;
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.form-status.success {
    display: block;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(255, 95, 86, 0.1);
    color: #ff5f56;
    border: 1px solid rgba(255, 95, 86, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .contact-form-card, .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Privacy Policy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 650px;
    max-height: 80vh;
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #aaa;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-date {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.modal-scroll-content {
    overflow-y: auto;
    max-height: 45vh;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.modal-scroll-content::-webkit-scrollbar {
    width: 6px;
}

.modal-scroll-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.modal-scroll-content::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.3);
    border-radius: 10px;
}

.modal-scroll-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.modal-scroll-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.modal-scroll-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.modal-scroll-content li {
    margin-bottom: 0.4rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
}

.modal-actions button {
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    max-width: 480px;
    z-index: 9998;
    padding: 1.8rem;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 2rem;
    line-height: 1;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-content a:hover {
    color: #ffaa44;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ccc;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie-accept {
    padding: 0.65rem 1.8rem !important;
    font-size: 0.85rem !important;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        width: calc(100% - 2rem);
        padding: 1.2rem;
    }
}