* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    background: #05070b;
    color: #e5e7eb;
    overflow-x: hidden;
}

.text-white {
    color: #ffffff;
    font-weight: bolder;
	font-size: 1.5rem;
    line-height: 2rem;
}

.cdhome {
    color: #fff !important;
    padding: 7px 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-cta.pulse {
    box-shadow: 0 0 0 0 rgba(77, 163, 255, 0.6);
    animation: pulseGlow 0.9s ease-out;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(77, 163, 255, 0.6); }
    100% { box-shadow: 0 0 0 25px rgba(77, 163, 255, 0); }
}



/* NAV */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,.4);
    border-bottom: 1px solid rgba(255,255,255,.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    color: white;
    text-decoration: none;
	font-size: 25px;
}

.logo span {
    color: #3b82f6;
}

.desktop-nav a {
    margin-left: 20px;
    color: #aaa;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: white;
}

.cta {
    color: #3b82f6;
}

.mobile-toggle {
    display: none;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 60px 30px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;

    transition: all 0.35s ease;
    z-index: 9999;
}

.mobile-menu.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
}

/* SECTIONS */
.section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: auto;
}

.center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* TEXT */
h1 {
    font-size: 3.5rem;
    line-height: 1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    color: #3b82f6;
    margin-top: 20px;
}

/* CARDS */
.card {
    padding: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 12px;
}

/* IMAGE */
.image img {
    width: 100%;
    border-radius: 12px;
}

.glow {
    position: relative;
}

.glow::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(59,130,246,.25), transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

/* LIST */
ul {
    margin-top: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
        color: white;
        background: none;
        border: none;
        font-size: 28px;
    }

    .mobile-menu.active {
        display: flex;
    }
}

@media (max-width: 768px) {

    .section .problem-container,
    .section .what-container,
    .section .industries-container {
        flex-direction: column !important;
    }
	
	
	.section .last-container .last-grid {
        flex-direction: column !important;
    }

    .section img {
        width: 100%;
        height: auto;
        display: block;
    }

}

@media (max-width: 768px) {
    img {
        border-radius: 12px;
    }
}






.hero {
    width: 100%;
    padding: 120px 20px 80px;
    display: flex;
    justify-content: center;
}

.hero-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #bdbdbd;
    max-width: 800px;
    margin: 0 auto 12px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
}

.hero-cards {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 12px;
    text-align: left;
}

.hero-card h3.blue {
    color: #3b82f6;
    font-size: 14px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card p {
    color: #a9a9a9;
    font-size: 14px;
}






.problem {
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.problem-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-image {
    flex: 1;
	    width: 500px;      /* lub Twoja szerokość */
    height: 320px;     /* wysokość ramki */
    overflow: hidden;
    position: relative;
}

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

    transform: scale(1.5);
    transform-origin: left;

    transition: transform 0.4s ease;
}

.problem-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.problem-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.problem-subtitle {
    font-size: 18px;
    color: #bdbdbd;
    line-height: 1.5;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #cfcfcf;
    font-size: 16px;
}

.problem-list li::before {
    content: "• ";
    color: #3b82f6;
    font-weight: bold;
}

.problem-text {
    font-size: 16px;
    color: #bdbdbd;
}

.problem-strong {
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
}




.what {
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.what-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.what-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.what-description {
    font-size: 18px;
    color: #bdbdbd;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.what-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
}

.what-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.what-card {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    text-align: left;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
}

.what-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.what-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #cfcfcf;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.what-card ul li::before {
    content: "• ";
    color: #3b82f6;
    font-weight: bold;
}

.what-footer {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #3b82f6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.what-image {
    width: 980px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.what-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transform-origin: center;
    transition: transform 0.4s ease;
}






.last {
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.last-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.last-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.last-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEFT */
.last-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.last-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
    border-radius: 12px;
    text-align: left;
}

.last-step .num {
    font-size: 26px;
    font-weight: 800;
    color: #3b82f6;
    min-width: 30px;
}

.last-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.last-step p {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.4;
}

/* RIGHT */
.last-image {
    flex: 1;
}

.last-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* FOOT TEXT */
.last-note {
    font-size: 16px;
    color: #bdbdbd;
    max-width: 900px;
    margin: 0 auto;
}

.last-highlight {
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
    max-width: 900px;
    margin: 0 auto;
}




.industries {
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.industries-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.industries-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.industries-subtitle {
    font-size: 18px;
    color: #bdbdbd;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.industries-highlight {
    font-size: 18px;
    color: #3b82f6;
    font-weight: 600;
}

.industries-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.industry-card {
    flex: 1;
    min-width: 240px;
    max-width: 260px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 14px;
    text-align: left;
    transition: 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59,130,246,0.4);
}

.industry-card .icon {
    font-size: 48px;
    color: #3b82f6;
    margin-bottom: 10px;
}

.industry-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.4;
}




.contact {
    padding: 120px 20px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-item {
    font-size: 18px;
    color: #ffffff;
}

.contact-label {
    color: #4da3ff;
    font-weight: 600;
    margin-right: 8px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #4da3ff;
}

.contact-cta {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid rgba(77, 163, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.contact-cta p {
    color: #b8b8b8;
    margin-bottom: 10px;
}

.contact-link {
    color: #4da3ff;
    font-weight: 600;
    text-decoration: none;
}






.flow {
    padding: 120px 0;
}

.flow-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.flow-title {
    font-size: 42px;
    margin-bottom: 80px;
    color: white;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-item {
    width: 150px;
    min-height: 150px;

    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);

    border-radius: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 30px 20px;

    transition: 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.5);
}

.flow-icon {
    font-size: 25px;
    margin-bottom: 20px;
}

.flow-item p {
    color: white;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.flow-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 36px;
    font-weight: bold;
}

.flow-item.active {
    border-color: rgba(59,130,246,0.5);
    background: rgba(59,130,246,0.08);
}

.flow-item.active p {
    color: #3b82f6;
}

.flow-item.success {
    border-color: rgba(34,197,94,0.4);
    background: rgba(34,197,94,0.08);
}

.flow-item.success p {
    color: #22c55e;
}

/* MOBILE */
@media (max-width: 900px) {

    .flow-diagram {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-item {
        width: 100%;
        max-width: 320px;
        min-height: 140px;
    }

    .flow-title {
        font-size: 32px;
    }
}