/* =============================================================================
   CURRENCY CLEAR - PREMIUM FINTECH DESIGN SYSTEM
   Golden source: config/website.ttl
   ============================================================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* =============================================================================
   CSS CUSTOM PROPERTIES - Derived from TTL BrandConfig
   ============================================================================= */
:root {
    /* Colors from cc:BrandConfig */
    --color-primary: #0F172A;
    --color-secondary: #1E3A5F;
    --color-accent: #22D3EE;
    --color-accent-gold: #D4AF37;
    --color-surface-light: #F8FAFC;
    --color-surface-dark: #020617;
    --color-text-primary: #0F172A;
    --color-text-secondary: #64748B;
    --color-text-light: #F8FAFC;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
    --gradient-hero: linear-gradient(180deg, #0F172A 0%, #1E3A5F 100%);
    --gradient-accent: linear-gradient(135deg, #22D3EE 0%, #0EA5E9 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    
    /* Typography from cc:BrandConfig */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius from cc:BrandConfig */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows from cc:BrandConfig */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.15);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Container */
    --container-max: 1280px;
    --container-narrow: 768px;
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-surface-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 65ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* =============================================================================
   LAYOUT UTILITIES
   ============================================================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

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

.section--dark {
    background: var(--gradient-primary);
    color: var(--color-text-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-text-light);
}

.section--dark p {
    color: rgba(248, 250, 252, 0.8);
}

/* =============================================================================
   HEADER / NAVIGATION
   ============================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    background: transparent;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header--scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.logo__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.8);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-text-light);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--active {
    color: var(--color-text-light);
}

.nav__link--active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-light);
    transition: transform var(--transition-fast);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav__list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: var(--space-xl);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav__list--open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(248, 250, 252, 0.3);
}

.btn--secondary:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: rgba(248, 250, 252, 0.5);
}

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

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
}

.btn--small {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(248, 250, 252, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 250, 252, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-xl);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.hero__highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero__visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 700px;
    opacity: 0.15;
}

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

/* =============================================================================
   FEATURE CARDS
   ============================================================================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all var(--transition-base);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(30, 58, 95, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--color-secondary);
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h4 {
    margin-bottom: var(--space-md);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================================================
   STATS SECTION
   ============================================================================= */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

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

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

.stat__value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat__label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =============================================================================
   SPLIT SECTIONS (Image + Text)
   ============================================================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.split--reverse {
    direction: rtl;
}

.split--reverse > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .split {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .split--reverse {
        direction: ltr;
    }
}

.split__content h2 {
    margin-bottom: var(--space-lg);
}

.split__content p {
    margin-bottom: var(--space-xl);
}

.split__visual {
    position: relative;
}

.split__image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.split__image--dashboard {
    border: 1px solid rgba(15, 23, 42, 0.1);
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--gradient-primary);
    text-align: center;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 1.25rem;
    color: rgba(248, 250, 252, 0.8);
    margin: 0 auto var(--space-2xl);
    max-width: 500px;
}

/* =============================================================================
   TEAM SECTION
   ============================================================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.team-card__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
}

.team-card__content {
    padding: var(--space-xl);
}

.team-card h4 {
    margin-bottom: var(--space-xs);
}

.team-card__role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.team-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =============================================================================
   CONTACT FORM
   ============================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

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

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-info {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
}

.contact-info h3 {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-method__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 250, 252, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
}

.contact-method__label {
    font-size: 0.875rem;
    color: rgba(248, 250, 252, 0.6);
    margin-bottom: var(--space-xs);
}

.contact-method__value {
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-method__value a {
    color: var(--color-text-light);
}

.contact-method__value a:hover {
    color: var(--color-accent-gold);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
    background: var(--color-surface-dark);
    color: var(--color-text-light);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

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

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

.footer__brand {
    max-width: 300px;
}

.footer__brand .logo {
    margin-bottom: var(--space-lg);
}

.footer__brand p {
    font-size: 0.9375rem;
    color: rgba(248, 250, 252, 0.6);
}

.footer__title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-lg);
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--space-md);
}

.footer__list a {
    font-size: 0.9375rem;
    color: rgba(248, 250, 252, 0.7);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-text-light);
}

.footer__address {
    font-style: normal;
    font-size: 0.9375rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
}

.footer__address a {
    color: rgba(248, 250, 252, 0.7);
}

.footer__address a:hover {
    color: var(--color-accent-gold);
}

.footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(248, 250, 252, 0.1);
}

.footer__legal {
    font-size: 0.8125rem;
    color: rgba(248, 250, 252, 0.5);
    line-height: 1.8;
    max-width: 800px;
}

.footer__legal a {
    color: var(--color-accent);
}

.footer__copyright {
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: rgba(248, 250, 252, 0.4);
}

/* =============================================================================
   MISSION CARDS
   ============================================================================= */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

.mission-card {
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent-gold);
    box-shadow: var(--shadow-md);
}

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.mission-card p {
    font-size: 1rem;
}

/* =============================================================================
   WORLD MAP VISUAL
   ============================================================================= */
.world-visual {
    position: relative;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(30, 58, 95, 0.08) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.world-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath fill='none' stroke='%231E3A5F' stroke-width='0.5' opacity='0.3' d='M100,200 Q200,100 300,200 T500,200 T700,200'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.5;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */
.text-center { text-align: center; }
.text-light { color: var(--color-text-light); }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

/* Section Headers */
.section-header {
    max-width: 700px;
    margin-bottom: var(--space-3xl);
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    margin-top: var(--space-md);
}

/* =============================================================================
   COOKIE BANNER
   ============================================================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: var(--color-primary);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9375rem;
    color: rgba(248, 250, 252, 0.8);
    margin: 0;
}

.cookie-banner .btn {
    flex-shrink: 0;
}
