:root {
    --color-primary: #111827;
    --color-secondary: #4b5563;
    --color-light: #f9fafb;
    --color-white: #ffffff;
    --container-width: 1200px;
}

.container {
    width: min(100% - 32px, var(--container-width));
    margin-inline: auto;
}

.site-header {
    background: var(--color-white);
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-secondary);
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.site-main {
    min-height: calc(100vh - 162px);
}

.hero-section {
    padding: 96px 0;
    background: var(--color-light);
    text-align: center;
}

.hero-section h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.hero-section p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--color-secondary);
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-inner {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-section {
        padding: 64px 0;
        text-align: left;
    }
}


body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-weight: 600;
}

p {
    font-weight: 400;
}



.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    max-height: 64px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #b6904b;
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-contact-item:hover {
    color: #b6904b;
}

.header-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #b6904b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}

@media (max-width: 991px) {
    .header-inner {
        min-height: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .header-contact {
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .site-logo img {
        max-height: 54px;
    }

    .main-nav ul {
        gap: 12px 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .header-contact {
        width: 100%;
        align-items: center;
    }

    .header-contact-item {
        font-size: 13px;
    }
}


.header-icon {
    background: #003b7a;
}

.main-nav a {
    color: #003b7a;
}

.main-nav a:hover,
.header-contact-item:hover {
    color: #0057b8;
}

.header-contact-item {
    color: #003b7a;
}

.site-header {
    border-bottom: 1px solid rgba(0, 59, 122, 0.14);
}



.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 92px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 55, 0.18);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-title-img {
    display: block;
    max-width: 420px;
    width: 90%;
    height: auto;
}

.hero-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 620px;
    }

    .hero-title-img {
        max-width: 340px;
    }

    .hero-bottom {
        width: 78%;
        font-size: 21px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 520px;
    }

    .hero-title-img {
        max-width: 260px;
    }

    .hero-bottom {
        width: 100%;
        min-height: 54px;
        padding: 0 20px;
        font-size: 18px;
        clip-path: none;
    }
}



.services-section {
    padding: 80px 0 60px;
    background: #ffff;
}

.services-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* BOX LEWO/PRAWO */
.service-box {
    width: 32%;
    text-align: center;
    text-decoration: none;
    color: #003b7a;
    position: relative;
    transition: transform 0.25s ease;
}

.service-box img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

/* LINIE NAD I POD */
.service-box::before,
.service-box::after {
    content: "";
    display: block;
    width: 70%;
    height: 2px;
    background: #003b7a;
    margin: 0 auto 20px;
}

.service-box::after {
    margin-top: 20px;
}

/* HOVER */
.service-box:hover {
    transform: translateY(-6px);
}

.service-box:hover h3 {
    color: #0057b8;
}

/* ŚRODEK */
.service-center {
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-center img {
    max-width: 220px;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services-inner {
        flex-direction: column;
        gap: 50px;
    }

    .service-box,
    .service-center {
        width: 100%;
    }

    .service-box img {
        max-width: 280px;
    }
}



.logos-section {
    padding: 70px 0;
    background: #ffffff;
    text-align: center;
    border-top: 20px solid #045789
}

.logos-section h2 {
    margin: 0 0 38px;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: logosMoveLeft 28s linear infinite;
}

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

.logo-item {
    flex: 0 0 auto;
    width: 150px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
}

@keyframes logosMoveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .logo-track {
        gap: 35px;
        animation-duration: 20s;
    }

    .logo-item {
        width: 120px;
    }

    .logo-item img {
        max-width: 120px;
    }
}


.contact-section {
    position: relative;
    min-height: 520px;
    padding: 90px 0;
    overflow: hidden;
    color: #ffffff;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 23, 50, 0.72), rgba(0, 23, 50, 0.72)),
        url("/img/tlofooter.png") center/cover no-repeat;
    z-index: 1;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 32px;
    margin: 0 0 24px;
    font-weight: 500;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 34px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.contact-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #003b7a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-ico svg {
    width: 17px;
    height: 17px;
    fill: #ffffff;
}

