:root {
    --primary-color: #0a3c1b;
    --accent-color: #1ed760;
    --text-color: #f5f5f5;
    --bg-dark: #050505;
    --bg-alt: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lexend', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
blockquote {
    font-family: var(--font-serif);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header p {
    font-weight: 300;
    color: #aaa;
}

.label {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

/* Utils */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(10, 60, 27, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 60, 27, 0.5);
    background-color: #0e5225;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-quiz {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    border: 1px solid #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: pulseGold 3s ease-in-out infinite;
}

.btn-quiz:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f, #ffd700);
}

@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    }
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 2rem 0;
    /* Bo logo jest duże */
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 100px;
    /* Zmniejszone przy scrollu dla wygody */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

/* Mobile Menu Toggle - Force Visibility */
.menu-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px !important;
    height: 21px !important;
    cursor: pointer;
    z-index: 9999 !important;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-toggle span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #ffffff !important;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--bg-dark));
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.buttons-container {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.card p {
    color: #aaa;
    margin-bottom: 2rem;
}

.card ul {
    list-style: none;
    color: #ddd;
}

.card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card ul li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 6rem;
    position: relative;
    padding-top: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Arrows between steps */
.step:nth-child(1)::after,
.step:nth-child(2)::after,
.step:nth-child(4)::after {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
}

/* Arrow from step 1 to step 2 (horizontal right) */
.step:nth-child(1)::after {
    content: '→';
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Arrow from step 2 down to step 3 (vertical down on right side) */
.step:nth-child(2)::after {
    content: '↓';
    left: 50%;
    bottom: -3.5rem;
    transform: translateX(-50%);
}

/* Arrow from step 3 to step 4 (horizontal left) */
.step:nth-child(4)::after {
    content: '←';
    left: -4rem;
    top: 50%;
    transform: translateY(-50%);
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(10, 60, 27, 0.6);
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.step p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background-color: #080808;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mission-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.accent-quote {
    font-size: 2rem;
    font-style: italic;
    color: white;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.mission-img img {
    width: 100%;
    border-radius: 30px;
    filter: grayscale(0.2) contrast(1.1);
}

.img-tilt {
    transform: rotate(3deg);
    transition: var(--transition);
}

.img-tilt:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Founders */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.founder-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founder-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    width: 80%;
    margin: 0 auto;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.founder-card:hover .founder-img img {
    transform: scale(1.1);
}

.founder-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.founder-info .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
/* FAQ Section - Static */
.faq-category {
    margin-bottom: 4rem;
}

.faq-category h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-static-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-static-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 3rem;
    /* Zwiększony padding */
    transition: var(--transition);
    height: 100%;
    /* Rozciągnięcie na wysokość */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-static-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.faq-question-static {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

.faq-answer-static {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #050505, #0a3c1b1a);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
    color-scheme: dark;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1.2rem) center;
}

option {
    background-color: #111;
    color: #fff;
}

.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
    color-scheme: dark;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.full-width {
    width: 100%;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--glass-border);
}

.newsletter-container {
    max-width: 1200px;
}

.newsletter-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.newsletter-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content p {
    color: #ccc;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.newsletter-input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input-group input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Checkbox Styling */
.newsletter-consent {
    color: #888;
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    display: block;
    min-width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    margin-top: 2px;
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--primary-color);
}

.checkbox-label input:checked~.checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked~.checkbox-custom:after {
    display: block;
}

.checkbox-text {
    line-height: 1.5;
}

.privacy-note {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    opacity: 0.7;
    padding-left: 32px;
    /* Align with text */
}

.privacy-note a {
    color: var(--accent-color);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
.nowrap {
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {

    .mission-grid,
    .contact-grid,
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-img {
        order: -1;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .logo-img {
        height: 60px;
    }

    .menu-toggle {
        display: flex !important;
        position: fixed !important;
        top: 30px !important;
        right: 30px !important;
    }

    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100svh !important;
        background: #050505 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 2rem !important;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0) !important;
        z-index: 9000 !important;
        margin: 0 !important;
        list-style: none !important;
        overflow-y: auto !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        margin: 1rem 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .nav-links a {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        font-weight: 500 !important;
        color: white !important;
        text-decoration: none !important;
        display: block !important;
        padding: 0.5rem !important;
    }

    .nav-links .btn {
        max-width: 250px !important;
        margin: 1rem auto !important;
        font-size: 0.9rem !important;
        padding: 0.8rem 1.5rem !important;
    }

    .nav-social-icons {
        margin-top: 2rem !important;
        gap: 1.5rem !important;
    }

    /* Process timeline responsive */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Fix mobile order: 1, 2, 4(Wdrożenie), 3(Niezależność) */
    .step:nth-child(4) {
        order: 1;
    }

    .step:nth-child(3) {
        order: 2;
    }

    .step:nth-child(1)::after,
    .step:nth-child(2)::after,
    .step:nth-child(4)::after {
        content: '↓';
        left: 50%;
        right: auto;
        top: auto;
        bottom: -2.5rem;
        transform: translateX(-50%);
    }

    .step:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        overflow-x: auto;
    }

    body.nav-open {
        overflow: hidden;
    }

    .glass-panel {
        padding: 2.5rem;
    }

    .faq-static-list {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        padding: 2.5rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group .btn {
        width: 100%;
    }
}

/* Legal Page Styles */
.legal-page {
    background-color: var(--bg-dark);
    min-height: 100vh;
}

.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 4rem;
}

.legal-nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-nav a:hover {
    color: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4rem;
    margin-bottom: 6rem;
    box-shadow: 0 0 50px rgba(30, 215, 96, 0.1);
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-family: var(--font-serif);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #eee;
}

.legal-content p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    color: #ccc;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-date {
    display: block;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.back-link {
    display: inline-block;
    color: white;
    text-decoration: underline;
    font-weight: 500;
    margin-top: 2rem;
    transition: var(--transition);
}

.back-link:hover {
    color: white;
    transform: translateX(-5px);
}

/* Legal Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .legal-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .legal-nav a {
        margin: 0 1rem;
    }
}

/* Social Media Icons */
.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    opacity: 0.8;
}

.social-icon:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}

.social-icon-stacked {
    flex-direction: column;
    gap: 2px;
}

.social-sub-icon {
    font-size: 0.8rem;
    line-height: 1;
}

/* Founders Social */
.founder-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

@media (max-width: 992px) {
    .nav-social-icons {
        margin: 1rem 0;
        justify-content: center;
    }
}

/* --- Expanded Survey Styles --- */
.form-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group.half {
    flex: 1;
}

.rating-scale {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 0.5rem;
}

.rating-scale span {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 80px;
    text-align: center;
}

.rating-options {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.rating-options label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #888;
    transition: var(--transition);
    font-size: 0.9rem;
}

.rating-options input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.rating-options label:hover {
    color: white;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 0.5rem;
}

.checkbox-group .checkbox-label {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .rating-scale {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .rating-scale span {
        width: 100%;
    }

    .rating-options {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }


    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Cookie Banner & Modal
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 2rem;
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-banner-text p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner-buttons .btn {
    white-space: nowrap;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    position: relative;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.cookie-modal-close:hover {
    color: white;
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-body>p {
    color: #ccc;
    margin-bottom: 2rem;
}

.cookie-category {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-category-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-category-info p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked+.cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked+.cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled+.cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 0.8rem 1.5rem;
}

/* Mobile Cookie Styles */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-banner-buttons .btn {
        width: 100%;
    }

    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-modal-header,
    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-toggle {
        align-self: flex-end;
    }

    .cookie-modal-footer {
        flex-direction: column;
        padding: 1.5rem;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }
}