* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

body.light-mode {
    background: #f8f8f8;
    color: #0a0a0a;
}

#logo-main-big {
    height: 55vh;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

body.light-mode .cookie-consent {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: #333;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.cookie-text a {
    color: #4B93FF;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Space Grotesk", sans-serif;
}

.cookie-btn.accept {
    background: #4B93FF;
    color: white;
}

.cookie-btn.accept:hover {
    background: #3a7ae0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 147, 255, 0.3);
}

.cookie-btn.decline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.cookie-btn.decline:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

/* Logo Container */
.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    background: #fff;
}

body.light-mode .logo-container {
    background: #f8f8f8;
}

/* Cookie Settings Button */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

body.light-mode .cookie-settings-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-settings-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

body.light-mode .cookie-settings-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

.cookie-settings-btn svg {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.8);
}

body.light-mode .cookie-settings-btn svg {
    fill: rgba(0, 0, 0, 0.6);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: none;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    position: fixed;
    bottom: 6rem;
    left: 2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 420px;
    width: calc(100vw - 4rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.3s ease;
}

body.light-mode .cookie-modal-content {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-modal-icon {
    width: 44px;
    height: 44px;
    background: rgba(75, 147, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-icon svg {
    width: 24px;
    height: 24px;
    fill: #4B93FF;
}

.cookie-modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.cookie-modal-close:hover {
    background: #f0f0f0;
    color: #000;
}

.cookie-modal-body {
    color: #333;
    line-height: 1.6;
}

.cookie-status {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-status-item:last-child {
    margin-bottom: 0;
}

.cookie-status-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.cookie-status-value {
    font-family: monospace;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333;
    border: 1px solid #e0e0e0;
}

.cookie-status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-accepted {
    background: #d4edda;
    color: #155724;
}

.badge-declined {
    background: #f8d7da;
    color: #721c24;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-modal-btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Space Grotesk", sans-serif;
}

.cookie-modal-btn.accept {
    background: #4B93FF;
    color: white;
}

.cookie-modal-btn.accept:hover {
    background: #3a7ae0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 147, 255, 0.3);
}

.cookie-modal-btn.decline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.cookie-modal-btn.decline:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.cookie-info-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.cookie-info-text a {
    color: #4B93FF;
    text-decoration: none;
}

.cookie-info-text a:hover {
    text-decoration: underline;
}

/* Theme Switch */
.theme-switch-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1001;
}

.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 4em;
    height: 2.2em;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2a2a2a;
    transition: 0.4s;
    border-radius: 30px;
    overflow: hidden;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.2em;
    width: 1.2em;
    border-radius: 20px;
    left: 0.5em;
    bottom: 0.5em;
    transition: 0.4s;
    transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
    box-shadow: inset 8px -4px 0px 0px #fff;
}

.switch input:checked+.slider {
    background-color: #00a6ff;
}

.switch input:checked+.slider:before {
    transform: translateX(1.8em);
    box-shadow: inset 15px -4px 0px 15px #ffcf48;
}

.star {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    width: 5px;
    transition: all 0.4s;
    height: 5px;
}

.star_1 {
    left: 2.5em;
    top: 0.5em;
}

.star_2 {
    left: 2.2em;
    top: 1.2em;
}

.star_3 {
    left: 3em;
    top: 0.9em;
}

.switch input:checked~.slider .star {
    opacity: 0;
}

.cloud {
    width: 3.5em;
    position: absolute;
    bottom: -1.4em;
    left: -1.1em;
    opacity: 0;
    transition: all 0.4s;
}

.switch input:checked~.slider .cloud {
    opacity: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

body.light-mode nav {
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    height: 100px;
}

.logo img {
    height: 100%;
    width: auto;
}

.menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: opacity 0.3s;
}

body.light-mode .menu a {
    color: #0a0a0a;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4B93FF;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu a.active::after {
    opacity: 1;
    animation: waveMove 2s ease-in-out infinite;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: #888;
    margin-bottom: 3rem;
}

.cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40rem;
    align-items: center;
    margin-top: 1rem;
}

.cta-text {
    text-align: left;
}

.logo-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.light-mode .logo-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(75, 147, 255, 0.2);
}

.logo-card img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(75, 147, 255, 0.3);
}