.contact-form {
    background: rgba(0, 59, 122, 0.62);
    padding: 24px;
    display: grid;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-radius: 3px;
    padding: 12px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.45;
}

.form-consent input {
    width: auto;
    margin-top: 3px;
}

.contact-form button {
    border: 0;
    background: #0d1b2f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    padding: 13px 24px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #003b7a;
}

@media (max-width: 991px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        max-width: 520px;
    }
}


.contact-mapa {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #f5f5f5;
}

.contact-mapa iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

@media (max-width: 768px) {
    .contact-mapa {
        height: 340px;
    }
}


.subhero-section {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001f42;
}

.subhero-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 240px);
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    transform: translateY(0);
    will-change: transform;
}

.subhero-section:hover .subhero-bg {
    transform: translateY(-45px);
    transition: transform 1.4s ease;
}

.subhero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    z-index: 2;
    pointer-events: none;
}

.subhero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.subhero-content img {
    display: block;
    max-width: 240px;
    width: 90%;
    height: auto;
}

.subhero-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}

/* Efekt parallax przy przewijaniu — dodaj też JS pod spodem */
.subhero-bg.is-parallax {
    transition: transform 0.05s linear;
}

@media (max-width: 768px) {
    .subhero-section {
        height: 480px;
    }

    .subhero-bg {
        top: 0;
        height: 100%;
        transform: none !important;
    }

    .subhero-content img {
        max-width: 200px;
    }

    .subhero-bottom {
        width: 100%;
        min-height: 54px;
        font-size: 20px;
        clip-path: none;
    }
}


.about-content-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.about-parallax-bg {
    position: absolute;
    inset: -140px 0;
    background: url("/img/tlon.png") center / cover no-repeat fixed;
    z-index: 1;
}

.about-content-box {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    background: rgba(255, 255, 255, 0.82);
    padding: 28px 32px 50px;
}

.about-grid-top,
.about-grid-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 28px;
}

.about-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-text h3 {
    margin: 0 0 12px;
    color: #008bb5;
    font-size: 16px;
    font-weight: 700;
}

.about-text p {
    margin: 0 0 12px;
    color: #111827;
    font-size: 15px;
    line-height: 1.65;
}

.about-full {
    margin-bottom: 26px;
}

.about-separator {
    height: 82px;
    margin: 30px 0;
    background: rgba(20, 20, 20, 0.88);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin: 40px 0 28px;
}

.about-card img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    margin-bottom: 14px;
}

.about-card p {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .about-content-box {
        padding: 26px 20px 40px;
    }

    .about-grid-top,
    .about-grid-middle,
    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-img,
    .about-card img {
        height: auto;
    }
}


.energy-section {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PARALLAX TŁO */
.energy-bg {
    position: absolute;
    inset: -120px 0;
    background: url("/img/d1.png") center / cover no-repeat;
    z-index: 1;
    transform: translateY(0);
    will-change: transform;
}

/* PRZYCIEMNIENIE */
.energy-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

.energy-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* BOX */
.energy-box {
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 18px 22px;
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
}

/* ROZMIARY */
.energy-box-small {
    max-width: 420px;
    font-size: 13px;
}

.energy-box-main {
    max-width: 720px;
}

.energy-box-bottom {
    max-width: 420px;
    font-size: 13px;
}

/* DOLNY PASEK */
.energy-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 60%;
    min-height: 60px;
    background: rgba(40,40,40,0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}

/* PARALLAX JS SUPPORT */
.energy-bg.parallax {
    transition: transform 0.05s linear;
}

@media (max-width: 768px) {
    .energy-section {
        min-height: 520px;
    }

    .energy-bottom {
        width: 100%;
        clip-path: none;
    }
}


.energy-icons-section {
    padding: 55px 0 65px;
    background: #ffffff;
}

.energy-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    align-items: start;
    text-align: center;
}

.energy-icon-box img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
}

.energy-icon-box p {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}

@media (max-width: 768px) {
    .energy-icons-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.energy-info-section {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.energy-info-bg {
    position: absolute;
    inset: -140px 0;
    background: url("/img/d2.png") center / cover no-repeat fixed;
    z-index: 1;
}

.energy-info-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 55, 0.08);
    z-index: 2;
}

