* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.logo1 {
    width: 60px;
}

.logo2 {
    width: 100px;
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c19a6b;
    text-shadow: 0 0 8px #c19a6b;
}

.phone {
    border: 1px solid #c19a6b;
    padding: 8px 14px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.phone:hover {
    background: #c19a6b;
    color: black;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1100;
}

.hero {
    height: 70vh;
    width: 100%;
    background: url("tłog.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    position: relative;
    padding-left: 80px;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1.2s ease;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag {
    display: inline-block;
    background: rgba(193, 154, 107, 0.8);
    color: black;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
}

.primary {
    background: #c19a6b;
    color: black;
}

.primary:hover {
    box-shadow: 0 0 15px #c19a6b;
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid white;
    color: white;
}

.secondary:hover {
    background: white;
    color: black;
}

.models-section,
.about-section,
.gallery-section,
.contact-section,
.features-section,
.workflow-section,
.quality-section,
.stats-section,
.target-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.about-container,
.features-container,
.workflow-container,
.quality-container,
.stats-container,
.target-container,
.contact-container {
    max-width: 1100px;
    margin: 0 autio;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-text {
    flex: 1 1 480px;
}

.about-text h3 {
    font-weight: 600;
    color: #c19a6b;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #333;
}

.about-btn {
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .about-btn {
        margin-left: 30%;
        margin-right: 30%;
    }
}

.about-image {
    flex: 1 1 480px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.features-container {
    justify-content: space-between;
    gap: 20px;
}

.feature {
    flex: 1 1 180px;
    text-align: center;
    color: #333;
}

.feature img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.feature h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    line-height: 1.4;
}

.workflow-container {
    flex-direction: column;
    gap: 40px;
}

.workflow-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1 1 160px;
    background: #222;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.step span {
    display: inline-block;
    background: #c19a6b;
    color: black;
    font-weight: 700;
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    line-height: 1.4;
}

.quality-container {
    gap: 40px;
}

.quality-text {
    flex: 1 1 480px;
}

.quality-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #333;
}

.quality-text ul {
    list-style: none;
    padding-left: 0;
}

.quality-text ul li {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.quality-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c19a6b;
    font-weight: 700;
}

.quality-images {
    flex: 1 1 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quality-images img:nth-child(1),
.quality-images img:nth-child(2) {
    width: 100%;
    height: 220px;
}

.quality-images img:nth-child(3) {
    grid-column: 1 / 3;
    width: 100%;
    height: 180px;
}

.quality-images img {
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .quality-images {
        grid-template-columns: 1fr;
    }

    .quality-images img:nth-child(3) {
        grid-column: auto;
    }
}

.stats-container {
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    color: #111;
    background: #c19a6b;
    padding: 40px 20px;
    border-radius: 12px;
}

.stat {
    flex: 1 1 150px;
}

.stat img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.stat h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat p {
    font-size: 14px;
}

.target-container {
    flex-direction: column;
    gap: 30px;
}

.target-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.target-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.target-card {
    flex: 1 1 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.target-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.target-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0 8px;
}

.target-card p {
    font-size: 14px;
    padding: 0 10px 15px;
    color: #555;
}

.contact-section {
    padding: 100px 5%;
    background: #f5f5f5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-info h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #444;
}

.contact-form {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.contact-form form {
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
    overflow: auto;
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
    overflow: auto;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #c19a6b;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        justify-content: center;
        width: 100%;
    }
}

.footer {
    background: #111;
    color: #aaa;
    padding: 60px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-col a:hover {
    color: #c19a6b;
}

.socials {
    display: flex;
    gap: 10px;
}

.social-box {
    width: 40px;
    height: 40px;
    border: 1px solid #c19a6b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.social-box:hover {
    transform: translateY(-5px) scale(1.08);

    border-color: white;

    box-shadow:
        0 0 10px #c19a6b,
        0 0 20px rgba(193, 154, 107, 0.6);
}

.social-box img {
    margin-top: 12px;
    width: 30px;
    transition: 0.3s ease;
}

.social-box:hover img {
    transform: scale(1.15);
}

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .phone {
        display: none;
    }

    .hero {
        justify-content: center;
        text-align: center;
        padding-left: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .models-grid,
    .gallery-row,
    .about-section .container,
    .contact-section .container,
    .about-container,
    .features-container,
    .workflow-container,
    .quality-container,
    .stats-container,
    .target-container,
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .about-text,
    .about-image,
    .feature,
    .step,
    .quality-text,
    .quality-images,
    .stat,
    .target-card,
    .contact-info,
    .contact-form {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .features-container {
        gap: 30px;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 20px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        padding: 30px 10px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.copy {
    text-align: center;
}

.workflow-section,
.stats-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.workflow-section .container,
.stats-section .container {
    max-width: 100%;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.workflow-steps {
    justify-content: space-between;
}

.step {
    flex: 1;
    max-width: none;
}

.stats-section {
    width: calc(100vw - 40px);
    margin-left: calc(-50vw + 50% + 20px);
}

.target-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}