/* =========================================================
   GLOBAL
========================================================= */

:root {
    --blue: #071c70;
    --blue-light: #12349b;
    --blue-dark: #041252;
    --text: #17213f;
    --gray: #667085;
    --light: #f5f8ff;
    --white: #ffffff;
    --border: #e4e8f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 90px 0;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #edf0f6;
}

.nav-container {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo img {
    width: 245px;
    height: auto;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #29324d;
    position: relative;
    padding: 34px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-whatsapp {
    background: var(--blue);
    color: white;
    padding: 13px 22px;
    border-radius: 28px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 43%,
            #eef4ff 100%
        );
}

.hero-container {
    min-height: 540px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 52%;
    padding: 60px 0;
}

.hero-label {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    margin: 16px 0 22px;
    color: var(--blue-dark);
    font-weight: 900;
}

.hero p {
    max-width: 540px;
    font-size: 18px;
    color: #4d5872;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary {
    background: var(--blue);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--blue);
    border: 2px solid var(--blue);
    background: white;
}

.btn-secondary:hover {
    background: var(--blue);
    color: white;
}


/* =========================================================
   PRINTER ILLUSTRATION
========================================================= */

.hero-printer {
    position: absolute;
    right: 0;
    bottom: 55px;
    width: 49%;
    height: 350px;
}

.printer-box {
    position: absolute;
    background: linear-gradient(145deg, #ffffff, #cbd1d9);
    border-radius: 8px 8px 15px 15px;
    box-shadow: 0 25px 45px rgba(12, 29, 75, 0.25);
}

.printer-large {
    width: 290px;
    height: 210px;
    right: 50px;
    bottom: 40px;
    z-index: 3;
}

.printer-small {
    width: 190px;
    height: 145px;
    left: 55px;
    bottom: 25px;
    z-index: 2;
}

.printer-mini {
    width: 160px;
    height: 120px;
    right: 0;
    bottom: 0;
    z-index: 4;
    background: linear-gradient(145deg, #20242a, #080a0d);
}

.printer-top {
    height: 35px;
    background: #242931;
    border-radius: 8px 8px 0 0;
}

.printer-screen {
    position: absolute;
    right: 25px;
    top: 55px;
    width: 65px;
    height: 40px;
    border-radius: 5px;
    background: #1b4d8f;
}

.printer-paper {
    position: absolute;
    width: 110px;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    background: white;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.hero-wave {
    position: absolute;
    bottom: -110px;
    left: -5%;
    width: 110%;
    height: 200px;
    background: var(--blue);
    transform: rotate(-4deg);
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {
    position: relative;
    z-index: 5;
    margin-top: -55px;
}

.benefits-container {
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(22, 38, 79, 0.12);
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit {
    display: flex;
    gap: 14px;
    padding: 12px 22px;
    border-right: 1px solid var(--border);
}

.benefit:last-child {
    border-right: none;
}

.benefit-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf0ff;
    color: var(--blue);
    font-weight: 900;
}

.benefit h3 {
    color: var(--blue);
    font-size: 14px;
    margin-bottom: 4px;
}

.benefit p {
    color: var(--gray);
    font-size: 12px;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-title span {
    color: var(--blue);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
}

.section-title h2 {
    color: var(--blue-dark);
    font-size: 34px;
    line-height: 1.2;
    margin: 10px 0;
}

.section-title p {
    color: var(--gray);
}

.title-line {
    width: 48px;
    height: 3px;
    background: var(--blue);
    margin: 14px auto;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    border: 1px solid #edf0f6;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(15, 32, 73, 0.06);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 32, 73, 0.13);
}

.product-image {
    height: 210px;
    background: #f7f9fd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.printer-placeholder {
    width: 150px;
    height: 105px;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #cbd0d7);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #697386;
    font-size: 12px;
    font-weight: 700;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    color: var(--blue-dark);
}

.product-info p {
    font-size: 13px;
    color: var(--gray);
    margin: 4px 0 15px;
}

.product-info a {
    display: inline-block;
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 7px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #cbd6f5;
}

.service-number {
    font-size: 42px;
    color: #e6ebfa;
    font-weight: 900;
}

.service-card h3 {
    color: var(--blue);
    margin: 10px 0;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    position: relative;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: white;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--blue);
    box-shadow: 0 15px 35px rgba(7, 28, 112, 0.12);
}

.popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
}

.pricing-card h3 {
    color: var(--blue);
    font-size: 24px;
}

.pricing-description {
    color: var(--gray);
    margin: 10px 0 25px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    line-height: 2;
    margin-bottom: 25px;
}

.pricing-card li {
    color: #49546d;
}

.pricing-card > a {
    display: block;
    background: var(--blue);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--light);
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(20, 35, 70, 0.08);
}

.about-logo img {
    width: 100%;
    display: block;
}

.about-content > span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-content h2 {
    color: var(--blue-dark);
    font-size: 35px;
    margin: 8px 0;
}

.about-content .title-line {
    margin-left: 0;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.about-content .btn-primary {
    margin-top: 15px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    background: white;
}

.faq-list {
    max-width: 850px;
    margin: auto;
}

.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-list summary {
    cursor: pointer;
    color: var(--blue-dark);
    font-weight: 700;
}

.faq-list p {
    color: var(--gray);
    padding-top: 12px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-cta {
    background: var(--blue);
    color: white;
    padding: 60px 0;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-container span {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 800;
}

.contact-container h2 {
    font-size: 32px;
    margin: 5px 0;
}

.contact-container p {
    opacity: 0.85;
}

.btn-whatsapp-large {
    background: white;
    color: var(--blue);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #030d38;
    color: white;
}

.footer-container {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    width: 220px;
    display: block;
    margin-bottom: 10px;
}

.footer-container p {
    color: #b8c1dc;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #dce2f4;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px;
    color: #9ca7c7;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 15px;
    }

    .nav-link {
        font-size: 11px;
    }

    .logo img {
        width: 205px;
    }

    .btn-whatsapp {
        padding: 11px 15px;
        font-size: 11px;
    }

    .benefit {
        padding: 10px;
    }

}


@media (max-width: 900px) {

    .navbar,
    .header .btn-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar.show {
        display: flex;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .navbar.show .nav-link {
        padding: 10px;
    }

    .navbar.show .nav-link::after {
        bottom: 2px;
    }

    .hero-content {
        width: 65%;
    }

    .hero-printer {
        opacity: 0.35;
        width: 60%;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 15px;
    }

    .product-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 65px 0;
    }

    .nav-container {
        min-height: 75px;
    }

    .logo img {
        width: 190px;
    }

    .navbar.show {
        top: 75px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-container {
        min-height: 650px;
    }

    .hero-content {
        width: 100%;
        padding-top: 50px;
        position: relative;
        z-index: 5;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-printer {
        opacity: 0.22;
        width: 100%;
        right: -50px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-bottom: 1px solid var(--border);
    }

    .product-grid,
    .service-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .contact-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-container h2 {
        font-size: 27px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 0;
    }

}