/* 
   Moonbow Agency Styles 
   Design System: Modern Minimalist & Approachable
*/

:root {
    /* Colors */
    --clr-bg: #ffffff;
    --clr-bg-light: #f8f9fa;
    --clr-bg-dark: #111111;
    --clr-text: #1a1a1a;
    --clr-text-light: #666666;
    --clr-text-inverse: #ffffff;
    --clr-accent: #4F46E5; /* Vibrant Indigo */
    --clr-accent-hover: #3730A3;
    
    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Blooms */
.bloom {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.bloom-1 { top: -100px; right: -200px; }
.bloom-2 { bottom: 20%; left: -200px; background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0) 70%); }


/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 4vw + 0.8rem, 3.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

p {
    color: var(--clr-text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.text-light { color: var(--clr-text-inverse); }
.text-light p { color: #a3a3a3; }
.accent-text { 
    position: relative;
    color: var(--clr-accent);
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline-accent {
    position: relative;
    display: inline-block;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(79, 70, 229, 0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s var(--trans-smooth);
}

.visible .underline-accent::after {
    transform: scaleX(1);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--space-xl) 0;
}

.bg-light { background-color: var(--clr-bg-light); }
.bg-dark { background-color: var(--clr-bg-dark); }
.bg-accent { background-color: var(--clr-bg-light); } /* Soft background for contact */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--trans-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #7C3AED 100%);
    color: var(--clr-text-inverse);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3730A3 0%, #5B21B6 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text);
    border: 2px solid var(--clr-text);
}

.btn-outline:hover {
    background-color: var(--clr-text);
    color: var(--clr-text-inverse);
}

.btn-dark {
    background: linear-gradient(135deg, #2a2a2a 0%, #000000 100%);
    color: var(--clr-text-inverse);
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--trans-fast);
}

.nav-list a:hover {
    color: var(--clr-accent);
}

.nav-cta {
    background-color: var(--clr-text);
    color: var(--clr-text-inverse) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.nav-cta:hover {
    background-color: var(--clr-accent);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    padding-bottom: 1rem; /* Increase hover area so mouse doesn't fall off */
    margin-bottom: -1rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--clr-text-light);
    font-weight: 500;
    transition: var(--trans-fast);
}

.dropdown-menu a:hover {
    background: var(--clr-bg-light);
    color: var(--clr-accent);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    background: var(--clr-bg-light);
    border-radius: 50px;
    padding: 4px;
}

.lang-toggle button {
    background: transparent;
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    color: var(--clr-text-light);
    transition: var(--trans-fast);
}

.lang-toggle button.active {
    background: var(--clr-text);
    color: var(--clr-text-inverse);
}

.hidden {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text);
    transition: var(--trans-fast);
}

/* Hero Section */
.hero {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    height: 100%;
}

.hero-main-img {
    width: 110%;
    height: 600px;
    object-fit: cover;
    border-radius: 60px 0 60px 60px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    margin-left: -5%;
}

.hero-decorative-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--clr-accent);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.hero-content {
    max-width: 600px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero .subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

/* Floating animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Problem Section */
.problem {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
    color: var(--clr-text-inverse);
    background: #000;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.problem .container {
    position: relative;
    z-index: 3;
}

.problem-content-card {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 4rem;
    border-radius: 60px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.problem-content-card h2 {
    color: var(--clr-text-inverse);
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.problem-content-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    margin-bottom: 0;
}

.problem .accent-text {
    background: linear-gradient(135deg, #A5B4FC, #E879F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pricing Cards */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    transition: var(--trans-spring);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.pricing-card.highlighted {
    background: var(--clr-text);
    color: var(--clr-text-inverse);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.highlighted p, 
.pricing-card.highlighted .btn-outline {
    color: rgba(255,255,255,0.8);
}

.pricing-card.highlighted h3 {
    color: var(--clr-text-inverse);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 2rem;
}

.pricing-card.highlighted .card-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-features-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.plan-features-list li .check {
    color: var(--clr-accent);
    font-weight: bold;
}

.pricing-card.highlighted .plan-features-list li {
    color: rgba(255,255,255,0.8);
}

.card-header .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.price .period {
    font-size: 1rem;
    opacity: 0.7;
}

.card-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.card-footer {
    margin-top: auto;
}

.card-footer .btn {
    width: 100%;
}

/* How We Work */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    position: relative;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 1;
}

.step h3 {
    position: relative;
    z-index: 2;
    color: var(--clr-text-inverse);
}

.step p {
    position: relative;
    z-index: 2;
}

/* Anatomy Section */
.anatomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.anatomy-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.anatomy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon-wrapper {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(253, 92, 99, 0.1);
    color: var(--clr-accent);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.anatomy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.anatomy-card p {
    font-size: 0.95rem;
    color: var(--clr-text-secondary);
}

/* Process Timeline Section */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--clr-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--clr-bg-dark);
}

.timeline-content {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    flex-grow: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }
    .timeline-dot {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
        box-shadow: 0 0 0 6px var(--clr-bg-dark);
    }
    .timeline-content {
        padding: 1.5rem;
    }
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    padding-right: 2rem;
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--trans-fast);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--trans-smooth);
}

.accordion-body p {
    padding-top: 1rem;
    margin-bottom: 0;
}

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

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--clr-bg);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--trans-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

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

.footer-logo img {
    height: 30px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--trans-fast);
}

.footer-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.footer-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 1s var(--trans-smooth), transform 1s var(--trans-smooth);
}

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

/* Onboarding Form Styles */
.onboarding-main {
    background-color: var(--clr-bg);
}

.progress-container {
    margin-bottom: 3rem;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background-color: var(--clr-accent);
    width: 0%;
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--clr-text-secondary);
    font-weight: 600;
}

.onboarding-form {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

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

.step-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1.5rem;
}

.step-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .onboarding-form {
        padding: 2rem 1.5rem;
    }
    .step-actions {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .step-actions .btn {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .pricing-card.highlighted {
        transform: scale(1);
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-10px);
    }
    
    .nav {
        display: none;
    }
    .nav.nav-open {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-open .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        display: none;
        box-shadow: none;
        padding-left: 1rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    .dropdown.mobile-dropdown-open .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        height: auto;
    }
    .mobile-menu-btn {
        display: flex !important;
        margin-left: 1.5rem;
    }
    .lang-toggle {
        margin-left: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-main-img {
        width: 100%;
        height: auto;
        max-height: 400px;
        margin-left: 0;
        border-radius: 30px;
    }
    .hero-content {
        order: 1;
    }
    .hero-image-container {
        order: 2;
    }
    
    .bloom {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-lg: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 600px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-text a {
    color: var(--clr-accent);
    text-decoration: none;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans-fast);
    border: none;
}

.cookie-btn.accept {
    background: var(--clr-accent);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--clr-accent-hover);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cookie-banner {
        width: calc(100% - 2rem);
        bottom: 1rem;
        padding: 1.2rem;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