.energy-info-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.energy-info-box {
    padding: 46px 52px;
    font-size: 16px;
    line-height: 1.65;
}

.energy-info-box p {
    margin: 0 0 16px;
}

.energy-info-light {
    background: rgba(255, 255, 255, 0.72);
    color: #111827;
}

.energy-info-dark {
    background: rgba(35, 30, 30, 0.72);
    color: #ffffff;
}

.energy-info-dark h3 {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .energy-info-section {
        min-height: auto;
    }

    .energy-info-bg {
        background-attachment: scroll;
    }

    .energy-info-inner {
        grid-template-columns: 1fr;
    }

    .energy-info-box {
        padding: 32px 24px;
    }
}



@media (max-width: 768px) {
    .energy-section {
        min-height: auto;
        padding: 40px 0 70px;
        display: block;
    }

    .energy-inner {
        gap: 14px;
        padding: 0 16px;
    }

    .energy-box {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        font-size: 13px;
        line-height: 1.45;
    }

    .energy-box-main {
        max-height: none;
        font-size: 13px;
    }

    .energy-box-bottom {
        margin-bottom: 20px;
    }

    .energy-bottom {
        position: relative;
        width: 100%;
        min-height: 54px;
        margin-top: 20px;
        clip-path: none;
        font-size: 20px;
    }
}


.cost-section {
    background: #ffffff;
}

.cost-section h2 {
    margin: 0;
    padding: 24px 20px;
    text-align: center;
    color: #003b7a;
    font-size: 28px;
    font-weight: 700;
}

.cost-dark {
    background: #152634;
    padding: 45px 0;
    color: #ffffff;
}

.cost-grid {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 80px;
    align-items: center;
}

.cost-list {
    text-align: center;
    font-size: 15px;
    line-height: 1.55;
}

.cost-list p {
    margin: 0 0 16px;
}

.cost-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cost-phone img {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
}

.cost-bottom {
    padding: 40px 0 60px;
    background: #ffffff;
    text-align: center;
}

.cost-bottom p {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cost-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cost-phone {
        order: -1;
    }

    .cost-phone img {
        max-width: 260px;
    }

    .cost-section h2 {
        font-size: 23px;
    }
}


.engineering-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engineering-bg {
    position: absolute;
    inset: -120px 0;
    background: url("/img/u1.png") center / cover no-repeat fixed;
    z-index: 1;
}

.engineering-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.engineering-center-box {
    position: relative;
    z-index: 3;
    width: 320px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    text-align: center;
    padding: 20px 20px;
    font-size: 14px;
    line-height: 1.55;
}

.engineering-center-box p {
    margin: 0;
}

.engineering-center-box img {
    display: block;
    width: 290px;
    height: auto;
    margin: 28px auto;
}

.engineering-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
    .engineering-hero {
        min-height: 620px;
        padding: 60px 16px 90px;
    }

    .engineering-bg {
        background-attachment: scroll;
    }

    .engineering-center-box {
        width: 100%;
        max-width: 330px;
    }

    .engineering-bottom {
        width: 100%;
        clip-path: none;
        font-size: 20px;
        padding: 0 20px;
    }
}


.engineering-intro {
    background: #ffffff;
    padding: 28px 20px 34px;
    text-align: center;
}