/* Content Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    position: relative;
}

.section-grid {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.big-text {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 900px;
}

.gradient-text {
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

body.light-mode .card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.card:hover::before {
    opacity: 0.1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(75, 147, 255, 0.3);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.card p {
    color: #888;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

body.light-mode .card p {
    color: #555;
}

/* Split Section */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-image {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.split-text p {
    font-size: 1.2rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 2rem;
}

body.light-mode .split-text p {
    color: #555;
}

/* Numbers */
.numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 6rem 0;
}

.number-item {
    text-align: center;
}

.number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.number-label {
    color: #888;
    font-size: 1.1rem;
    font-weight: 500;
}

.number.counting {
    opacity: 0.7;
}

body.light-mode .number-label {
    color: #555;
}

/* Footer */
footer {
    padding: 6rem 4rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #888;
    line-height: 1.6;
}

body.light-mode .footer-desc {
    color: #555;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

body.light-mode .footer-links a {
    color: #555;
}

.footer-links a:hover {
    color: #4B93FF;
}

.footer-bottom {
    text-align: center;
    color: #555;
    padding-top: 3rem;
    font-size: 0.9rem;
}

body.light-mode .footer-bottom {
    color: #888;
}

/* Social Media Bar */
.social-bar {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 4rem;
    backdrop-filter: blur(10px);
}

body.light-mode .social-bar {
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.social-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.social-bar h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Tooltip Container */
.tooltip-container {
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 17px;
    border-radius: 10px;
}

.tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
        inset -5px -5px 15px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.3),
        -5px -5px 15px rgba(255, 255, 255, 0.1);
}

.tooltip-container:hover .tooltip {
    top: -150px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Profile Styles */
.profile {
    border-radius: 10px 15px;
    padding: 10px;
}

/* Instagram Profile */
.tooltip-container:has(.instagramSVG) .profile {
    background: #2a2b2f;
    border: 1px solid #52382f;
}

/* Facebook Profile */
.tooltip-container:has(.facebookSVG) .profile {
    background: #3b5998;
    border: 1px solid #29487d;
}

.user {
    display: flex;
    gap: 10px;
}

.img {
    width: 50px;
    height: 50px;
    font-size: 25px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* Instagram Image Border */
.tooltip-container:has(.instagramSVG) .img {
    border: 1px solid #e6683c;
}

/* Facebook Image Border */
.tooltip-container:has(.facebookSVG) .img {
    border: 1px solid #1877f2;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
}

.name {
    font-size: 17px;
    font-weight: 700;
}

/* Instagram Name Color */
.tooltip-container:has(.instagramSVG) .name {
    color: #e6683c;
}

/* Facebook Name Color */
.tooltip-container:has(.facebookSVG) .name {
    color: #1877f2;
}

.username {
    font-size: 14px;
    color: #fff;
}

.about {
    color: #ccc;
    padding-top: 5px;
    font-size: 14px;
}

/* Icon Styles */
.icon {
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
}

.layer {
    width: 55px;
    height: 55px;
    transition: transform 0.3s;
    position: relative;
}

.icon:hover .layer {
    transform: rotate(-35deg) skew(20deg);
}

.layer span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    transition: all 0.3s;
}

/* Instagram Layer */
.tooltip-container:has(.instagramSVG) .layer span {
    border-radius: 15px;
    border-color: #e6683c;
}

/* Facebook Layer */
.tooltip-container:has(.facebookSVG) .layer {
    border: 3px solid #1877f2;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
}

.tooltip-container:has(.facebookSVG) .icon:hover .layer {
    box-shadow: 0 0 30px rgba(24, 119, 242, 1), 0 0 40px rgba(24, 119, 242, 0.7);
}

.tooltip-container:has(.facebookSVG) .layer span {
    border-radius: 50%;
    border-color: #1877f2;
}

/* Instagram Hover Effects */
.tooltip-container:has(.instagramSVG) .icon:hover .layer span {
    box-shadow: -1px 1px 3px #e6683c;
}

/* Facebook Hover Effects */
.tooltip-container:has(.facebookSVG) .icon:hover .layer span {
    box-shadow: -1px 1px 3px #1877f2;
}

/* Text Below Icon */
.icon .text {
    position: absolute;
    left: 50%;
    bottom: -5px;
    opacity: 0;
    font-weight: 500;
    transform: translateX(-50%);
    transition: bottom 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.icon:hover .text {
    bottom: -35px;
    opacity: 1;
}

/* Instagram Text Color */
.tooltip-container:has(.instagramSVG) .icon .text {
    color: #e6683c;
}

/* Facebook Text Color */
.tooltip-container:has(.facebookSVG) .icon .text {
    color: #1877f2;
}

/* Layer Span Animation */
.icon:hover .layer span:nth-child(1) {
    opacity: 0.2;
}

.icon:hover .layer span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
}

.icon:hover .layer span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
}

