* {
    box-sizing: border-box;
}

:root {
    --tigo-blue: #001eb3;
    --tigo-blue-dark: #07179f;
    --tigo-cyan: #43c8ed;
    --tigo-cyan-soft: #dff7ff;
    --tigo-green: #43c900;
    --text-muted: #6b7280;
    --footer-gray: #d8d8d8;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    color: var(--tigo-blue);
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

button,
input {
    font: inherit;
}

.landing-page {
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.brand-bar {
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* justify-content: center; */
    padding: clamp(16px, 3vw, 22px) clamp(18px, 5vw, 30px);
    background: var(--tigo-blue);
}

.brand-logo {
    width: clamp(56px, 20vw, 58px);
    height: auto;
}

.landing-main {
    width: 100%;
    padding-block: clamp(28px, 5vw, 56px);
}

.content-grid {
    display: flex;
    flex-direction: column;
}

.promo {
    display: contents;
}

.hero-banner {
    order: 3;
    margin: 0;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner figcaption {
    position: absolute;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.headline-block {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(10px, 3vw, 20px);
    padding: clamp(26px, 6vw, 40px) clamp(22px, 5vw, 32px);
    background: var(--tigo-blue);
    flex: 1;
}

.headline {
    margin: 0;
    color: #ffffff;
    font-size: clamp(26px, 6.4vw, 34px);
    line-height: 1.18;
    font-weight: 400;
}

.headline strong {
    display: block;
    color: var(--tigo-cyan);
    font-weight: 800;
    text-transform: uppercase;
}

.promo-icon {
    flex: 0 0 auto;
    width: clamp(116px, 20vw, 154px);
    height: auto;
    color: #ffffff;
    overflow: visible;
}

.wifi-wave {
    transform-box: fill-box;
    transform-origin: center;
    animation: wifi-signal 1.8s ease-in-out infinite;
}

.wifi-wave-2 {
    animation-delay: 0.16s;
}

.wifi-wave-3 {
    animation-delay: 0.32s;
}

@keyframes wifi-signal {
    0%,
    100% {
        opacity: 0.72;
        transform: translateY(0) scale(0.98);
    }

    45% {
        opacity: 1;
        transform: translateY(-7px) scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wifi-wave {
        animation: none;
    }
}

.form-panel {
    order: 2;
    display: flex;
    flex-direction: column;
    padding-top: clamp(24px, 5vw, 42px);
}

.lead-form {
    overflow: hidden;
    border-radius: clamp(18px, 2.4vw, 24px);
    background: var(--tigo-cyan);
}

.form-heading {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
    min-height: clamp(48px, 5vw, 62px);
    padding: 12px clamp(22px, 3vw, 30px);
    background: var(--tigo-cyan);
    color: var(--tigo-blue);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

.form-heading svg {
    flex: 0 0 auto;
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    color: #ffffff;
}

.form-heading span {
    order: 3;
}

.form-heading svg {
    order: 1;
}

.form-body {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    padding: clamp(22px, 3vw, 34px) clamp(24px, 3.6vw, 34px) clamp(24px, 3vw, 34px);
    border-radius: clamp(18px, 2.4vw, 24px);
    background: var(--tigo-blue);
}

.field {
    display: grid;
    gap: clamp(10px, 1.4vw, 14px);
}

.field label {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 400;
}

.field input {
    width: 100%;
    min-height: clamp(46px, 6vw, 58px);
    border: 0;
    border-radius: clamp(10px, 1.6vw, 14px);
    padding: 0 clamp(18px, 3vw, 26px);
    background: #ffffff;
    color: #151515;
    font-size: 12px;
    outline: 4px solid transparent;
}

.field input::placeholder {
    color: #9f9f9f;
}

.field input:focus {
    outline-color: rgba(67, 200, 237, 0.42);
}

.error {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 15px;
}

.cta-area {
    display: grid;
    justify-items: center;
    gap: 9px;
    margin-top: clamp(14px, 2.2vw, 20px);
    text-align: center;
}

.call-button,
.whatsapp-button {
    display: grid;
    grid-template-columns: minmax(48px, 62px) 1fr;
    align-items: center;
    width: min(100%, 320px);
    min-height: 54px;
    overflow: hidden;
    border-radius: 12px;
    padding: 0;
    font-size: clamp(12px, 1.8vw, 15px);
    font-weight: 500;
    line-height: 1.1;
}

.call-button {
    border: 0;
    background: var(--tigo-cyan);
    color: var(--tigo-blue);
    cursor: pointer;
}

.call-button:focus-visible,
.whatsapp-button:focus-visible {
    outline: 4px solid rgba(0, 30, 179, 0.26);
    outline-offset: 4px;
}

.microcopy {
    margin: 0;
    color: var(--tigo-blue);
    font-size: clamp(11px, 1.5vw, 13px);
    line-height: 1.25;
}

.status {
    margin: 0 clamp(24px, 5vw, 34px) 0;
    border-radius: 12px;
    padding: 14px 18px;
    background: var(--tigo-cyan-soft);
    color: var(--tigo-blue);
    font-size: 16px;
    text-align: center;
}

.whatsapp-button {
    border: 0;
    background: var(--tigo-green);
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.call-icon,
.whatsapp-icon {
    display: grid;
    place-items: center;
    height: 100%;
}

.call-icon {
    color: var(--tigo-blue);
}

.whatsapp-icon {
    background: var(--tigo-green);
}

.call-icon svg,
.whatsapp-icon svg {
    width: 28px;
    height: 28px;
}

.call-text,
.whatsapp-text {
    padding: 8px clamp(14px, 4vw, 20px);
    text-align: center;
}

.landing-footer {
    margin-top: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--footer-gray);
    color: var(--tigo-blue);
    text-align: center;
    padding: 18px 18px 16px;
    font-size: clamp(12px, 2.5vw, 15px);
    line-height: 1.2;
}

.landing-footer p {
    margin: 0;
}

.honeypot {
    position: absolute;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (min-width: 900px) {
    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: clamp(28px, 4vw, 52px);
    }

    .promo {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .hero-banner,
    .headline-block,
    .form-panel {
        order: initial;
    }

    .headline-block {
        align-items: center;
    }

    .form-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .landing-main {
        padding-top: 0;
    }

    .headline-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .promo-icon {
        align-self: flex-end;
        width: clamp(58px, 18vw, 74px);
        margin-top: -8px;
    }

    .form-panel {
        padding-top: clamp(18px, 5vw, 28px);
    }

    .cta-area {
        gap: 8px;
        margin-top: 12px;
        padding: 0 clamp(18px, 5vw, 28px) clamp(24px, 6vw, 34px);
    }

    .form-heading {
        gap: 12px;
        min-height: 48px;
        padding: 10px 18px;
    }

    .form-heading::before {
        height: 30px;
    }

    .form-body {
        gap: 18px;
        padding: 22px 18px 24px;
    }

    .call-button,
    .whatsapp-button {
        grid-template-columns: 52px 1fr;
        width: min(100%, 300px);
        min-height: 50px;
        border-radius: 11px;
    }

    .call-icon svg,
    .whatsapp-icon svg {
        width: 26px;
        height: 26px;
    }
}