.engineering-intro h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.engineering-intro p {
    max-width: 980px;
    margin: 0 auto;
    color: #111827;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

@media (max-width: 768px) {
    .engineering-intro {
        padding: 26px 16px 30px;
    }

    .engineering-intro h2 {
        font-size: 14px;
        line-height: 1.45;
    }

    .engineering-intro p {
        font-size: 14px;
    }
}


.engineering-display-section {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.engineering-display-bg {
    position: absolute;
    inset: -120px 0;
    background: url("/img/u2.png") center / cover no-repeat fixed;
    z-index: 1;
}

.engineering-display-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.engineering-display-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 80px;
    align-items: center;
}

.engineering-display-box {
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    padding: 22px 24px;
    font-size: 15px;
    line-height: 1.6;
}

.engineering-display-gif {
    display: flex;
    align-items: center;
    justify-content: center;
}

.engineering-display-gif img {
    max-width: 190px;
    width: 100%;
    height: auto;
    display: block;
    background: rgba(0, 0, 0, 0.45);
    padding: 18px;
}

@media (max-width: 991px) {
    .engineering-display-section {
        min-height: auto;
        padding: 60px 0;
    }

    .engineering-display-bg {
        background-attachment: scroll;
    }

    .engineering-display-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .engineering-display-gif {
        order: -1;
    }

    .engineering-display-box {
        text-align: center;
    }
}


.engineering-white-text {
    background: #ffffff;
    padding: 32px 20px;
    text-align: center;
}

.engineering-white-text p {
    margin: 0 0 14px;
    color: #111827;
    font-size: 16px;
    line-height: 1.6;
}

.engineering-white-text p:last-child {
    margin-bottom: 0;
}

.engineering-services-bg {
    position: relative;
    min-height: 230px;
    padding: 55px 0;
    overflow: hidden;
    background: url("/img/u2.png") center / cover no-repeat fixed;
}

.engineering-services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.engineering-services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    color: #ffffff;
}

.engineering-services-grid p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.engineering-extra {
    background: #ffffff;
    padding: 32px 20px 42px;
    text-align: center;
}

.engineering-extra h3 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.engineering-extra hr {
    max-width: 1180px;
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 0 auto 22px;
}

.engineering-extra p {
    margin: 0 0 8px;
    color: #111827;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .engineering-services-bg {
        background-attachment: scroll;
    }

    .engineering-services-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .engineering-white-text p,
    .engineering-extra p,
    .engineering-services-grid p {
        font-size: 14px;
    }
}


.oze-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oze-bg {
    position: absolute;
    inset: -120px 0;
    background: url("/img/in1.png") center / cover no-repeat fixed;
    z-index: 1;
}

.oze-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 45, 0.18);
    z-index: 2;
}

.oze-center-box {
    position: relative;
    z-index: 3;
    width: 320px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.oze-center-box p {
    margin: 0;
    padding: 16px 18px;
}

.oze-center-box img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    opacity: 0.72;
    border-top: 3px solid rgba(255, 255, 255, 0.7);
    border-bottom: 3px solid rgba(255, 255, 255, 0.7);
}

.oze-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
    .oze-hero {
        min-height: 620px;
        padding: 60px 16px 90px;
    }

    .oze-bg {
        background-attachment: scroll;
    }

    .oze-center-box {
        width: 100%;
        max-width: 330px;
    }

    .oze-bottom {
        width: 100%;
        clip-path: none;
        font-size: 20px;
        padding: 0 20px;
    }
}


.oze-intro {
    background: #ffffff;
    padding: 42px 20px 46px;
    text-align: center;
}

.oze-intro h2 {
    margin: 0 0 18px;
    color: #8f9cc9;
    font-size: 24px;
    font-weight: 700;
}

.oze-intro h3 {
    max-width: 920px;
    margin: 0 auto 18px;
    color: #8f9cc9;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.oze-intro-icon {
    display: block;
    width: 95px;
    height: auto;
    margin: 16px auto 28px;
}

.oze-intro p {
    max-width: 980px;
    margin: 0 auto;
    color: #111827;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .oze-intro h2,
    .oze-intro h3 {
        font-size: 20px;
    }

    .oze-intro-icon {
        width: 76px;
    }

    .oze-intro p {
        font-size: 14px;
    }
}


.oze-dark-info {
    background: #152634;
    padding: 38px 0;
    color: #ffffff;
}

.oze-dark-grid {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 70px;
    align-items: center;
}

.oze-dark-text {
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
}

.oze-dark-text p {
    margin: 0;
}

.oze-dark-gif {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oze-dark-gif img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.75;
}

.oze-wind-section {
    background: #ffffff;
    padding: 50px 20px 34px;
    text-align: center;
}

.oze-wind-section h2 {
    margin: 0 0 20px;
    color: #9b3b35;
    font-size: 23px;
    font-weight: 400;
}

