:root {
    --bg: #08111f;

    --text: #ffffff;
    --text-secondary: #cbd5e1;

    --gold: #fbbf24;
    --gold-dark: #d97706;

    --whatsapp: #25d366;

    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;

    background-image:
        linear-gradient(
            rgba(8, 17, 31, 0.70),
            rgba(8, 17, 31, 0.80)
        ),
        url("/images/bg.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: var(--text);
}

a {
    text-decoration: none;
}

a[href^="tel"] {
    color: inherit;
}

.container {
    width: calc(100% - 32px);
    max-width: 480px;
    margin: 0 auto;
}

/* HEADER */

.header {
    height: 80px;
    background: rgba(8, 17, 31, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    color: var(--gold);

    font-size: 30px;
    font-weight: 800;

    letter-spacing: -0.03em;
    text-align: center;

    text-shadow: 0 2px 20px rgba(251, 191, 36, 0.15);
}

/* HERO */

.hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    text-align: center;
}

.hero-content {
    width: 100%;

    padding: 16px 0;

    background: rgba(8, 17, 31, 0.08);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border-radius: 24px;
}

.hero-badge {
    display: inline-block;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--gold);

    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 999px;

    padding: 12px 16px;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 0 20px rgba(251, 191, 36, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    margin-bottom: 24px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.05;
    font-weight: 800;

    color: var(--text);

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(251, 191, 36, 0.12);

    letter-spacing: -0.04em;

    margin-bottom: 24px;
}
.highlight {
    display: inline-block;
    color: var(--gold);

    margin-top: 8px;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);

    color: var(--text-secondary);

    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;

    gap: 16px;
}

.call-btn,
.hero-btn {
    display: block;
    width: 100%;

    padding: 16px;

    border-radius: 16px;

    text-align: center;

    font-size: 18px;
    font-weight: 700;

    transition: transform 0.2s ease,
    box-shadow 0.3s ease;
}

.call-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #08111f;

    box-shadow:
        0 12px 30px rgba(251, 191, 36, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.call-btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    line-height: 1;
}

.call-icon {
    width: 20px;
    height: 20px;

    flex-shrink: 0;
    margin-left: -8px;
}

.call-btn-number {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.call-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 40px rgba(251, 191, 36, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.call-btn:active {
    transform: scale(0.98);
}

.hero-btn {
    background: linear-gradient(135deg, var(--whatsapp), #1fb857);
    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 40px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-btn:active {
    transform: scale(0.98);
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 10px;

    margin-top: 24px;
}

.trust-badge {
    padding: 10px 14px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;

    color: var(--text-secondary);
}
/* SERVICE AREAS */

.service-areas {
    padding: 40px 0 70px;
}

.service-areas-box {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-areas h2 {
    color: var(--gold);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.service-areas p {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 28px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.areas-grid a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px;

    color: #fff;
    font-weight: 700;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    transition: .25s;
}

.areas-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(251,191,36,.35);
    color: var(--gold);
}

.areas-grid a:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 48%;
}


/* MOBILE */

@media (max-width: 390px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .logo {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 10px 14px;
    }

    .call-btn,
    .hero-btn {
        padding: 14px;
    }
    .areas-grid{
        grid-template-columns:1fr;
    }

}