﻿* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: "Inter", system-ui, sans-serif;
    background-color: #ffffff;
    color: #111827;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

.page {
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-inner {
    width: 100%;
    height: 100%;
    display: table;
}

.hero {
    width: 100%;
}

.hero-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 48px;
    padding-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-content {
    order: 2;
}

.preheader {
    margin: 0 0 12px;
    color: #ee6123;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.headline {
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
}

.body-copy {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

    .body-copy p {
        margin-top: 0;
        margin-bottom: 16px;
    }

        .body-copy p:last-child {
            margin-bottom: 0;
        }

.hero-image-wrap {
    order: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.links-section {
    background-color: #f9fafb;
    border-top: 1px solid #f3f4f6;
}

.links-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.links-heading {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.helpful-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn {
    text-decoration: none;
    border-radius: 9999px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn span {
        display: block;
    }

.btn-title {
    font-weight: 600;
}

.btn-subtitle {
    font-size: 14px;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
}

    .btn-primary:hover {
        background-color: #1d4ed8;
    }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
}

    .btn-whatsapp:hover {
        background-color: #1EBE5D;
    }

    .btn-whatsapp svg {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        fill: #ffffff;
        stroke: #ffffff;
    }

.btn-whatsapp-text {
    text-align: left;
}

@media (min-width: 768px) {
    .hero-container {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .headline {
        font-size: 48px;
    }

    .body-copy {
        font-size: 18px;
    }

    .links-container {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .links-heading {
        font-size: 22px;
    }

    .helpful-links {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrap {
        order: 2;
    }
}