.oze-wind-section p {
    max-width: 1280px;
    margin: 0 auto;
    color: #000000;
    font-size: 22px;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .oze-dark-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .oze-dark-text {
        text-align: center;
        font-size: 14px;
    }

    .oze-dark-gif {
        order: -1;
    }

    .oze-dark-gif img {
        max-width: 260px;
    }

    .oze-wind-section h2 {
        font-size: 20px;
    }

    .oze-wind-section p {
        font-size: 17px;
    }
}


.oze-parallax-text {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.oze-parallax-bg {
    position: absolute;
    inset: -120px 0;
    background: url("/img/d2.png") center / cover no-repeat fixed;
    z-index: 1;
}

.oze-parallax-text::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 55, 0.08);
    z-index: 2;
}

.oze-parallax-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 38px 20px;
    background: rgba(255, 255, 255, 0.72);
    text-align: left;
}

.oze-parallax-content p {
    max-width: 1160px;
    margin: 0 auto;
    color: #111827;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .oze-parallax-bg {
        background-attachment: scroll;
    }

    .oze-parallax-content {
        padding: 28px 18px;
    }
}



.oze-cta {
    background: #ffffff;
    padding: 52px 20px 48px;
    text-align: center;
}

.oze-cta h2 {
    margin: 0 0 18px;
    color: #9b3b35;
    font-size: 24px;
    font-weight: 400;
}

.oze-cta p {
    margin: 0 auto;
    color: #000000;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .oze-cta {
        padding: 40px 16px;
    }

    .oze-cta h2 {
        font-size: 20px;
    }

    .oze-cta p {
        font-size: 18px;
    }
}


.hybrid-video-section {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #001f42;
}

.hybrid-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hybrid-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 55, 0.12);
    z-index: 2;
}

.hybrid-title-section {
    background: #ffffff;
    padding: 34px 20px;
    text-align: center;
}

.hybrid-title-section h1 {
    margin: 0;
    color: #003b7a;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hybrid-video-section {
        height: 460px;
    }

    .hybrid-title-section h1 {
        font-size: 22px;
    }
}



.hybrid-info-section {
    background: #ffffff;
    padding: 42px 20px 38px;
    text-align: center;
}

.hybrid-info-section h2 {
    margin: 0 0 16px;
    color: #003b7a;
    font-size: 26px;
    font-weight: 500;
}

.hybrid-info-section p {
    max-width: 880px;
    margin: 0 auto;
    color: #111827;
    font-size: 16px;
    line-height: 1.55;
}

.hybrid-battery-section {
    background: #ffffff;
    border-top: 48px solid #00608c;
    border-bottom: 48px solid #00608c;
    padding: 34px 20px 44px;
    text-align: center;
}

.hybrid-icon {
    display: block;
    width: 74px;
    height: auto;
    margin: 0 auto 24px;
}

.hybrid-battery-section p {
    max-width: 980px;
    margin: 0 auto;
    color: #111827;
    font-size: 16px;
    line-height: 1.6;
}


.hybrid-ad-section {
    position: relative;
    min-height: 430px;
    padding: 210px 20px 0;
    overflow: hidden;
}

.hybrid-ad-bg {
    position: absolute;
    inset: 0;
    background: url("../img/nnn.png") center / cover no-repeat;
    z-index: 1;
}

.hybrid-ad-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 96, 140, 0.08);
    z-index: 2;
}

.hybrid-ad-box {
    position: relative;
    z-index: 3;
    max-width: 900px;
    background: #ffffff;
    padding: 24px 38px 28px;
    text-align: center;
}

.hybrid-ad-box h2 {
    margin: 0 0 12px;
    color: #003b7a;
    font-size: 24px;
    font-weight: 500;
}

.hybrid-ad-box p {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .hybrid-ad-section {
        min-height: 360px;
        padding: 160px 16px 0;
    }

    .hybrid-ad-box {
        padding: 22px 20px;
    }

    .hybrid-ad-box h2 {
        font-size: 20px;
    }
}


.hybrid-specs-section {
    background: #ffffff;
    padding: 60px 20px 54px;
}