.icon:hover .layer span:nth-child(4) {
    opacity: 0.8;
    transform: translate(15px, -15px);
}

.icon:hover .layer span:nth-child(5) {
    opacity: 1;
    transform: translate(20px, -20px);
}

.feedback-lightbox {
    position: fixed;
    top: 140px;
    right: 2rem;
    width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feedback-lightbox.show {
    opacity: 1;
    transform: translateX(0);
}

.feedback-lightbox.hidden {
    display: none;
}

body.light-mode .feedback-lightbox {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feedback-lightbox-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feedback-lightbox-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-lightbox-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.feedback-lightbox-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.feedback-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.feedback-lightbox-close:hover {
    background: #f0f0f0;
    color: #000;
}

.feedback-lightbox-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feedback-lightbox-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Space Grotesk", sans-serif;
    text-decoration: none;
    display: block;
    text-align: center;
}

.feedback-lightbox-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 147, 255, 0.3);
}

.feedback-lightbox-dismiss {
    width: 100%;
    padding: 0.5rem;
    background: transparent;
    color: #666;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
    font-family: "Space Grotesk", sans-serif;
    margin-top: 0.5rem;
}

.feedback-lightbox-dismiss:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-lightbox {
        top: auto;
        bottom: 6rem;
        right: 1rem;
        left: 1rem;
        width: calc(100vw - 2rem);
        max-width: 320px;
        margin: 0 auto;
    }

    .feedback-lightbox.show {
        transform: translateY(0);
    }

    .feedback-lightbox {
        transform: translateY(400px);
    }
}

@media (max-width: 480px) {
    .feedback-lightbox {
        padding: 1.25rem;
    }

    .feedback-lightbox-title {
        font-size: 1rem;
    }

    .feedback-lightbox-text {
        font-size: 0.85rem;
    }

    .feedback-lightbox-icon {
        width: 36px;
        height: 36px;
    }

    .feedback-lightbox-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* SVG Icons */
.instagramSVG {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    border-radius: 15px;
    width: 55px;
    height: 55px;
}

.facebookSVG {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,
            #1877f2 0%,
            #3b5998 25%,
            #1877f2 50%,
            #3b5998 75%,
            #1877f2 100%);
    border-radius: 50%;
    width: 55px;
    height: 55px;
}

.svgIcon {
    width: 25px;
    height: 25px;
}

/* Alles auf einen Blick Section */
.info-overview {
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
}

.info-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(75, 147, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    margin-top: 1rem;
    margin-bottom: 4rem;
    line-height: 1.6;
}

body.light-mode .section-subtitle {
    color: #555;
}

.info-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.light-mode .info-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(75, 147, 255, 0.3);
}

