/* Fonts */
@font-face {
    font-family: 'Archivo Black';
    src: url('/fonts/archivo-black-v23-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/manrope-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/manrope-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/manrope-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Archivo */
@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/archivo-v25-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/archivo-v25-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/archivo-v25-latin-800.woff2') format('woff2');
}

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/fonts/archivo-v25-latin-900.woff2') format('woff2');
}

/* CSS Variables & Themes */
:root {
    --bg-color:       #ffffff;
    --bg-color2:     rgba(255, 255, 255, 0.438);
    --text-color:     #171717;
    --text-color2:    #1e6bff;
    --text-color3:    #1f1f1f;
    --text-color4:    #353535;
    --text-color5:    #1e6bff;
    --sub-text:       #0e0e0e;
    --accent-color:   #1e6bff;
    --accent-color2:  #fedc00;
    --accent-color3:  #1e6bff;
    --accent-color4:  #fedc00;
    --accent-color5:  #031d90;
    --accent-color6:  #1ef0ff;
    --accent-color7:  #1e6bff;
    --accent-color8:  #1e6bff;
    --accent-color9:  #6096f9;
    --glass-bg:       rgba(255, 255, 255, 0.65);
    --glass-border:   rgba(0, 0, 0, 0.08);
    --glass-blur:     40px;
    --nav-bg:         rgba(255, 255, 255, 0.9);
    --cursor-color:   #232323;
    --card-shadow:    0 8px 32px rgba(31, 38, 135, 0.1);
    --radius:         2px;
}

[data-theme="dark"] {
    --bg-color:       #090909;
     --bg-color2:     rgb(0, 0, 0);
    --text-color:     #ffffff;
    --text-color2:    #ffffff;
     --text-color3:    #4d7ef9;
      --text-color4:    #fedc00;
      --text-color5: rgb(5, 9, 44);
    --sub-text:       #e6e4e4;
    --accent-color:   #fedc00;
    --accent-color2:  #fedc00;
    --accent-color3:  #fedc00;
     --accent-color4:  #fedc00;
     --accent-color5:  #fedc00;
     --accent-color6:  #fedc00;
     --accent-color7:  #4d7ef9;
     --accent-color8:  #fedc00;
     --accent-color9:  #737373;
    --glass-bg:       rgba(20, 20, 20, 0.6);
    --glass-border:   rgba(255, 255, 255, 0.12);
    --nav-bg:         rgba(10, 10, 10, 0.9);
    --cursor-color:   #fafaf8;
    --card-shadow:    0 20px 40px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-color:  #1e6bff #ffffff;
    font-size: 16px;
}

::marker {
    color: var(--text-color);
}

::selection {
    background: #1e6bff;
    color: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Manrope', sans-serif;
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

p{
    font-size: clamp(1rem, 1.2vw, 1.3rem);
}

ul { list-style: none; }

h1, h2, h3, h4, .hero-font {
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Custom Cursor */
.cursor {
    width: 30px;
    height: 34px;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(0, 0);
    transition: transform 0.15s ease, filter 0.3s ease;
    mix-blend-mode: normal;
}

.cursor svg {
    width: 100%;
    height: 100%;
    transition: transform 0.25s ease, filter 0.25s ease;
    
}

.cursor.hovered svg {
    transform: scale(1.35);
    
}

.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--cursor-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Noise Texture Overlay */
.noise {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIxIi8+PC9zdmc+');
}

/* Sticky Navigation */
nav#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 5%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nav-bg);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--glass-border);
}

nav#navbar.visible { transform: translateY(0); }

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.logo-img {
   height: 88px;
width: auto;
object-fit: contain;
display: block;
}

.logo-img--default {
    transition: opacity 0.35s ease;
}

.logo-img--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.logo:hover .logo-img--default { opacity: 0; }
.logo:hover .logo-img--hover   { opacity: 1; }

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    
}

.nav-links a {
    font-weight: 700;
    font-family: 'Archivo';
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    transition: opacity 0.3s, color 0.3s;
    color: var(--text-color);
}

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

.theme-switch {
    background: var(--bg-color2);
    border: 1px solid var(--text-color);
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    transition: 0.3s;
    font-family: 'Manrope', sans-serif;
}

.theme-switch:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: none;
    border: none;
    padding: 4px;
}