.hybrid-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 90px;
    text-align: center;
}

.hybrid-spec-item img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.hybrid-spec-item h3 {
    margin: 0 0 22px;
    color: #000000;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.hybrid-spec-item p {
    margin: 0 0 18px;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.percent-icon {
    color: #003b7a;
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 16px;
}

.hybrid-description-section {
    background: #ffffff;
    border-top: 20px solid #00608c;
    padding: 26px 20px 30px;
    text-align: center;
}

.hybrid-description-section p {
    max-width: 1380px;
    margin: 0 auto;
    color: #000000;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .hybrid-specs-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hybrid-specs-section {
        padding: 44px 16px;
    }

    .hybrid-spec-item img {
        width: 62px;
        height: 62px;
    }

    .percent-icon {
        font-size: 62px;
    }
}





.hybrid-ad-section {
    position: relative;
    min-height: 430px;
    padding: 210px 20px 0;
    overflow: hidden;
    background: url("/img/nnn.png") center center / cover no-repeat;
}

.hybrid-ad-bg {
    position: absolute;
    inset: 0;
    background: url("/img/nnn.png") center center / cover no-repeat;
    z-index: 1;
}

.hybrid-ad-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 96, 140, 0.08);
    z-index: 2;
}

.hybrid-ad-box {
    position: relative;
    z-index: 3;
    max-width: 900px;
    background: #ffffff;
    padding: 24px 38px 28px;
    text-align: center;
}

.hybrid-ad-box h2 {
    margin: 0 0 12px;
    color: #003b7a;
    font-size: 24px;
    font-weight: 500;
}

.hybrid-ad-box p {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .hybrid-ad-section {
        min-height: 360px;
        padding: 160px 16px 0;
        background-attachment: scroll;
    }

    .hybrid-ad-box {
        padding: 22px 20px;
    }

    .hybrid-ad-box h2 {
        font-size: 20px;
    }
}


.career-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001f42;
}

.career-bg {
    position: absolute;
    inset: 0;
    background: url("/img/k1.png") center center / cover no-repeat;
    z-index: 1;
}

.career-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 2;
}

.career-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.career-content img {
    display: block;
    max-width: 220px;
    width: 90%;
    height: auto;
}

.career-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
    .career-hero {
        min-height: 520px;
    }

    .career-content img {
        max-width: 280px;
    }

    .career-bottom {
        width: 100%;
        min-height: 54px;
        padding: 0 20px;
        font-size: 20px;
        clip-path: none;
    }
}


.career-content-section {
    position: relative;
    background: url("/img/k2.png") left top / cover no-repeat;
    min-height: 900px;
    padding: 0;
    overflow: hidden;
}

.career-content-section::before {
    display: none;
}

.career-content-inner {
    position: relative;
    z-index: 2;
    width: 52%;
    min-height: 900px;
    margin-left: 24%;
    padding: 28px 34px 70px;
    background: rgba(255, 255, 255, 0.88);
}

.career-content-inner p {
    font-size: 14px;
    line-height: 1.6;
    color: #111;
    margin: 0 0 14px;
}

.career-content-inner h3 {
    color: #36a9c9;
    font-size: 15px;
    margin: 24px 0 12px;
    font-weight: 700;
}

.career-content-inner strong {
    font-weight: 700;
}

.career-content-inner a {
    color: #36a9c9;
    text-decoration: none;
}

@media (max-width: 991px) {
    .career-content-section {
        background-position: center top;
        min-height: auto;
        padding: 0;
    }

    .career-content-inner {
        width: 100%;
        min-height: auto;
        margin-left: 0;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.92);
    }
}



.contact-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001f42;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: url("/img/k3.png") center center / cover no-repeat;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.contact-hero-content img {
    display: block;
    max-width: 220px;
    width: 90%;
    height: auto;
}

.contact-hero-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 520px;
    }

    .contact-hero-content img {
        max-width: 280px;
    }

    .contact-hero-bottom {
        width: 100%;
        min-height: 54px;
        padding: 0 20px;
        font-size: 20px;
        clip-path: none;
    }
}


