/* =========================================
   VARIABLES Y CONFIGURACIÓN PREMIUM
   ========================================= */
:root {
    /* Paleta Deep Dark Premium */
    --bg-base: #0a0a0f;
    --bg-surface: #13131c;
    --bg-surface-elevated: #1a1a2e;

    /* Acentos y Gradientes (Tecnología + Psicología) */
    --accent-primary: #00f0ff;
    /* Cyan tech */
    --accent-secondary: #7000ff;
    /* Púrpura innovación */
    --accent-tertiary: #00ffaa;
    /* Verde mental/salud */

    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b85;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 240, 255, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(19, 19, 28, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Sombras y Glow */
    --glow-primary: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(112, 0, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Espaciado */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* =========================================
   RESETEOS Y BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--space-xl) 0;
}

.center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--space-md);
}

.hidden {
    display: none !important;
}

/* Variables de Color (Textos y utilidades) */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: var(--accent-primary);
}

/* =========================================
   BOTONES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-primary);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
}

.glow-effect {
    position: relative;
    z-index: 1;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.8;
}

.pulse-animation {
    animation: pulseBright 2s infinite;
}

@keyframes pulseBright {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

/* =========================================
   GLASSMORPHISM & TARJETAS
   ========================================= */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--space-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
}

/* =========================================
   ANIMACIONES ON SCROLL
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.lang-btn):hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    border-left: 1px solid var(--border-subtle);
    padding-left: 1.5rem;
}

.lang-switcher a {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

.lang-switcher a:hover {
    color: var(--accent-primary);
}

.lang-switcher a::after {
    display: none;
}

.lang-switcher a.active {
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatShape 10s infinite alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 240, 255, 0.2);
    bottom: -150px;
    left: -100px;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-accent);
    color: var(--accent-primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.mockup-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.6);
    animation: floatMockup 6s ease-in-out infinite alternate;
}

@keyframes floatMockup {
    0% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-20px);
    }
}

.mockup-header {
    background: var(--bg-surface-elevated);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.mockup-header .dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 1rem;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.95rem;
    opacity: 0;
    animation: chatPop 0.5s forwards;
}

.chat-message.bot {
    background: rgba(112, 0, 255, 0.1);
    border-top-left-radius: 4px;
    align-self: flex-start;
    animation-delay: 0.5s;
}

.chat-message.user {
    background: rgba(0, 240, 255, 0.1);
    border-top-right-radius: 4px;
    align-self: flex-end;
    animation-delay: 1.5s;
}

.chat-message.bot:nth-of-type(3) {
    animation-delay: 2.5s;
}

.chat-snippet.success {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 10px;
    text-align: center;
    opacity: 0;
    animation: chatPop 0.5s forwards;
    animation-delay: 3.5s;
}

@keyframes chatPop {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================
   2. PROBLEMAS SECTION
   ========================================= */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.problem-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box.red {
    background: rgba(255, 75, 75, 0.1);
    color: #ff4b4b;
}

.icon-box.orange {
    background: rgba(255, 150, 0, 0.1);
    color: #ff9600;
}

.icon-box.yellow {
    background: rgba(255, 220, 0, 0.1);
    color: #ffdc00;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* =========================================
   3. SOLUCIONES SECTION
   ========================================= */
.solutions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
}

.icon-box.green {
    background: rgba(0, 255, 170, 0.1);
    color: var(--accent-tertiary);
}

.icon-box.purple {
    background: rgba(112, 0, 255, 0.1);
    color: var(--accent-secondary);
}

.icon-box.blue {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-primary);
}

.icon-box.cyan {
    background: rgba(0, 200, 255, 0.1);
    color: #00c8ff;
}

.solution-item .icon-box {
    margin-bottom: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.solution-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.solution-item p {
    font-size: 1.05rem;
}

.solution-benefits {
    margin-top: 1.5rem;
    list-style: none;
}

.solution-benefits li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-weight: 500;
    color: #fff;
}

.solution-benefits .check {
    color: var(--accent-tertiary);
    font-weight: bold;
}

.solution-highlight {
    margin-top: 4rem;
    padding: 3rem;
    border-color: rgba(0, 240, 255, 0.2);
}

.solution-highlight h3 {
    font-size: 2rem;
    font-weight: 400;
}

.solution-highlight strong {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* =========================================
   4. PROCESO SECTION
   ========================================= */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 4rem 0;
    gap: 2rem;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -50px auto 1.5rem auto;
    border: 6px solid var(--bg-base);
}

.step-card p {
    font-size: 0.95rem;
}

.step-connector {
    flex-basis: 50px;
    flex-grow: 1;
    height: 2px;
    background: var(--border-subtle);
    margin-top: 30px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-primary);
    transition: width 1s ease;
}

.animate-on-scroll.visible+.step-connector::after {
    width: 100%;
    transition-delay: 0.5s;
}

/* =========================================
   5. TESTIMONIOS SECTION
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffdc00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-primary);
    font-family: var(--font-heading);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   6. BENEFICIOS SECTION
   ========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--accent-primary);
}

.benefit-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #fff;
}

/* =========================================
   7. FAQ SECTION
   ========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--accent-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
}

/* =========================================
   8. FORMULARIO SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 4rem;
    border-color: rgba(112, 0, 255, 0.2);
}

.contact-info h2 {
    font-size: 2.5rem;
}

.contact-perks {
    list-style: none;
}

.contact-perks li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    gap: 10px;
}

.contact-form {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.4);
}

.form-success {
    text-align: center;
    padding: 3rem;
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.3);
    border-radius: 16px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #27c93f;
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* =========================================
   9. CTA FINAL SECTION
   ========================================= */
.final-cta-box {
    text-align: center;
    padding: 5rem 2rem;
    border-width: 2px;
    border-color: rgba(0, 240, 255, 0.3);
    background: linear-gradient(180deg, rgba(19, 19, 28, 0.8), rgba(112, 0, 255, 0.1));
}

.final-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.final-cta-box p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.giant-btn {
    letter-spacing: 1px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

/* =========================================
   RESPONSIVE DESIGN (Móvil)
   ========================================= */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        display: flex;
    }

    .hero-visual {
        padding: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .mockup-card {
        transform: rotateY(0) rotateX(0);
        animation: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 3rem;
    }

    .step-connector {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .section-padding {
        padding: var(--space-lg) 0;
    }

    .solutions-list {
        grid-template-columns: 1fr;
    }

    .solution-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 800px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 1rem;
        padding: 1.5rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}