:root {
    --orange: #fd7803;
    --blue: #007fd9;
    --black: #151515;
    --light: #f7f8fa;
    --gray: #606060;
}
section {
    scroll-margin-top: 96px;
}
.hero {
    min-height: calc(100vh - 96px);
    margin-top: 96px;
    display: grid;
    grid-template-columns: 50% 50%;
    background: #fff;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px;
}
.hero-text {
    width: min(600px, 100%);
}
.hero-tag,
.section-tag {
    display: inline-block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 0 0 25px;
    color: var(--black);
}
.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 570px;
    margin: 0 0 35px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 25px;
    border-radius: 6px;
    transition: 0.2s ease;
}
.button-orange {
    background: var(--orange);
    color: #fff;
}
.button-orange:hover {
    background: var(--blue);
}
.button-outline {
    border: 1px solid #d8d8d8;
    color: var(--black);
    background: #fff;
}
.button-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.hero-image {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 96px);
    overflow: hidden;
}
.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solutions {
    padding: 110px 0;
    background: var(--light);
}
.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}
.section-heading h2,
.about h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    color: var(--black);
}
.section-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}
.solutions-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: stretch;
}
.solutions-image {
    min-height: 550px;
    overflow: hidden;
    border-radius: 8px;
}
.solutions-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.solution-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 38px 32px;
    border-radius: 8px;
    min-height: 250px;
}
.solution-card span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}
.solution-card h3 {
    font-size: 24px;
    margin: 35px 0 15px;
}
.solution-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}
.solution-card:last-child {
    grid-column: 1 / -1;
}
.about {
    padding: 110px 0;
    background: #fff;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 560px;
}
.text-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
}
.text-link:hover {
    color: var(--blue);
}
.about-image {
    height: 520px;
    overflow: hidden;
    border-radius: 8px;
}
.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.applications {
    padding: 90px 0;
    background: var(--blue);
    color: #fff;
}
.section-tag-light {
    color: #fff;
}
.applications h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -1px;
    max-width: 650px;
    margin: 0 0 45px;
}
.application-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.application-list span {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 13px 19px;
    border-radius: 50px;
    font-size: 15px;
}
.contact {
    padding: 90px 0;
    background: var(--orange);
    color: #fff;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-title span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}
.contact-title h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 20px 0 0;
    max-width: 600px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-item strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-item span {
    font-size: 18px;
}
.contact-location {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}
.contact-location small {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    opacity: 0.85;
}
.location-icon {
    font-size: 32px !important;
    line-height: 1;
}
.whatsapp-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: var(--orange);
    padding: 18px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s ease;
}
.whatsapp-button:hover {
    background: var(--blue);
    color: #fff;
}
.footer {
    background: #fff;
    color: var(--black);
    padding-top: 65px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.6fr;
    gap: 70px;
    padding-bottom: 55px;
}
.footer-brand img {
    display: block;
    width: 230px;
    height: auto;
    margin-bottom: 20px;
}
.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
    max-width: 350px;
}
.footer-contact,
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact strong,
.footer-nav strong {
    margin-bottom: 8px;
}
.footer-contact a,
.footer-nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}
.footer-contact a:hover,
.footer-nav a:hover {
    color: var(--orange);
}
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px 0;
    color: #888;
    font-size: 13px;
}
@media (max-width: 900px) {
    section {
        scroll-margin-top: 82px;
    }
    .hero {
        margin-top: 82px;
        min-height: auto;
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding: 80px 30px;
    }
    .hero-image {
        min-height: 500px;
        height: 500px;
    }
    .solutions-layout {
        grid-template-columns: 1fr;
    }
    .solutions-image {
        min-height: 450px;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image {
        height: 450px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .hero-content {
        padding: 65px 20px;
    }
    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-image {
        height: 350px;
        min-height: 350px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .button {
        width: 100%;
    }
    .solutions,
    .about {
        padding: 75px 0;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solution-card:last-child {
        grid-column: auto;
    }
    .solutions-image {
        min-height: 350px;
    }
    .about-image {
        height: 350px;
    }
    .applications,
    .contact {
        padding: 70px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
}