.thank-you-box {
    max-width: 620px;
    margin: 120px auto;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #0b7cff;
    color: #ffffff;
    font-size: 42px;
    line-height: 72px;
    font-weight: 700;
}

.thank-you-box h1 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.2;
    color: #111827;
}

.thank-you-box p {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.thank-you-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    background: #0b7cff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.thank-you-box a:hover {
    background: #075dcc;
}

@media (max-width: 640px) {
    .thank-you-box {
        margin: 70px 16px;
        padding: 36px 22px;
    }

    .thank-you-box h1 {
        font-size: 28px;
    }
}


.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .header-inner {
        position: relative;
        justify-content: space-between;
        padding: 16px 20px;
    }

    .menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        border: 0;
        background: #003b7a;
        border-radius: 6px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: #fff;
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 5;
        padding: 18px 0 0;
    }

    body.menu-open .main-nav {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .header-contact {
        display: none;
        width: 100%;
        order: 6;
        align-items: center;
        padding-top: 16px;
    }

    body.menu-open .header-contact {
        display: flex;
    }
}


.header-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #003b7a;
    text-decoration: none;
    font-weight: 600;
}

.header-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #003b7a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-icon svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}



.gaz-hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 70px;
}

.gaz-hero-bg {
    position: absolute;
    inset: 0;
    background: url("/img/gaz.png") center center / cover no-repeat;
    z-index: 1;
}

.gaz-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 50, 0.12);
    z-index: 2;
}

.gaz-center-box {
    position: relative;
    z-index: 3;
    width: 270px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    text-align: center;
    font-size: 13px;
    line-height: 1.45;
}

.gaz-center-box p {
    margin: 0;
    padding: 14px 14px;
    font-weight: 600;
}

.gaz-center-box img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top: 3px solid rgba(255, 255, 255, 0.6);
    border-bottom: 3px solid rgba(255, 255, 255, 0.6);
}

.gaz-hero-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
    .gaz-hero {
        min-height: 650px;
        padding: 50px 16px 80px;
    }

    .gaz-center-box {
        width: 260px;
    }

    .gaz-hero-bottom {
        width: 100%;
        clip-path: none;
        font-size: 20px;
    }
}


.site-header {
    background: #fff;
    width: 100%;
    z-index: 50;
    position: relative;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 10px;
}

.site-logo img {
    max-height: 70px;
    display: block;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.header-contact-item {
    color: #003b7a;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    font-size: 15px;
}

.main-nav {
    width: 100%;
    border-top: 1px solid rgba(0, 59, 122, 0.12);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 14px 20px;
    list-style: none;
    flex-wrap: nowrap;
}

.main-nav a {
    color: #003b7a;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
}

@media (max-width: 1200px) {
    .main-nav ul {
        gap: 14px;
    }

    .main-nav a {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .header-top {
        padding: 14px 16px;
    }

    .menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        border: 0;
        background: #003b7a;
        border-radius: 6px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: #fff;
    }

    .header-contact,
    .main-nav {
        display: none;
    }

    body.menu-open .header-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 16px 14px;
        text-align: center;
    }

    body.menu-open .main-nav {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 14px;
        padding: 14px 20px 20px;
    }

    .site-logo img {
        max-height: 58px;
    }
}

@media (max-width: 991px) {
    .header-top {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        grid-template-areas: "logo contact toggle" !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .site-logo {
        grid-area: logo !important;
    }

    .header-contact {
        grid-area: contact !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        padding: 0 !important;
    }

    .menu-toggle {
        grid-area: toggle !important;
        margin-left: 0 !important;
        justify-self: end !important;
        order: unset !important;
    }
}


.cookie-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    max-width: 340px;
    width: calc(100% - 40px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 16px 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInCookie 0.4s ease;
}

.cookie-widget p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
}

.cookie-widget button {
    align-self: flex-end;
    background: #003b7a;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-widget button:hover {
    background: #0057b8;
}

/* animacja */
@keyframes fadeInCookie {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .cookie-widget {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        max-width: none;
        padding: 14px;
    }

    .cookie-widget button {
        width: 100%;
        text-align: center;
    }
}