.info-card:hover::before {
    opacity: 0.1;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.info-card-icon.icon-blue {
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.info-card-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.info-card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}

body.light-mode .info-card-header h3 {
    color: #0a0a0a;
}

.info-card-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.info-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

body.light-mode .info-main {
    color: #0a0a0a;
}

.info-detail {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-description {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
}

body.light-mode .info-description {
    color: #555;
}

.info-card-footer {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.info-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(75, 147, 255, 0.1);
    border: 1px solid rgba(75, 147, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4B93FF;
    font-weight: 500;
}

.info-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

body.light-mode .info-cta-box {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-cta-content h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.info-cta-content p {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
}

body.light-mode .info-cta-content p {
    color: #555;
}

@media (max-width: 968px) {
    .info-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .info-overview {
        padding: 3rem 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .info-card:hover {
        transform: none;
    }

    .info-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .info-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .info-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .info-card-header h3 {
        font-size: 1.3rem;
    }

    .info-main {
        font-size: 1.2rem;
    }

    .info-detail {
        font-size: 1rem;
    }

    .info-description {
        font-size: 0.95rem;
    }

    .info-cta-box {
        padding: 2rem 1.5rem;
    }

    .info-cta-content h4 {
        font-size: 1.5rem;
    }

    .info-cta-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .info-overview {
        padding: 2rem 1rem;
    }

    .info-card {
        padding: 1.5rem 1rem;
    }

    .info-card-header h3 {
        font-size: 1.2rem;
    }

    .info-main {
        font-size: 1.1rem;
    }

    .info-detail {
        font-size: 0.95rem;
    }

    .info-cta-content h4 {
        font-size: 1.3rem;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .cookie-settings-btn {
        bottom: 5rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }

    .cookie-settings-btn svg {
        width: 20px;
        height: 20px;
    }

    .cookie-modal-content {
        bottom: 7rem;
        left: 1rem;
        right: 1rem;
        width: calc(100vw - 2rem);
        max-width: none;
        padding: 1.5rem;
    }

    .cookie-modal-title {
        font-size: 1.1rem;
    }

    .cookie-modal-header {
        gap: 0.75rem;
    }

    .cookie-modal-icon {
        width: 38px;
        height: 38px;
    }

    .cookie-modal-icon svg {
        width: 20px;
        height: 20px;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .cookie-status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cookie-status-value {
        width: 100%;
        word-break: break-all;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }

    nav {
        padding: 1rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
    }

    body.light-mode nav {
        background: rgba(248, 248, 248, 0.98);
    }

    .logo {
        height: 50px;
        position: relative;
        z-index: 1002;
    }

    nav::after {
        content: '☰';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        cursor: pointer;
        z-index: 1002;
        color: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.light-mode nav::after {
        color: #0a0a0a;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    body.light-mode .menu {
        background: rgba(248, 248, 248, 0.98);
    }

    .menu.mobile-active {
        left: 0;
    }

    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.light-mode .menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .menu a::after {
        display: none;
    }

    .hero {
        height: 100vh;
        min-height: 500px;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 0.9;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .social-bar {
        padding: 2rem 1rem;
    }

    .social-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-bar h3 {
        font-size: 1.3rem;
    }

    .social-buttons {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .tooltip-container:hover .tooltip {
        display: none;
    }

    .icon .text {
        display: none;
    }

    .layer {
        width: 50px;
        height: 50px;
    }

    .instagramSVG,
    .facebookSVG {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .big-text {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .card-icon svg {
        width: 26px;
        height: 26px;
    }

    .card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .card:hover {
        transform: none;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-image {
        height: 250px;
        border-radius: 16px;
        order: 1;
    }

    .split-text {
        order: 2;
    }

    .split-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .split-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }

    .number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .number-label {
        font-size: 0.8rem;
    }

    .cta-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
        position: static !important;
        left: 0 !important;
    }

    .cta-text {
        text-align: center;
    }

    .logo-card {
        position: static !important;
        right: 0 !important;
        margin: 0 auto;
        max-width: 250px;
    }

    .logo-card img {
        max-width: 100%;
    }

    footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        font-size: 1.3rem;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 0.8rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 2rem;
    }

    .theme-switch-wrapper {
        bottom: 1rem;
        right: 1rem;
    }

    .switch {
        font-size: 14px;
        width: 3.5em;
        height: 2em;
    }

    .slider:before {
        height: 1em;
        width: 1em;
        left: 0.4em;
        bottom: 0.5em;
    }

    .switch input:checked+.slider:before {
        transform: translateX(1.5em);
    }

    .star {
        width: 4px;
        height: 4px;
    }

    .cloud {
        width: 3em;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .big-text {
        font-size: 1.5rem;
    }

    .card {
        padding: 1.5rem 1rem;
    }

    .numbers {
        gap: 0.5rem;
    }

    .number {
        font-size: 1.8rem;
    }

    .number-label {
        font-size: 0.75rem;
    }

    .split-image {
        height: 200px;
    }

    .social-bar h3 {
        font-size: 1.1rem;
    }

    .layer {
        width: 45px;
        height: 45px;
    }

    .instagramSVG,
    .facebookSVG {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 1500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0 1rem;
    }

    .hero-content {
        transform: scale(0.75);
        transform-origin: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 0.85;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .cta {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    nav {
        padding: 0.5rem 1rem;
    }

    .logo {
        height: 40px;
    }

    .theme-switch-wrapper {
        bottom: 0.5rem;
        right: 0.5rem;
        transform: scale(0.8);
    }
}

@media (max-width: 667px) and (orientation: landscape) {
    .hero-content {
        transform: scale(0.65);
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .logo {
        height: 35px;
    }
}