.bar {
    width: 28px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.open .bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Unternavigation */
.section-subnav {
    padding: 80px 5%;
}

.nav-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.sub-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 0.75rem;
    border: 0.2px solid var(--accent-color9);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: clamp(0.75rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-color);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.sub-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text-color5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.2, 1);
    opacity: 0.3;
    
}

.sub-nav-btn:hover::before { transform: scaleX(1); }
.sub-nav-btn:hover { border-color: var(--text-color);border: 1px solid var(--accent-color);}

.sub-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.sub-nav-icon-wrap {
    display: grid;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sub-nav-icon {
    width: 24px;
    height: 24px;
    display: block;
    grid-area: 1 / 1;
}

.sub-nav-icon--dark {
    opacity: 0;
    pointer-events: none;
}

.sub-nav-icon--light {
    opacity: 1;
}

[data-theme="dark"] .sub-nav-icon--light {
    opacity: 0;
    pointer-events: none;
}

[data-theme="dark"] .sub-nav-icon--dark {
    opacity: 1;
    pointer-events: auto;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 0;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1), border-color 0.3s;
}

.glass-card:hover { border-color: var(--text-color); }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 48px; right: 40px;
    width: 50px; height: 50px;
    background: var(--accent-color);
    color: rgb(252, 251, 251);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 900;
}

