body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f7f9fc;
    color: #1f2933;
}

section {

    padding: 50px 10%;
	

}

h1, h2, h3 {
    margin-bottom: 16px;
}

.hero {
    display: flex;
    align-items: center;
    gap: 60px;
	justify-content: center;
}

.hero-image img
{
	border-radius: 23px;
}
.hero-image img,
.infra-image img {
    max-width: 420px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-secondary {
    background: #0f172a;
    color: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
}

.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-steps {
    display: flex;
	justify-content: center;
    gap: 40px;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 23px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.step span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
}

.infrastructure {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 60px;
    background: #fff;
}

.cta {
    text-align: center;
    background: #e0e7ff;
}

/* Menu */ 
/* ===== HEADER ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.4rem;
    text-decoration: none;
    color: #0f172a;
    letter-spacing: 0.5px;
}

.logo strong {
    color: #2563eb;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    position: relative;
    padding-bottom: 4px;
}

.main-nav a:hover {
    color: #2563eb;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    border-radius: 2px;
}
/* Ikony na main */
.service-box svg {
    width: 48px;
    height: 48px;
    stroke: #2563eb;
    margin-bottom: 16px;
}

/* ===== PROJECTS / PRODUCTS ===== */

.projects {
    background: #f8fafc;
}

.projects-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.project-card {
    display: flex;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-image img {
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.project-text h3 {
    margin-bottom: 16px;
}

.project-text p {
    margin-bottom: 16px;
    line-height: 1.6;
}
.infra-lead {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
}

.infra-highlight {
    margin-top: 20px;
    padding-left: 16px;
    border-left: 4px solid #2563eb;
    font-weight: 500;
}


/* Partnerzy */
/* ===== PARTNERS ===== */

.partners {
    background: #ffffff;
    padding: 60px 10%;
    text-align: center;
}

.partners h2 {
    margin-bottom: 40px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner img {
    max-height: 60px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}

.partner img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.max-wh {
    max-width: 1520px;
    margin: 0 auto;
    background: #3a3b4705;
    padding: 30px;
    border-radius: 20px;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #c7d2fe,
        transparent
    );
    margin: 80px 0;
}

/* ===== CONTACT ===== */

.contact {
    background: #f8fafc;
}

.contact-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-info {
    flex: 1;
    padding: 20px 0;
}

.contact-info h3 {
    margin-bottom: 16px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #334155;
}
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        text-align: center;
    }
}
.form-msg {
    margin: 15px 0;
    font-weight: 500;
}

.form-msg.success { color: #16a34a; }
.form-msg.error   { color: #dc2626; }


/* ====Mobilne==== */
@media (max-width: 1000px) {
	.hero-image img, .infra-image img {
		max-width: 240px;
	}
	.infrastructure {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 60px;
		background: #fff;
		flex-wrap: wrap;
	}
	.project-card {
		display: flex;
		gap: 60px;
		align-items: center;
		background: #ffffff;
		border-radius: 16px;
		padding: 40px;
		max-width: 1100px;
		margin: 0 auto;
		flex-wrap: wrap;
	}
	.hero {
		display: flex;
		align-items: center;
		gap: 60px;
		justify-content: center;
		flex-wrap: wrap;
	}
}