:root {
    --primary-color: #ffb400;
    --primary-gradient: linear-gradient(180deg, #ffd000 0%, #ff9d00 100%);
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #10151a;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

h2 {
    text-shadow: 0px 3px 6px #091934;
}

p {
    text-shadow: 0px 3px 6px #091934;
}

span {
    text-shadow: 0px 3px 6px #091934;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: rgba(10, 15, 25, 0.9);
    background: url(../img/menu_bg.png) no-repeat;
    padding: 15px 0;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.dropdown-icon {
    font-size: 10px;
    color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-gradient);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.4);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
    margin-top: 20px;
}

.arrow {
    margin-left: 10px;
    font-size: 0.8em;
    color: var(--text-light);
}

.hero {
    background: url('../img/bg.png') no-repeat center top;
    background-size: cover;
    height: 966px;
    position: relative;
    padding-top: 150px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    height: 100%;
}

.hero-content {
    max-width: 630px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
}

.cert-img {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 380px;
    z-index: 5;
}

.bottom-features {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.features-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 30px;
    padding-right: 400px;
}

.feature-item {
    text-align: center;
    width: 200px;
}

.feature-item h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.feature-item img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.separator {
    width: 2px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
}

.feature-item img:hover {
    transform: translateY(-5px);
}

.text-highlight {
    background: linear-gradient(to bottom, #FFD000 20%, #F9A000 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.5));
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.dot {
    color: var(--primary-color);
    margin: 0 5px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}


.benefits-list li::before {
    content: '✔';
    color: #ff5500;
    font-size: 20px;
    margin-right: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cert-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transform: rotate(-2deg);
}


.features-container {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.feature-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.feature-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.feature-item img:hover {
    transform: translateY(-5px);
}

.cert-info-section {
    background: #1a1d21 url('../img/bg_2.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-info-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cert-visual-wrapper {
    position: relative;
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-main-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    border-radius: 4px;
}


.btn-blue-overlap {
    position: absolute;
    bottom: -20px;
    background: linear-gradient(180deg, #1a3a6d 0%, #0d1f3d 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.btn-blue-overlap:hover {
    transform: scale(1.05);
    background: #244a8a;
}

.cert-info-text {
    flex: 2;
    color: #ffffff;
}

.cert-info-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.yellow-divider {
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, #ffd000 0%, transparent 100%);
    margin-bottom: 30px;
}

.cert-info-text p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #e0e0e0;
}

.partner-cta-section {
    background: #1a1d21 url('../img/bg_3.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.partner-cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.partner-visual-left {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.worker-img {
    max-height: 500px;
    width: auto;
}

.partner-badge-overlay {
    position: absolute;
    bottom: -166px;
    right: 20px;
    width: 220px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.partner-cta-content {
    flex: 4;
    text-align: center;
    color: #ffffff;
    padding: 0 40px;
    padding-top: 63px;
}

.partner-cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0px 3px 6px #091934;
}

.yellow-divider-middle {
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffd000 50%, transparent 100%);
    margin: 0 auto 25px auto;
}

.partner-cta-content p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 0px 3px 6px #091934;
}

.btn-yellow-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(180deg, #ffd000 0%, #f9a000 100%);
    color: #000;
    padding: 15px 45px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(255, 176, 0, 0.3);
    transition: transform 0.2s;
}

.btn-yellow-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 176, 0, 0.4);
}

.arrow-black {
    margin-left: 10px;
    font-size: 14px;
    color: #ffffff;/
}


.partner-visual-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.tablet-img {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(-20px 20px 40px rgba(0, 0, 0, 0.6));
}

.hero-content span {
    text-shadow: none;
}

.future-invest-section {
    background: url('../img/bg_4.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    position: relative;
    color: #ffffff;
    min-height: 500px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.yellow-divider-full {
    width: 600px;
    max-width: 90%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffd000 50%, transparent 100%);
    margin: 0 auto;
}

.icons-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px;
}