[data-theme="dark"] .back-to-top { color: #000; }

.back-to-top:hover {
    background: var(--accent-color2);
    border-color: var(--accent-color2);
    color: #010101;
}

[data-theme="dark"] .back-to-top:hover {
    color: #fefdfd;
    background-color: #0d2ae6;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

/* Animations */
@keyframes kenBurns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes ticker {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes dropDown {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    font-family: 'Archivo', sans-serif;
    background: rgba(8, 8, 10, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.2, 1);
    visibility: hidden;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

[data-theme="light"] .mobile-nav-overlay {
    background: rgba(240, 242, 245, 0.96);
}

.mobile-nav-overlay__top {
    display: flex;
    justify-content: flex-end;
    padding: 22px 22px 0;
    flex-shrink: 0;
}

.mobile-nav-overlay__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #1e6bff;
    background: transparent;
    color: #1e6bff;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s;
    flex-shrink: 0;
}

.mobile-nav-overlay__close:hover { background: #1e6bff;color: white;outline: 2px solid #0951f7; outline-offset: 2px; }
.mobile-nav-overlay__close:focus-visible { outline: 2px solid #1e6bff; outline-offset: 2px; }

.mobile-nav-overlay__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 32px;
}

.mobile-nav-overlay__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(13, 95, 248, 0.872);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.mobile-nav-overlay__link:hover{
    border-bottom: 1px solid var(--accent-color);
}

[data-theme="light"] .mobile-nav-overlay__link {
    border-bottom-color: rgba(30, 109, 255, 0.917);
}

[data-theme="light"] .mobile-nav-overlay__link:hover {
  border-bottom-color: var(--text-color)
}

.mobile-nav-overlay__link:last-child { border-bottom: none; }

.mobile-nav-overlay__link-text {
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--text-color);
    transition: color 0.2s;
}

[data-theme="light"] .mobile-nav-overlay__link-text { color:var(--text-color); }

.mobile-nav-overlay__link:hover .mobile-nav-overlay__link-text { color: var(--accent-color); }
[data-theme="light"] .mobile-nav-overlay__link:hover .mobile-nav-overlay__link-text { color: #1e6bff; }

.mobile-nav-overlay__link.active .mobile-nav-overlay__link-text { color: #025efc; }
[data-theme="light"] .mobile-nav-overlay__link.active .mobile-nav-overlay__link-text { color: #1152f9; }

.mobile-nav-overlay__link:focus-visible { outline: 2px solid #1e6bff; outline-offset: 2px; }

.mobile-nav-overlay__footer {
    flex-shrink: 0;
    padding: 16px 32px 28px;
    border-top: 0.5px solid rgba(6, 94, 247, 0.432);
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .mobile-nav-overlay__footer { border-top-color: rgba(6, 94, 247, 0.432); }

.mobile-nav-overlay__toggle {
    display: flex;
    align-items: center;
}

.mobile-nav-overlay__toggle-btn {
    background: none;
    border: none;
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-color);
    padding: 4px 0;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

[data-theme="light"] .mobile-nav-overlay__toggle-btn { color: #070707; }

[data-theme="light"].mobile-nav-overlay__toggle-btn:hover { color: #2a69f0; }
.mobile-nav-overlay__toggle-btn:hover { color: var(--accent-color); }

.mobile-nav-overlay__toggle-btn.active { color: rgba(255, 255, 255, 0.9); }
[data-theme="light"] .mobile-nav-overlay__toggle-btn.active { color: rgb(71, 71, 71); }

.mobile-nav-overlay__toggle-sep {
    color: var(--text-color);
    padding: 0 8px;
    font-size: 11px;
    line-height: 1;
    font-family: 'Archivo', sans-serif;
    user-select: none;
}

[data-theme="light"] .mobile-nav-overlay__toggle-sep { color: var(--text-color); }

.mobile-nav-overlay__toggle-btn:focus-visible { outline: 2px solid #1e6bff; outline-offset: 2px; }

/* Footer */
footer {
    background: #050507;
    color: #fff;
    position: relative;
    overflow: clip;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-blob--blue {
    width: 400px;
    height: 400px;
    background: #1e6bff;
    opacity: 0.5;
    top: -120px;
    left: -80px;
    filter: blur(90px);
}

.footer-blob--yellow {
    width: 280px;
    height: 280px;
    background: #0033fe;
    opacity: 0.4;
    bottom: 60px;
    right: 7%;
    filter: blur(80px);
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: clamp(36px, 5vw, 56px) 5% clamp(28px, 4vw, 40px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}

.footer-eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgb(248, 250, 254);
    margin-bottom: 10px;
}

.footer-headline {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.05;
    text-wrap: balance;
    margin: 0;
}

.footer-headline em {
    font-style: normal;
    color: var(--accent-color);
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 5% clamp(28px, 4vw, 40px);
}

.footer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 22px 22px 20px;
    position: relative;
    transition: border-color 0.3s ease;
}

.footer-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.footer-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.footer-card-accent--blue  { background: linear-gradient(90deg, #1e6bff, transparent); }
.footer-card-accent--yellow { background: linear-gradient(90deg, #fedc00, transparent); }
.footer-card-accent--white  { background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent); }

.footer-card h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin-bottom: 14px;
}

.footer-card h4:hover {
    color: #d9d9da;
    font-size: 1rem;

}

.footer-card ul { list-style: none; }
.footer-card li { line-height: 2; }

.footer-card a {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    transition: color 0.25s ease;
    text-decoration: none;
}

.footer-card a:hover { color: rgb(255, 225, 0); }

.footer-card p {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    line-height: 1.7;
    margin: 0;
}

.footer-card p strong {
    color: rgb(251, 218, 4);
    font-weight: 600;
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.footer-social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transition: transform 0.25s ease;
    isolation: isolate;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link img {
    width: 26px;
    height: 26px;
    display: block;
    transition: opacity 0.25s ease;
}

.footer-social-link:hover img { opacity: 0.8; }

.footer-social-link::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 4px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.footer-social-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 0.5px solid rgba(255, 255, 255, 0.05);
    padding: 6px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Archivo', sans-serif;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.983);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
}

.footer-bottom a:hover { color: var(--accent-color)}

.footer-bottom-legal {
    padding-bottom: 25px;
    display: flex;
    gap: 20px;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
.nav-links a {font-size: 0.9rem;}
.footer-card h4 {font-size: 0.9rem;}

}
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
    }

    .cursor,
    .cursor-trail { display: none; }
    * { cursor: auto; }

    .back-to-top { width: 46px; height: 46px; bottom: 80px; right: 20px; }

    .nav-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-cards        { grid-template-columns: 1fr; gap: 10px; }
    .footer-top          { padding: 36px 5% 28px; }
    .footer-socials      { gap: 12px; }
     .footer-bottom { font-size: 0.7rem;}
    .footer-bottom a { font-size: 0.95rem;}
}

@media (max-width: 480px) {
    .footer-bottom       { flex-direction: column; align-items: flex-start; gap: 6px; }
    .footer-bottom { font-size: 0.7rem;}
    .footer-bottom a { font-size: 0.9rem;}
    .back-to-top { width: 40px; height: 40px; bottom: 225px; right: 19px; }
    
}