/*
Theme Name:   Colab Child
Template:     hello-elementor
Version:      1.0
*/

/* === INDEX === */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            background: #0B1631;
            color: white;
            min-height: 100vh;
            overflow-x: hidden;
            max-width: 100vw;
        }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #F6C643;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
    display: none;
    position: fixed;
    top: 96px;
    left: 26px;
    right: 26px;
    background: #0B0F1A;
    border: 1px solid rgba(246, 198, 67, 0.3);
    border-radius: 8px;
    padding: 16px;
    z-index: 999;
    flex-direction: column;
    gap: 10px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-btn { width: 100%; height: 50px; }
@media (max-width: 768px) {
    .nav-buttons { display: none; }
    .hamburger   { display: flex; }
}
		
        /* Navbar */
        .navbar {
            position: fixed;
            top: 16px;
            left: 26px;
            right: 26px;
            height: 68px;
            background: #0B0F1A;
            border-radius: 8px;
            border: 1px solid rgba(246, 198, 67, 0.14);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 1000;
        }

        .logo {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: white;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .logo-icon {
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 50%;
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
        }

        .nav-btn {
            height: 47px;
            padding: 0 20px;
            background: #F6C643;
            border: 1px solid #0B0F1A;
            color: #0B0F1A;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 17px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding-top: 0;
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 100px;
            min-height: 100vh;
            background: linear-gradient(180deg, #061029 0%, #0B1631 100%);
            position: relative;
            overflow: visible;
        }

        .social-icons {
            position: absolute;
            top: 100px;
            right: 81px;
            display: flex;
            gap: 24px;
            background: rgba(12, 26, 53, 0.6);
            backdrop-filter: blur(10px);
            padding: 14px 28px;
            border-radius: 8px;
            border: 1px solid rgba(50, 92, 170, 0.3);
            z-index: 10;
        }

        .social-icons a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icons a:hover {
            opacity: 0.7;
        }

        .social-icons svg {
            width: 20px;
            height: 20px;
        }

        .hero-subtitle {
            position: absolute;
            top: 120px;
            left: 81px;
            color: #F6C643;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            z-index: 3;
        }

        .hero-background-image {
            position: absolute;
            width: 820px;
            height: 820px;
            top: -20px;
            left: 900px;
            z-index: 0;
            opacity: 0.15;
        }

        .hero-background-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hero-content-box {
            position: absolute;
            width: 893px;
            height: 218px;
            top: 155px;
            left: 81px;
            background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%);
            border: 1.2px solid rgba(50, 92, 170, 0.5);
            border-radius: 12px;
            padding: 40px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
            box-sizing: border-box;
        }

        .hero-title {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 42px;
            color: white;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 18px;
            color: #F8F9FB;
            margin-bottom: 24px;
            line-height: 1.4;
            font-family: 'Inter', sans-serif;
        }

        .cta-button {
            background: linear-gradient(90deg, #FF2D95 0%, #A845FF 100%);
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-weight: 900;
            font-size: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }

        .cta-button:hover {
            transform: translateX(5px);
        }

        /* SLIDER SECTION */
        .slider-section {
            position: relative;
            width: 100%;
            padding: 80px 0 80px 0;
            overflow: hidden;
            z-index: 5;
            margin-top: -375px;
        }

        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            animation: scroll 40s linear infinite;
            width: fit-content;
        }

        .slider-item {
            flex-shrink: 0;
            width: 600px;
            height: 420px;
            border-radius: 20px;
            overflow: hidden;
            border: 1.5px solid #F6C643;
            background: linear-gradient(135deg, #061029 0%, #0B1631 100%);
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        /* Partners Section */
        .partners-section {
            width: 100%;
            min-height: 100vh;
            position: relative;
            padding: 100px 190px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
			margin-bottom: 50px;
        }

       .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 50px;
    background: transparent;
    border: 2px solid #F6C643;
    border-radius: 60px;
    margin-bottom: 50px;
}

.section-badge-text {
    color: #F6C643;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
}

.badge-filled {
    background: #F6C643 !important;
    border: none !important;
}

.badge-filled .section-badge-text {
    color: #0B0F1A !important;
}

.badge-outline {
    background: transparent !important;
    border: 2px solid white !important;
}

.badge-outline .section-badge-text {
    color: white !important;
}


        .partners-cards {
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .partner-card {
            width: 380px;
            height: 260px;
            background: transparent;
            border: 1px solid #FFFFFF;
            border-radius: 30px;
            overflow: hidden;
        }

/* SEKCJA ZASADY FIRMY */
.principles-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
}

.principle-item {
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Żółty box 1,3 */
.principle-item.yellow-box {
    background: transparent;
    border: 3px solid #F6C643;
}

/* Czarny box 2,4 */
.principle-item.black-box {
    background: rgba(6, 16, 41, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.principle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.principle-header:hover {
    background: rgba(246, 198, 67, 0.1);
}

/* Lewa strona (1,3) */
.principle-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Prawa strona (2,4): przycisk po lewej, banner+numer po prawej */
.principle-right {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Wrapper dla bannera i numeru (2,4) – trzyma je blisko */
.principle-right-inner {
    display: flex;
    align-items: center;
    gap: 16px;          /* odległość baner–numer; zmniejsz/zwieksz wg uznania */
}

/* NUMERY – Afacad, złoty */

.principle-number {
    font-family: 'Afacad', sans-serif;
    font-size: 140px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #FFF6A3 0%, #FFD700 30%, #FFB000 65%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


/* BANER – obrazek + tekst, bez dodatkowych prostokątów z CSS */
.principle-banner {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 220px;
}

/* PNG colab gold / colab black */
.principle-banner-img {
    display: block;
    height: 80px;
    width: 280px;
    border-radius: 12px;
}

/* Tekst na bannerze – DM Sans */
.principle-banner-text {
    position: absolute;
    left: 33%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    pointer-events: none;
    width: 58%;
    white-space: normal;
}


/* ===== BANNER CSS (zastępuje PNG z tekstem) ===== */
.principle-banner-css {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 14px 16px 14px 24px;
    gap: 12px;
    min-width: 260px;
    overflow: visible;
}

.principle-banner-css.gold {
    border: 2px solid #F6C643;
    background: transparent;
}

.principle-banner-css.dark {
    border: 2px solid rgba(255,255,255,0.25);
    background: transparent;
}

.principle-banner-css-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    text-align: center;
    flex: 1;
}

.principle-item:nth-child(1) .principle-banner-css-text,
.principle-item:nth-child(3) .principle-banner-css-text {
    color: #fff;
}

.principle-item:nth-child(2) .principle-banner-css-text,
.principle-item:nth-child(4) .principle-banner-css-text {
    color: #fff;
}

.principle-banner-sygnet {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: -30px;
    margin-top: -4px;
    margin-bottom: -4px;
}

/* Wszystkie teksty na bannerze - białe */
.principle-item:nth-child(1) .principle-banner-text,
.principle-item:nth-child(2) .principle-banner-text,
.principle-item:nth-child(3) .principle-banner-text,
.principle-item:nth-child(4) .principle-banner-text {
    color: #FFFFFF;
}

/* colab black - sygnet po LEWEJ, tekst w prawej części, czarna czcionka */
.principle-item:nth-child(2) .principle-banner-text,
.principle-item:nth-child(4) .principle-banner-text {
    left: 67%;
    color: #0B0F1A;
}

.principle-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.principle-toggle:hover {
    background: rgba(246, 198, 67, 0.2);
    border-color: #F6C643;
}

.arrow-icon {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.principle-item.active .arrow-icon {
    transform: rotate(180deg);
}

.principle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.principle-item.active .principle-content {
    max-height: 500px;
}

.principle-description {
    padding: 10px 30px 30px 30px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
	text-align: center;
}

.principle-description.right-align {
    padding: 10px 30px 30px 30px;
    text-align: center;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .principles-section {
        padding: 60px 20px;
    }

    .principle-number {
        font-size: 60px;
    }

    .principle-description,
    .principle-description.right-align {
        padding: 0 20px 20px 20px;
        text-align: center;
    }

    .principle-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .principle-banner-img {
        height: 70px;
    }
}

        /* Target Audience Section - Dla Kogo */
        .audience-section {
            width: 100%;
            min-height: 100vh;
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .audience-header {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 60px;
        }

        .audience-title {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 42px;
            color: white;
            text-align: center;
            margin-bottom: 80px;
        }

        .audience-cards {
            display: flex;
            gap: 50px;
            justify-content: center;
            width: 100%;
            max-width: 1400px;
        }

        .audience-card {
            width: 400px;
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-items: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .audience-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .audience-card:nth-child(2) {
            animation-delay: 0.5s;
        }

        .audience-card:nth-child(3) {
            animation-delay: 0.8s;
        }

        .audience-icon {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .audience-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .audience-text-box {
            width: 100%;
            background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%);
            border: 1.2px solid rgba(50, 92, 170, 0.5);
            border-radius: 12px;
            padding: 30px 25px;
        }

        .audience-card-title {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: white;
            text-align: center;
            line-height: 1.3;
            margin: 0;
        }

        .audience-card-title .highlight {
            color: #F6C643;
            font-weight: 700;
        }

        .audience-card-desc {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            font-style: italic;
            color: white;
            text-align: center;
            line-height: 1.6;
        }

        /* About Section - O Nas */
        .about-section {
            width: 100%;
            min-height: 100vh;
            padding: 100px 80px;
        }

        .about-header {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 80px;
        }

        .badge-filled {
            background: #F6C643 !important;
            border: none !important;
        }

        .badge-filled .section-badge-text {
            color: #0B0F1A !important;
        }

        .badge-outline {
            background: transparent !important;
            border: 2px solid white !important;
        }

        .badge-outline .section-badge-text {
            color: white !important;
        }

        .about-content {
            display: flex;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .about-content .about-text-container {
            width: 100%;
        }

        .about-image-container {
            flex-shrink: 0;
        }

        .about-image {
            width: 435px;
            height: 600px;
            background: rgba(217, 217, 217, 0.1);
            border: 2px solid #F6C643;
            border-radius: 15px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-authors {
            color: #A9A9A9;
            font-family: 'Inter', sans-serif;
            font-style: italic;
            font-size: 12px;
            margin-top: 15px;
            line-height: 1.5;
        }

        .about-text-container {
            flex: 1;
            max-width: 100%;
            width: 100%;
        }

        .about-quote-wrapper {
            margin-bottom: 50px;
            position: relative;
        }

        .quote-line {
            width: 100%;
            max-width: 630px;
            height: 2px;
            background: white;
            margin: 20px 0;
        }

        .quote-line:first-child {
            margin-left: 0;
        }

        .quote-line:last-child {
            margin-left: auto;
        }

        .about-quote {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 38px;
            color: white;
            line-height: 1.4;
            margin: 0;
            text-align: center;
        }

        .about-quote .highlight {
            color: #F6C643;
            font-weight: 700;
        }

        .about-quote .underline {
            text-decoration: underline;
            text-decoration-color: white;
            text-underline-offset: 4px;
        }

        .quote-line-1,
        .quote-line-2,
        .quote-line-3 {
            display: inline-block;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .quote-line-1 {
            animation-delay: 0.2s;
        }

        .quote-line-2 {
            animation-delay: 0.6s;
        }

        .quote-line-3 {
            animation-delay: 1s;
        }

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


.about-box {
    background: transparent;
    border: 2px solid white;
    border-radius: 30px;
    padding: 35px;
    display: flex;
    align-items: center;
}

.about-boxes {
    display: grid;
    grid-template-columns: 35% 65%;
    grid-template-rows: auto auto;
    row-gap: 15px;         /* przywraca gap między wierszami */
    column-gap: 25px;
    max-width: 1400px;
    align-items: end;      /* boxes 1 i 2 przy dole */
}



/* Box 1 – lewy górny (mały, 35%) */
.about-box:nth-child(1) {
    grid-column: 1 / 2;
    min-height: 150px;
}

/* Box 2 – prawy górny (duży, 65%) */
.about-box:nth-child(2) {
    grid-column: 2 / 3;
    min-height: 100px;
    justify-content: center;
    text-align: center;
}

.about-box:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 185%;
    min-height: 100px;
    justify-content: center;
    text-align: center;
    align-self: start;     /* przyciąga box 3 do górnej krawędzi wiersza 2 */
}

/* Box 4 – prawy dolny (mały, 35% jak box 1) */
.about-box:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-self: end;
    width: 54%;  /* 35% całej szerokości */
    min-height: 150px;
}




        .about-box-text {
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
            font-size: 19px;
            color: white;
            line-height: 1.4;
        }

        .about-box-text .highlight {
            color: #F6C643;
            font-weight: 700;
        }
		

/* SEKCJA PRODUKT - FORMUŁY */
.education-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    scroll-margin-top: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.badge-outline-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    background: linear-gradient(90deg, #FF2D95 0%, #A845FF 50%, #6E3AFF 100%);
    border-radius: 60px;
    padding: 2px;
    border: none !important;
}

.badge-outline-gradient .section-badge-text {
    background: #061029;
    width: 100%;
    height: 100%;
    border-radius: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    border: none !important;
}


.formulas-intro {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.formulas-question {
    background: transparent;
    border: 3px solid #fff;
    border-radius: 50px;
    padding: 15px 35px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.formulas-question:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.formulas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.formula-card {
    background: linear-gradient(135deg, #0C1A35 0%, #224375 100%);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.formula-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 246, 163, 0.4);
}

.formula-header {
    background: transparent;
    padding: 40px 30px;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* ZŁOTY KWADRAT - MENTORING ROUND */
.formula-card.gold-card {
    background: linear-gradient(135deg, #FFF6A3 0%, #FFD700 50%, #FFB000 75%, #FFD700 100%);
}

.formula-card.gold-card .formula-header {
    background: transparent;
}

.formula-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.formula-card.gold-card .formula-name {
    color: #0B0F1A;
}

.formula-footer {
    background: #F6C643;
    padding: 15px;
    text-align: center;
    margin: 0;
}

.formula-card.gold-card .formula-footer {
    background: #000000;
}

.formula-button {
    color: #0B0F1A;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    margin: 0;
}

.formula-card.gold-card .formula-button {
    color: #FFF6A3;
}

/* MODALS */
.formula-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.formula-modal-content {
    background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%);
    margin: 10% auto;
    padding: 40px;
    border: 2px solid #F6C643;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.formula-modal-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #F6C643;
    margin-bottom: 20px;
}

.formula-modal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: white;
    line-height: 1.6;
}
.formula-modal-content p strong {
    color: #F6C643;
    font-weight: 700;
}
.formula-modal-content ul {
    padding-left: 20px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.formula-modal-content ul li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: white;
    line-height: 1.6;
}
.formula-modal-content ul li strong {
    color: #F6C643;
}

.formula-close {
    color: #F6C643;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.formula-close:hover {
    color: #FFD700;
}

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

@media (max-width: 768px) {
    .education-section {
        padding: 60px 20px;
    }
    
    .formulas-grid {
        grid-template-columns: 1fr;
    }
    
    .badge-outline-gradient {
        width: 100%;
        max-width: 300px;
    }
}

/* MODAL DLA ZŁOTEJ KARTY - MENTORING ROUND */
.formula-modal.gold-modal .formula-modal-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2000 100%);
    border: 3px solid #FFD700;
}

.formula-modal.gold-modal .formula-modal-content h2 {
    color: #FFD700;
}

.formula-modal.gold-modal .formula-modal-content p {
    color: white;
}

.formula-modal.gold-modal .formula-close {
    color: #FFD700;
}

.formula-modal.gold-modal .formula-close:hover {
    color: #FFF6A3;
}

/* Responsive */
@media (max-width: 1024px) {
    .formulas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .education-section {
        padding: 60px 20px;
    }

    .section-tags {
        flex-direction: column;
        align-items: center;
    }

    .badge-outline-gradient {
        width: 100%;
        max-width: 350px;
    }

    .formulas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .formula-modal-content {
        width: 90%;
        padding: 30px;
        margin: 20% auto;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .formulas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .education-section {
        padding: 60px 20px;
    }

    .section-tags {
        flex-direction: column;
        align-items: center;
    }

    .badge-outline-gradient {
        width: 100%;
        max-width: 350px;
    }

    .formulas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        width: 90%;
        padding: 30px;
        margin: 20% auto;
    }
}
/* SEKCJA EDUKACJA - AGENDA */
.education-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 0 40px;  /* ostatnia wartość 0 */
    scroll-margin-top: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.section-main-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.agenda-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 60px;
}

.agenda-left {
    align-self: auto;
}

.agenda-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #F6C643;
    line-height: 1.2;
    margin: 0 0 24px 0;
}
.agenda-left-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-top: 20px;
}
.agenda-left-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(246,198,67,0.15);
    border: 1px solid #F6C643;
    color: #F6C643;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.highlight-gold-bg {
    background: #F6C643;
    color: #0B0F1A;
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
}

.agenda-right {
    position: relative;
}

.agenda-cards-wrapper {
    position: relative;
    height: 480px auto;  /* zmień na odpowiednią wysokość karty */
    perspective: 1000px;
    margin-bottom: 20px;  /* mały odstęp od sceny */
}

.agenda-card {
    position: absolute;
    width: 100%;
    background: #172045;
    border: none;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity;
}

.agenda-card-logo {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    opacity: 0.15;
    z-index: 0;
}

.agenda-card-logo img {
    width: 300px;
    height: auto;
}

.agenda-card-header {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

/* bazowy styl taga */
.agenda-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
}

/* #merytoryka #84CC16 */
.agenda-tag.tag-merytoryka {
    background-color: #84CC16;
}

/* #kreatywność #F43F5E */
.agenda-tag.tag-kreatywnosc {
    background-color: #F43F5E;
}

/* #umiejętności #59B2FF */
.agenda-tag.tag-umiejetnosci {
    background-color: #59B2FF;
}

/* #inspiracja #F59E0B */
.agenda-tag.tag-inspiracja {
    background-color: #F59E0B;
}

/* #fun #E500FF */
.agenda-tag.tag-fun {
    background-color: #E500FF;
}

/* #twojaszansa #FFDD00 */
.agenda-tag.tag-twojaszansa {
    background-color: #FFDD00;
    color: #000; /* na żółtym lepiej czarny tekst */
}

.agenda-card-title {
    position: relative;
    z-index: 1;
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 3px solid #F6C643;
    margin-top: 15px;
}

.agenda-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.agenda-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.agenda-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #F6C643;
    font-weight: 700;
}

.agenda-time {
    position: relative;
    z-index: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.agenda-stage { margin-top: -40px; text-align: center; position: relative; z-index: 1; display: flex; justify-content: center; }

.agenda-stage img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.agenda-arrow {
    position: absolute;
    right: -80px;
    top: 150px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.agenda-arrow:hover {
    transform: scale(1.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #FF2D95 0%, #A845FF 100%);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .agenda-container {
        grid-template-columns: 1fr;
    }
    
    .agenda-arrow {
        right: 20px;
        top: auto;
        bottom: -80px;
    }
}

@media (max-width: 768px) {
    .education-section {
        padding: 60px 20px;
    }
    
    .agenda-subtitle {
        font-size: 32px;
    }
    
    .agenda-card-title {
        font-size: 28px;
    }
    
    .agenda-card {
        padding: 30px;
    }
}


        /* Responsive Design */
        @media (max-width: 1400px) {
            .principle-row {
                flex-direction: column !important;
                align-items: center;
            }

            .principle-blocks {
                flex-direction: column;
                width: 100%;
            }

            .principle-small-block,
            .principle-large-block {
                width: 100%;
                max-width: 500px;
            }

            .about-content {
                flex-direction: column;
                align-items: center;
            }

            .about-boxes {
                grid-template-columns: 1fr;
            }

            .about-box:nth-child(1),
            .about-box:nth-child(2),
            .about-box:nth-child(3),
            .about-box:nth-child(4) {
                transform: translateX(0);
            }
        }

        @media (max-width: 1200px) {
            .partners-section {
                padding: 80px 40px;
            }
            
            .partners-cards {
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .partner-card {
                width: 320px;
                height: 220px;
            }

            .audience-cards {
                flex-wrap: wrap;
                gap: 40px;
            }
            
            .audience-card {
                width: 350px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                height: auto;
                padding: 16px;
                left: 16px;
                right: 16px;
            }
            
            .nav-buttons {
			    display: none;
            }
            
            .nav-btn {
                font-size: 14px;
                padding: 0 16px;
            }
            
            .hero {
                padding: 100px 20px 40px;
            }

            .hero-content-box {
                width: calc(100% - 40px);
                left: 20px;
                height: auto;
                padding: 30px;
            }
            
            .hero-background-image {
                width: 300px;
                height: 300px;
                right: -50px;
                left: auto;
            }
            
            .hero-subtitle {
                left: 20px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .social-icons {
                right: 20px;
                top: 80px;
            }

            .slider-section {
                margin-top: -150px;
            }
            
            .slider-item {
                width: 280px;
                height: 200px;
            }
            
            .slider-track {
                gap: 16px;
                animation: scroll 30s linear infinite;
            }

            .partners-section {
                padding: 60px 20px;
            }
            
            .partners-cards {
                flex-direction: column;
            }
            
            .partner-card {
                width: 100%;
                max-width: 380px;
            }

            .principles-section {
                padding: 60px 20px;
            }

            .principle-number {
                font-size: 100px;
            }

            .audience-section {
                padding: 60px 20px;
            }
            
            .audience-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .audience-card {
                width: 100%;
                max-width: 400px;
            }

            .about-section {
                padding: 60px 20px;
            }
            
            .about-image {
                width: 100%;
                max-width: 400px;
                height: 500px;
            }
            
            .about-quote {
                font-size: 28px;
            }
        }

/* Target Audience Section - Dla Kogo */
.audience-section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-header {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.audience-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.audience-cards {
    display: flex;
    gap: 50px;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
}

.audience-card {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.audience-card:nth-child(1) {
    animation-delay: 0.2s;
}

.audience-card:nth-child(2) {
    animation-delay: 0.5s;
}

.audience-card:nth-child(3) {
    animation-delay: 0.8s;
}

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

.audience-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.audience-text-box {
    width: 100%;
    background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%);
    border: 1.2px solid rgba(50, 92, 170, 0.5);
    border-radius: 12px;
    padding: 30px 25px;
}

.audience-card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.audience-card-title .highlight {
    color: #F6C643;
    font-weight: 700;
}

.audience-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: white;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .audience-cards {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .audience-card {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .audience-section {
        padding: 60px 20px;
    }
    
    .audience-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .audience-card {
        width: 100%;
        max-width: 400px;
    }
    
    .audience-title {
        font-size: 32px;
    }
}

	
		/* SEKCJA EXTRA VALUE */
.extra-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    scroll-margin-top: 120px;
}

.extra-container {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.extra-separator {
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    min-height: 500px;
}

/* Lewa strona - Business Boost */
.boost-box {
    background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%);
    border: 1.2px solid rgba(50, 92, 170, 0.5);
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 30px;
}

.boost-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.boost-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}

.boost-description {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.companies-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(12, 26, 53, 0.5);
    border: 2px solid rgba(246, 198, 67, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.company-item:hover {
    border-color: #F6C643;
    transform: translateX(10px);
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #F6C643;
}

.company-info {
    flex: 1;
}

.company-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.company-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Prawa strona - Mastermindy */
.mastermind-box {
    background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%);
    border: 1.2px solid rgba(50, 92, 170, 0.5);
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 30px;
}

.mastermind-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.mastermind-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mastermind-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mastermind-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.mastermind-email {
    display: inline-block;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    text-decoration: none;
    padding: 15px 30px;
    background: rgba(246, 198, 67, 0.2);
    border: 2px solid #F6C643;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mastermind-email:hover {
    background: rgba(246, 198, 67, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .extra-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .extra-separator {
        display: none;
    }
}

@media (max-width: 768px) {
    .extra-section {
        padding: 60px 20px;
    }
    
    .boost-title,
    .mastermind-title {
        font-size: 28px;
    }
}

/* SEKCJA EDUKACJA FINAL */
.edukacja-final-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    scroll-margin-top: 120px;
}

.edukacja-final-section .section-header {
    margin-bottom: 50px;
}

.edukacja-final-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

/* Środek - Cytat i tekst */
.edukacja-center {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.edukacja-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.edukacja-author {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.edukacja-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 60px 0;
}

.edukacja-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}


.edukacja-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
}

.edukacja-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.edukacja-stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFF6A3 0%, #FFD700 30%, #FFB000 65%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.edukacja-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.edukacja-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .edukacja-stats-row {
        flex-direction: column;
        gap: 15px;
    }
    .edukacja-stat-divider {
        width: 60px;
        height: 1px;
    }
    .edukacja-stat-number {
        font-size: 36px;
    }
}

.edukacja-social-icons {
    display: flex;
    gap: 24px;
    background: rgba(12, 26, 53, 0.6);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(50, 92, 170, 0.3);
    width: fit-content;
}

.edukacja-social-icons a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edukacja-social-icons a:hover {
    opacity: 0.7;
}

.edukacja-social-icons svg {
    width: 20px;
    height: 20px;
}

/* Prawa strona - iPhone mockup z phone.png */
.edukacja-right {
    display: flex;
    justify-content: center;
}

.iphone-mockup {
    position: relative;
    width: 380px;
    max-width: 100%;
}

.iphone-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.iphone-frame-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.iphone-screen {
    position: absolute;
    top: 2.2%;
    left: 20%;
    width: 60%;
    height: 95.5%;
    border-radius: 46px;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.iphone-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



/* Video Controls */
.video-controls {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.video-play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn.hidden {
    display: none;
}

.video-skip-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.skip-btn,
.pause-play-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s;
}

.skip-btn:hover,
.pause-play-btn:hover {
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .edukacja-final-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .edukacja-center {
        order: 1;
    }
    
    .edukacja-right {
        order: 2;
    }
}

@media (max-width: 768px) {
    .edukacja-final-section {
        padding: 60px 20px;
    }
    
    .edukacja-quote {
        font-size: 20px;
    }
    
    .iphone-mockup {
        width: 280px;
    }
    
    .iphone-frame {
        width: 280px;
        height: 576px;
    }
}
	


  /* ===== NASZE WARTOŚCI - NOWY HEADER ===== */
  .about-values-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .about-values-header .about-header {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
  }

  .values-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .values-highlight {
    color: #F6C643;
  }

  .values-sub {
    color: #b0b8cc;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ===== NASZE WARTOŚCI - PANELS ===== */
  .about-section .panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    overflow: visible;
  }

  .about-section .panel {
    position: relative;
    overflow: visible;
    padding: 48px 52px 48px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-section .panel:last-child { border-right: none; }

  .about-section .panel__icon {
    position: absolute;
    bottom: -10px;
    right: 30px;
    z-index: 1;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .about-section .panel__icon svg {
    width: 120px;
    height: 120px;
  }
  .about-section .panel-1 .panel__icon svg { stroke: #2F1F59; fill: none; }
  .about-section .panel-2 .panel__icon svg { stroke: #1F2E48; fill: none; }
  .about-section .panel-3 .panel__icon svg { stroke: #34312A; fill: none; }

  .about-section .panel__text {
    position: relative;
    z-index: 2;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    color: #d0d8e8;
    line-height: 1.75;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
  }
  .about-section .panel__text span { color: #f0a500; font-weight: 600; }

  @media (max-width: 700px) {
    .about-section .panels { grid-template-columns: 1fr; }
    .about-section .panel { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .about-section .panel:last-child { border-bottom: none; }
  }

.logo-image {
    height: 40px;
    width: auto;
}

.badge-mindset .section-badge-text {
    color: white;
}

.badge-education {
    border: 2px solid #466EFF !important;
}

.badge-education .section-badge-text {
    color: white !important;
}


    
.nav-btn-partnerzy {
    background: transparent !important;
    border: 1px solid #F6C643 !important;
    color: #F6C643 !important;
}


.nav-btn-edukacja {
    background: transparent !important;
    border: 1px solid #466EFF !important;
    color: white !important;
}


.principle-banner-img {
    display: block;
    height: 80px;
    width: auto;
    border-radius: 0;
    overflow: visible;
}
.principle-header {
    overflow: visible;
}


        .site-footer {
            position: relative;
            z-index: 1;
            background: #060d1c;
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 64px 80px 40px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-brand {}
        .footer-logo-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }
        .footer-logo-img {
            height: 32px;
            width: auto;
            object-fit: contain;
        }
        .footer-brand-name {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: white;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .footer-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            line-height: 1.6;
            max-width: 240px;
        }
        .footer-col-title {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 14px;
        }
        .footer-contact-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 2px;
            opacity: 0.5;
        }
        .footer-contact-text {
            font-family: 'Inter', sans-serif;
            font-size: 13.5px;
            color: rgba(255,255,255,0.70);
            line-height: 1.5;
        }
        .footer-cta-col {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
        }
        .footer-cta-text {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: white;
            margin-bottom: 18px;
            line-height: 1.3;
        }
        .footer-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 46px;
            padding: 0 36px;
            background: linear-gradient(90deg, #FF2D95 0%, #A845FF 100%);
            border: none;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: #ffffff;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }
        .footer-cta-btn:hover { opacity: 0.9; transform: translateY(-2px); }
        .footer-divider {
            max-width: 1200px;
            margin: 0 auto 28px;
            height: 1px;
            background: rgba(255,255,255,0.07);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .footer-copy {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: rgba(255,255,255,0.28);
        }
        .footer-event-badge {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 12px;
            color: rgba(255,255,255,0.25);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        @media (max-width: 768px) {
            .site-footer { padding: 48px 20px 32px; }
            .footer-inner { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }



.colab-inline-logo {
    display: inline-block;
    vertical-align: middle;
    height: 1.4em;
    width: auto;
    position: relative;
    top: -0.1em;
    margin-left: -6px;
}

/* CTA nad sekcją partnerzy */
.partners-cta-header {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 80px;
}
.partners-cta-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}
.cta-offer-wrapper {
    display: inline-block;
    position: relative;
    border-radius: 9999px;
    padding: 3px;
    background: conic-gradient(
        from var(--ga, 0deg),
        transparent 0deg,
        transparent 70deg,
        rgba(255,255,255,0.6) 100deg,
        #ffffff 130deg,
        rgba(255,255,255,0.6) 160deg,
        transparent 200deg,
        transparent 360deg
    );
    animation: glowRotate 3s linear infinite;
}
@property --ga {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@keyframes glowRotate {
    from { --ga: 0deg; }
    to   { --ga: 360deg; }
}
.cta-offer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #F6C643;
    position: relative;
    z-index: 2;
    border-radius: 9999px;
    color: #0d1117;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    border-radius: 9999px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 180ms cubic-bezier(0.16,1,0.3,1), background 180ms cubic-bezier(0.16,1,0.3,1), box-shadow 180ms cubic-bezier(0.16,1,0.3,1);
    cursor: pointer;
    border: none;
    z-index: 1;
}
.cta-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.cta-offer:hover::before { transform: translateX(100%); }
.cta-offer:hover {
    background: #ffd84a;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(246,198,67,0.18);
}
.cta-offer:active { transform: translateY(0); }


.partner-section-group {
    width: 100%;
    margin-bottom: 40px;
}
.partner-section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}
.sponsor-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.event-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.media-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.partner-card-new {
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    aspect-ratio: 3/1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.partner-card-new:hover {
    border-color: rgba(246,198,67,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.partner-card-new.sponsor-main-card {
    aspect-ratio: 5/1.4;
}
@media (max-width: 768px) {
    .event-partners-grid, .media-partners-grid { grid-template-columns: 1fr 1fr; }
}


/* SEKCJA NEWSLETTER */
.newsletter-section { max-width: 900px; margin: 0 auto; padding: 80px 40px; }
.newsletter-box {
    max-width: 720px; width: 100%; margin: 0 auto;
    background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%);
    border: 1.2px solid rgba(50,92,170,.5); border-radius: 20px; padding: 48px 52px;
}
.newsletter-form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.newsletter-form-group { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 180px; }
.newsletter-form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.45); font-family: 'DM Sans', sans-serif; }
.newsletter-form-group input { height: 52px; padding: 0 18px; background: rgba(255,255,255,.05); border: 1.5px solid rgba(246,198,67,.3); border-radius: 8px; color: white; font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none; transition: border-color .3s; }
.newsletter-form-group input:focus { border-color: #F6C643; }
.newsletter-form-group input::placeholder { color: rgba(255,255,255,.2); }
.newsletter-checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; cursor: pointer; }
.newsletter-checkbox-group input[type="checkbox"] { display: none; }
.newsletter-checkbox-box { width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0; margin-top: 2px; border: 1.5px solid rgba(246,198,67,.4); background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.newsletter-checkbox-group input[type="checkbox"]:checked + .newsletter-checkbox-box { background: #F6C643; border-color: #F6C643; }
.newsletter-checkbox-group input[type="checkbox"]:checked + .newsletter-checkbox-box::after { content: '✓'; color: #0B0F1A; font-size: 13px; font-weight: 900; line-height: 1; }
.newsletter-checkbox-label { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; }
.newsletter-checkbox-label a { color: rgba(246,198,67,.7); text-decoration: underline; }
.newsletter-submit-btn { margin-top: 24px; width: 100%; height: 54px; background: #F6C643; border: none; border-radius: 8px; color: #0B0F1A; font-family: 'DM Sans', sans-serif; font-weight: 900; font-size: 16px; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; transition: all .3s; position: relative; overflow: hidden; }
.newsletter-submit-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%); transform: translateX(-100%); transition: transform .5s; }
.newsletter-submit-btn:hover::before { transform: translateX(100%); }
.newsletter-submit-btn:hover { background: #ffd84a; transform: translateY(-2px); }
.newsletter-form-note { margin-top: 14px; text-align: center; font-size: 12px; color: rgba(255,255,255,.25); font-family: 'DM Sans', sans-serif; }
@media (max-width: 768px) {
    .newsletter-section { padding: 60px 20px; }
    .newsletter-box { padding: 32px 24px; }
    .newsletter-form-row { flex-direction: column; }
}


/* Przycisk "Poznaj naszą historię" - gradient border */
.hero-history-btn-wrapper {
    display: inline-block;
    padding: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FF2D95 0%, #A845FF 50%, #6E3AFF 100%);
    align-self: flex-start;
    margin-top: 0;
}
.hero-history-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0C1A35;
    border: none;
    border-radius: 48px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.hero-history-btn:hover {
    background: rgba(12, 26, 53, 0.7);
}
    

/* === EVENT === */

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'DM Sans', sans-serif; background: #0B1631; color: white; min-height: 100vh; overflow-x: hidden; }

        .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 6px; z-index: 1001; }
        .hamburger span { display: block; width: 26px; height: 3px; background: #F6C643; border-radius: 3px; transition: all .3s; }
        .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        .mobile-menu { display: none; position: fixed; top: 96px; left: 26px; right: 26px; background: #0B0F1A; border: 1px solid rgba(246,198,67,.3); border-radius: 8px; padding: 16px; z-index: 999; flex-direction: column; gap: 10px; }
        .mobile-menu.open { display: flex; }
        .mobile-menu .nav-btn { width: 100%; height: 50px; }
        @media(max-width:768px){ .nav-buttons{display:none} .hamburger{display:flex} }

        .navbar { position: fixed; top: 16px; left: 26px; right: 26px; height: 68px; background: #0B0F1A; border-radius: 8px; border: 1px solid rgba(246,198,67,.14); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; z-index: 1000; }
        .logo { font-family: 'DM Sans',sans-serif; font-weight: 700; font-size: 24px; color: white; display: flex; align-items: center; gap: 5px; cursor: pointer; }
        .logo-image { height: 40px; width: auto; }
        .nav-buttons { display: flex; gap: 12px; }
        .nav-btn { height: 47px; padding: 0 20px; background: #F6C643; border: 1px solid #0B0F1A; color: #0B0F1A; font-family: 'DM Sans',sans-serif; font-weight: 700; font-size: 17px; cursor: pointer; border-radius: 4px; transition: all .3s; }
        .nav-btn:hover { opacity: .9; transform: translateY(-2px); }
        .nav-btn-partnerzy { background: transparent!important; border: 1px solid #F6C643!important; color: #F6C643!important; }
        .nav-btn-edukacja  { background: transparent!important; border: 1px solid #466EFF!important; color: white!important; }

        .page-wrapper { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 120px 40px 80px; position: relative; z-index: 1; overflow: hidden; }

        .bg-sygnet { position: absolute; bottom: -100px; left: -100px; width: 750px; height: 750px; opacity: .06; pointer-events: none; z-index: 0; }
        .bg-sygnet img { width: 100%; height: 100%; object-fit: contain; }

        .main-title { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: clamp(32px,5.5vw,68px); line-height: 1.15; text-align: center; margin-bottom: 20px; color: white; position: relative; z-index: 1; }
        .main-title .gold { color: #F6C643; }

        .chapter-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 60px; position: relative; z-index: 1; }
        .chapter-tag .blink { width: 8px; height: 8px; border-radius: 50%; background: #F6C643; animation: blink 1.6s ease-in-out infinite; flex-shrink: 0; }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

        .divider { width: 100%; max-width: 900px; height: 1px; background: rgba(255,255,255,.15); margin-bottom: 60px; position: relative; z-index: 1; }

        .timeline-wrapper { width: 100%; max-width: 900px; margin-bottom: 70px; position: relative; z-index: 1; overflow-x: auto; overflow-y: visible; padding: 30px 0; }
        .timeline { display: flex; flex-direction: row; align-items: flex-start; width: 100%; overflow: visible; }

        .tl-item { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 140px; opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; position: relative; overflow: visible; }
        .tl-item.visible { opacity: 1; transform: translateY(0); }

        .tl-item:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(50% + 22px); width: calc(100% - 44px); height: 2px; z-index: 0; }
        .tl-item.done-item:not(:last-child)::after { background: linear-gradient(90deg, #84CC16, rgba(132,204,22,.3)); }
        .tl-item.progress-item:not(:last-child)::after { background: linear-gradient(90deg, #F6C643, rgba(246,198,67,.1)); }

        .tl-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; position: relative; z-index: 2; margin-bottom: 16px; }
        .tl-icon.done { background: rgba(132,204,22,.15); border: 2px solid #84CC16; color: #84CC16; }
        .tl-icon.progress { background: rgba(246,198,67,.12); border: 2px solid #F6C643; color: #F6C643; }
        .tl-icon.progress::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; border: 2px solid #F6C643; animation: ripple 1.8s ease-out infinite; }
        @keyframes ripple { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2.2);opacity:0} }

        .tl-content { text-align: center; }
        .tl-name { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
        .tl-name.done-text { color: white; }
        .tl-name.progress-text { color: #F6C643; }
        .tl-status { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
        .tl-status.done-status { color: #84CC16; }
        .tl-status.progress-status { color: rgba(246,198,67,.7); }

        @media(max-width:600px){ .tl-item { min-width: 110px; } .tl-name { font-size: 12px; } }

        .waitlist-box { max-width: 720px; width: 100%; background: linear-gradient(135deg, #0C1A35 0%, #132D55 100%); border: 1.2px solid rgba(50,92,170,.5); border-radius: 20px; padding: 48px 52px; position: relative; z-index: 1; }
        .waitlist-title { font-size: clamp(20px,3vw,30px); font-weight: 700; line-height: 1.3; margin-bottom: 10px; text-align: center; }
        .waitlist-title .pink { color: #FF2D95; }
        .waitlist-title .purple { color: #FF2D95; }
        .waitlist-sub { font-size: 15px; color: rgba(255,255,255,.5); text-align: center; margin-bottom: 32px; line-height: 1.6; }
        .form-row { display: flex; gap: 16px; flex-wrap: wrap; }
        .form-group { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 180px; }
        .form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.45); }
        .form-group input { height: 52px; padding: 0 18px; background: rgba(255,255,255,.05); border: 1.5px solid rgba(246,198,67,.3); border-radius: 8px; color: white; font-family: 'DM Sans',sans-serif; font-size: 15px; outline: none; transition: border-color .3s; }
        .form-group input:focus { border-color: #F6C643; }
        .form-group input::placeholder { color: rgba(255,255,255,.2); }

        .checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; cursor: pointer; }
        .checkbox-group input[type="checkbox"] { display: none; }
        .checkbox-box { width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0; margin-top: 2px; border: 1.5px solid rgba(246,198,67,.4); background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; transition: all .2s; }
        .checkbox-group input[type="checkbox"]:checked + .checkbox-box { background: #F6C643; border-color: #F6C643; }
        .checkbox-group input[type="checkbox"]:checked + .checkbox-box::after { content: '✓'; color: #0B0F1A; font-size: 13px; font-weight: 900; line-height: 1; }
        .checkbox-label { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; }
        .checkbox-label a { color: rgba(246,198,67,.7); text-decoration: underline; }

        .submit-btn { margin-top: 24px; width: 100%; height: 54px; background: #F6C643; border: none; border-radius: 8px; color: #0B0F1A; font-family: 'DM Sans',sans-serif; font-weight: 900; font-size: 16px; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; transition: all .3s; position: relative; overflow: hidden; }
        .submit-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%); transform: translateX(-100%); transition: transform .5s; }
        .submit-btn:hover::before { transform: translateX(100%); }
        .submit-btn:hover { background: #ffd84a; transform: translateY(-2px); }
        .form-note { margin-top: 14px; text-align: center; font-size: 12px; color: rgba(255,255,255,.25); }

        .site-footer { position: relative; z-index: 1; background: #060d1c; border-top: 1px solid rgba(255,255,255,0.08); padding: 64px 80px 40px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand .footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
        .footer-logo-img { height: 32px; width: auto; object-fit: contain; }
        .footer-brand-name { font-family: 'DM Sans',sans-serif; font-weight: 700; font-size: 18px; color: white; letter-spacing: 1px; text-transform: uppercase; }
        .footer-tagline { font-family: 'Inter',sans-serif; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 240px; }
        .footer-col-title { font-family: 'DM Sans',sans-serif; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
        .footer-contact-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
        .footer-contact-text { font-family: 'Inter',sans-serif; font-size: 13.5px; color: rgba(255,255,255,0.70); line-height: 1.5; }
        .footer-cta-col { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
        .footer-cta-text { font-family: 'DM Sans',sans-serif; font-weight: 700; font-size: 20px; color: white; margin-bottom: 18px; line-height: 1.3; }
        .footer-cta-btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 36px; background: linear-gradient(90deg,#FF2D95 0%,#A845FF 100%); border: none; border-radius: 6px; font-family: 'DM Sans',sans-serif; font-weight: 700; font-size: 14px; color: #ffffff; cursor: pointer; text-decoration: none; transition: all .2s; }
        .footer-cta-btn:hover { opacity: .9; transform: translateY(-2px); }
        .footer-divider { max-width: 1200px; margin: 0 auto 28px; height: 1px; background: rgba(255,255,255,0.07); }
        .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
        .footer-copy { font-family: 'Inter',sans-serif; font-size: 12px; color: rgba(255,255,255,0.28); }
        .footer-event-badge { font-family: 'DM Sans',sans-serif; font-weight: 700; font-size: 12px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 2px; }

        @media(max-width:768px){
            .site-footer { padding: 48px 20px 32px; }
            .footer-inner { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .waitlist-box { padding: 32px 24px; }
            .form-row { flex-direction: column; }
            .main-title { font-size: 30px; }
        }
    

/* === SPONSORZY === */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'DM Sans', sans-serif;
    background: #0B1631;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.site-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: clip;
}

.bg-orb-1 {
    position: absolute;
    top: -200px;
    left: -300px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle at center, rgba(200,145,0,0.42) 0%, rgba(180,120,0,0.18) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bg-orb-2 {
    position: absolute;
    top: 800px;
    right: -500px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at center, rgba(100,40,200,0.32) 0%, rgba(160,30,120,0.16) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 16px;
    left: 26px;
    right: 26px;
    height: 68px;
    background: #0B0F1A;
    border-radius: 8px;
    border: 1px solid rgba(246,198,67,0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    cursor: pointer;
}

.logo-image { height: 40px; width: auto; }

.nav-buttons { display: flex; gap: 12px; }

.nav-btn {
    height: 47px;
    padding: 0 20px;
    background: #F6C643;
    border: 1px solid #0B0F1A;
    color: #0B0F1A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.nav-btn-partnerzy { background: transparent !important; border: 1px solid #F6C643 !important; color: #F6C643 !important; }
.nav-btn-edukacja { background: transparent !important; border: 1px solid #466EFF !important; color: white !important; }

.hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; background: transparent; border: none; cursor: pointer;
    padding: 6px; z-index: 1001;
}
.hamburger span { display: block; width: 26px; height: 3px; background: #F6C643; border-radius: 3px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    display: none; position: fixed; top: 96px; left: 26px; right: 26px;
    background: #0B0F1A; border: 1px solid rgba(246,198,67,0.3);
    border-radius: 8px; padding: 16px; z-index: 999;
    flex-direction: column; gap: 10px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-btn { width: 100%; height: 50px; justify-content: center; }

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

/* ══ STRONA ══ */
.sponsor-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px 100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sponsor-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: #F6C643;
    margin-bottom: 36px;
    line-height: 1.15;
}

.sponsor-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-contact {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #fff;
    line-height: 2;
    margin-bottom: 70px;
}
.sponsor-contact strong { font-weight: 700; }
.sponsor-contact a { color: #F6C643; text-decoration: none; font-weight: 700; }
.sponsor-contact a:hover { text-decoration: underline; }

/* ══ KARTY – badge konferencyjny ══ */
.cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    max-width: 320px;
}

/* smycz / linka */
.lanyard {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lanyard-clip-img {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: -52px;
    position: relative;
    z-index: 3;
}

/* Karta – dopasowuje się do treści, bez min-height */
.sponsor-card {
    width: 100%;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 28px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 8px 20px rgba(0,0,0,0.3);
}

.card-gold   { background: linear-gradient(180deg, #F6C643 0%, #C39D35 50%, #907427 100%); }
.card-blue   { background: linear-gradient(196.89deg, #244F91 11.65%, #0B172B 100%); }
.card-purple { background: linear-gradient(160deg, #1a1a6e 0%, #6b21a8 55%, #db2777 100%); }

.card-watermark {
    position: absolute;
    width: 75%;
    height: auto;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.card-gold .card-watermark {
    bottom: -40px;
    left: -40px;
    top: auto;
    right: auto;
    filter: brightness(0);
    width: 90%;
}

.card-blue-left .card-watermark {
    bottom: -40px;
    right: -40px;
    top: auto;
    left: auto;
    width: 90%;
}

.card-blue-right .card-watermark {
    bottom: -40px;
    left: -40px;
    top: auto;
    right: auto;
    width: 90%;
}

.card-purple .card-watermark {
    top: 20px;
    right: -40px;
    bottom: auto;
    left: auto;
    width: 90%;
}

.card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pasek tytułowy – jak na badge konferencyjnym */
.card-title-bar {
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    margin-top: -34px;
    margin-bottom: 18px;
    padding: 16px 20px;
    text-align: center;
}

.card-gold .card-title-bar {
    background: rgba(0,0,0,0.18);
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.card-blue .card-title-bar {
    background: rgba(246,198,67,0.15);
    border-bottom: 1px solid rgba(246,198,67,0.25);
}

.card-purple .card-title-bar {
    background: rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.4;
    text-align: center;
}

.card-gold .card-title   { color: #0B1631; }
.card-blue .card-title   { color: #F6C643; }
.card-purple .card-title { color: #fff; }

.card-list {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

.card-list li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 5px;
    padding-left: 16px;
    position: relative;
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.card-gold .card-list li { color: #0B1631; }
.card-gold .card-list li::before { color: #0B1631; }
.card-blue .card-list li,
.card-purple .card-list li { color: rgba(255,255,255,0.92); }
.card-blue .card-list li::before,
.card-purple .card-list li::before { color: rgba(255,255,255,0.6); }

.card-note {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.65;
    text-align: left;
    width: 100%;
    margin-top: 12px;
    color: rgba(255,255,255,0.9);
}

/* ══ STOPKA ══ */
.site-footer {
    position: relative;
    z-index: 1;
    background: #060d1c;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 64px 80px 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { height: 32px; width: auto; object-fit: contain; }
.footer-brand-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; color: white; letter-spacing: 1px; }
.footer-tagline { font-family: Inter, sans-serif; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 240px; }
.footer-col-title { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; color: white; }
.footer-contact-text { font-family: Inter, sans-serif; font-size: 13.5px; color: rgba(255,255,255,0.70); line-height: 1.5; }
.footer-cta-col { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.footer-cta-text { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 20px; color: white; margin-bottom: 18px; line-height: 1.3; }
.footer-cta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 46px; padding: 0 36px;
    background: linear-gradient(90deg, #FF2D95 0%, #A845FF 100%);
    border: none; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; color: #ffffff;
    cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.footer-cta-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.footer-divider { max-width: 1200px; margin: 0 auto; margin-bottom: 28px; height: 1px; background: rgba(255,255,255,0.07); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: Inter, sans-serif; font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-event-badge { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 12px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 2px; }

@media (max-width: 1000px) {
    .cards-row { flex-wrap: wrap; }
    .card-wrap { max-width: calc(50% - 12px); flex: 0 0 calc(50% - 12px); }
    .sponsor-title { font-size: 36px; }
}
@media (max-width: 560px) {
    .cards-row { flex-direction: column; align-items: center; }
    .card-wrap { max-width: 100%; flex: 0 0 100%; }
    .sponsor-title { font-size: 26px; }
    .sponsor-page { padding: 120px 20px 80px; }
}
@media (max-width: 768px) {
    .site-footer { padding: 48px 20px 32px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