.circle-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(180deg, #ffc400 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 140, 0, 0.5);
}

.circle-icon img {
    width: 104px;
    height: auto;
}

.icon-item span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.ai-support-section {
    background: #1a1d21 url('../img/bg_5.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 474px;
}

.ai-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-visual {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.robot-img {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.chat-bubble {
    position: absolute;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    bottom: -10px;
}

.bubble-1 {
    top: -125px;
    right: 0px;
}

.bubble-1::after {
    left: 20px;
}


.bubble-2 {
    top: -22px;
    right: 62px;
}

.bubble-2::after {
    left: 20px;
}


.ai-content {
    flex: 1.2;
    text-align: right;
    color: #ffffff;
}

.ai-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.yellow-divider-right {
    width: 400px;
    height: 3px;
    background: linear-gradient(270deg, #ffd000 0%, transparent 100%);
    margin-left: auto;
    margin-bottom: 30px;
}

.ai-subtext {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.ai-subtext p:first-child {
    margin-bottom: 5px;
}

/* --- STOPKA --- */
.main-footer {
    background: url('../img/bg_6.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    padding: 80px 0 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 250px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-list,
.info-links {
    list-style: none;
    padding: 0;
}

.contact-list li {
    font-size: 14px;
    margin-bottom: 15px;
    color: #cccccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.info-links li::before {
    content: '•';
    color: #ffb400;
    position: absolute;
    left: 0;
}

.info-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.info-links a:hover {
    color: #ffb400;
}

/* Social Media */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #ffb400;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #999999;
}

.scroll-to-top {
    width: 40px;
    height: 40px;
    background: #ffb400;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.scroll-to-top:hover {
    background: #ffd000;
}

.chat-bubble span {
    text-shadow: 0px 3px 6px #fff;
}

@media (max-width: 992px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc,
    .contact-list li {
        max-width: 100%;
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .ai-flex {
        flex-direction: column;
        text-align: center;
    }

    .ai-content {
        margin-top: 50px;
        text-align: center;
    }

    .yellow-divider-right {
        margin: 0 auto 30px auto;
        background: linear-gradient(90deg, transparent 0%, #ffd000 50%, transparent 100%);
    }

    .chat-bubble {
        position: relative;
        top: 0;
        right: 0;
        margin: 10px auto;
        display: block;
        width: fit-content;
    }

    .chat-bubble::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .icons-grid {
        gap: 20px;
    }

    .icon-item {
        width: 140px;
    }

    .circle-icon {
        width: 70px;
        height: 70px;
    }

    .circle-icon img {
        width: 35px;
    }
}

@media (max-width: 1100px) {
    .partner-cta-content h2 {
        font-size: 26px;
    }

    .partner-cta-content p {
        font-size: 18px;
    }

    .worker-img,
    .tablet-img {
        max-height: 400px;
    }
}

@media (max-width: 850px) {
    .partner-cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .partner-visual-left,
    .partner-visual-right {
        justify-content: center;
    }

    .partner-badge-overlay {
        position: static;
        margin-top: -50px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .benefits-list li {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }

    .features-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cert-info-flex {
        flex-direction: column;
        text-align: center;
    }

    .yellow-divider {
        margin: 0 auto 30px auto;
        background: linear-gradient(90deg, transparent 0%, #ffd000 50%, transparent 100%);
    }

    .cert-visual-wrapper {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero::before {
        background: rgba(16, 25, 35, 0.8);
    }

    .subtitle {
        font-size: 14px;
    }

    .features-container {
        display: flex;
        align-items: start;
        justify-content: center;
        gap: 30px;
        padding-right: 0;
    }

    .features-container {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .ai-visual {
        position: relative;
        flex: 1;
        display: block;
        justify-content: center;
    }

    .info-links li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 0px;
    }

    .info-links li::before {
        position: relative;
        left: -14px;
    }
}