@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #030712;
    --bg-2: #061223;
    --card: rgba(10, 23, 42, .78);
    --card-2: rgba(7, 18, 35, .94);
    --text: #FFFFFF;
    --muted: #D7E5F7;
    --muted-2: #BFD4EE;
    --primary: #008CFF;
    --primary-2: #00C2FF;
    --line: rgba(148, 163, 184, .18);
    --white-soft: rgba(255, 255, 255, .08);
    --shadow: 0 26px 70px rgba(0, 140, 255, .14);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(0, 140, 255, .18), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(0, 194, 255, .14), transparent 32%),
        linear-gradient(180deg, #01030A 0%, #06101f 48%, #020714 100%);
    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 38px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
    position: relative;
}

.bg-orbits {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.bg-orbits span {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(0, 140, 255, .09);
    border-radius: 50%;
    filter: blur(.1px);
    animation: orbit 16s linear infinite;
}

.bg-orbits span:nth-child(1) {
    top: -180px;
    right: -120px;
}

.bg-orbits span:nth-child(2) {
    bottom: -240px;
    left: -180px;
    width: 680px;
    height: 680px;
    animation-duration: 22s;
}

.bg-orbits span:nth-child(3) {
    top: 42%;
    left: 50%;
    width: 280px;
    height: 280px;
    animation-duration: 13s;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(0, 194, 255, .45);
    box-shadow: 0 0 28px rgba(0, 140, 255, .22);
}

.brand strong {
    display: block;
    font-size: 18px;
    letter-spacing: .3px;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted-2);
    font-size: 12px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-links a {
    color: #DDE7F6;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 999px;
    transition: .25s ease;
}

.nav-links a:hover {
    color: white;
    background: var(--white-soft);
}

.nav-links .nav-cta {
    margin-left: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    box-shadow: 0 16px 32px rgba(0, 140, 255, .24);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: white;
    margin: 5px auto;
    border-radius: 4px;
    transition: .25s;
}

.hero {
    padding-top: 92px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.hero h1,
.section-heading h2,
.benefit-copy h2,
.cta-card h2 {
    font-size: clamp(40px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 950;
}

.hero h1 {
    max-width: 780px;
}

.hero p,
.section-heading p,
.benefit-copy p,
.cta-card p {
    color: var(--muted-2);
    font-size: 18px;
    line-height: 1.85;
    letter-spacing: .2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.hero p {
    max-width: 680px;
    margin-top: 28px;
    margin-bottom: 6px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: .25s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    box-shadow: 0 22px 44px rgba(0, 140, 255, .28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(0, 140, 255, .34);
}

.btn-ghost {
    background: rgba(255, 255, 255, .06);
    border-color: var(--line);
    color: white;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .11);
    transform: translateY(-3px);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-points span {
    color: #D8E9FF;
    background: rgba(0, 140, 255, .11);
    border: 1px solid rgba(0, 140, 255, .22);
    padding: 10px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.download-section {
    padding-top: 40px;
}

.download-grid {
    display: block;
    gap: 0;
}

.download-copy {
    max-width: 560px;
}

.download-copy h2 {
    margin-top: 18px;
}

.download-copy p {
    margin-top: 18px;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.store-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    min-width: 220px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.05);
    transition: .25s ease;
}

.store-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.09);
    border-color: rgba(0, 140, 255, .2);
}

.store-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 24px;
    background: rgba(0, 140, 255, .14);
}

.store-android .store-icon {
    background: rgba(0, 190, 60, .17);
}

.store-ios .store-icon {
    background: rgba(255, 255, 255, .16);
}

.store-copy small {
    display: block;
    color: var(--muted-2);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.store-copy strong {
    font-size: 18px;
}


.preview-title {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.preview-status {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 220, 112, .16);
    color: #A7FFD1;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

.preview-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.preview-row div {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.preview-row strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.preview-row span {
    color: var(--muted-2);
    font-size: 14px;
}

.preview-wave {
    margin-top: 28px;
    height: 120px;
    border-radius: 28px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 194, 255, .16), transparent 35%),
                linear-gradient(180deg, rgba(0, 140, 255, .08), transparent 80%);
}

.hero-visual {
    position: relative;
    min-height: 610px;
}

.radar-card {
    position: relative;
    height: 610px;
    border-radius: 46px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.1), transparent 34%),
        radial-gradient(circle at 50% 24%, rgba(0,194,255,.2), transparent 30%),
        rgba(4, 12, 26, .84);
    border: 1px solid rgba(0, 194, 255, .22);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.radar-card::before {
    content: "";
    position: absolute;
    inset: 34px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 194, 255, .23);
}

.radar-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -25% -20%;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(0,140,255,.12));
    transform: skewY(-4deg);
}

.satellite {
    position: absolute;
    top: 46px;
    right: 52px;
    font-size: 58px;
    filter: drop-shadow(0 0 26px rgba(0, 194, 255, .55));
    animation: float 4s ease-in-out infinite;
}

.planet {
    position: absolute;
    left: 50%;
    top: 35%;
    width: 310px;
    height: 310px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 30%, rgba(255,255,255,.18), transparent 22%),
        radial-gradient(circle at center, rgba(0,140,255,.18), rgba(0,10,24,.96) 64%);
    border: 1px solid rgba(0, 194, 255, .35);
    box-shadow: inset 0 0 55px rgba(0, 140, 255, .2), 0 0 60px rgba(0, 140, 255, .2);
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 194, 255, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 194, 255, .13) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle, #000 58%, transparent 70%);
}

.pin {
    position: absolute;
    left: 58%;
    top: 40%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-2);
    box-shadow: 0 0 0 12px rgba(0,194,255,.16), 0 0 34px rgba(0,194,255,.9);
}

.pulse::after {
    content: "";
    position: absolute;
    inset: -18px;
    border: 1px solid var(--primary-2);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    to { transform: scale(1.8); opacity: 0; }
}

@keyframes float {
    0%,100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-14px) rotate(4deg); }
}

.tracking-panel {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 30px;
    background: rgba(2, 6, 23, .82);
    border: 1px solid rgba(255,255,255,.11);
    backdrop-filter: blur(16px);
}

.panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #BFEAFF;
    letter-spacing: 1.4px;
    font-size: 12px;
}

.panel-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #20FF9B;
    box-shadow: 0 0 18px #20FF9B;
}

.route {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    border: 2px solid rgba(255,255,255,.28);
}

.dot.active {
    background: var(--primary-2);
    border-color: white;
    box-shadow: 0 0 22px var(--primary-2);
}

.line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(255,255,255,.18));
}

.vehicle-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: rgba(255,255,255,.06);
    border-radius: 22px;
}

.vehicle-card small {
    color: var(--muted-2);
}

.vehicle-card strong {
    display: block;
    margin-top: 3px;
    font-size: 18px;
}

.status {
    color: #20FF9B;
    font-weight: 900;
    background: rgba(32,255,155,.1);
    padding: 8px 12px;
    border-radius: 999px;
}

.floating-card {
    position: absolute;
    z-index: 2;
    width: 220px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(7, 18, 35, .82);
    border: 1px solid rgba(0, 194, 255, .25);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0,0,0,.32);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card span {
    color: var(--muted-2);
    margin-top: 6px;
    font-size: 13px;
}

.card-1 {
    top: 132px;
    left: -38px;
}

.card-2 {
    right: -28px;
    bottom: 122px;
}

.stats-section {
    margin-top: -40px;
    position: relative;
    z-index: 4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat {
    padding: 24px;
    border-radius: 24px;
    background: rgba(7, 18, 35, .82);
    border: 1px solid var(--line);
    text-align: center;
    backdrop-filter: blur(14px);
}

.stat strong {
    display: block;
    color: white;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -1px;
}

.stat span {
    display: block;
    color: var(--muted-2);
    margin-top: 4px;
    font-weight: 700;
}

.section-heading {
    text-align: center;
    max-width: 790px;
    margin: 0 auto 52px;
}

.section-heading h2,
.benefit-copy h2,
.cta-card h2 {
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: -2.5px;
}

.section-heading p {
    margin-top: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card,
.plan-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 20px 52px rgba(0,0,0,.18);
    transition: .28s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after,
.plan-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-2), transparent);
    opacity: .55;
}

.feature-card:hover,
.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 194, 255, .32);
    box-shadow: 0 26px 62px rgba(0, 140, 255, .12);
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    font-size: 28px;
    border-radius: 20px;
    background: rgba(0, 140, 255, .13);
    border: 1px solid rgba(0, 194, 255, .18);
    margin-bottom: 24px;
}

.feature-card h3,
.plan-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p,
.plan-card p {
    color: var(--muted-2);
    line-height: 1.75;
    letter-spacing: .15px;
}

.dark-band {
    background:
        radial-gradient(circle at 15% 15%, rgba(0,140,255,.16), transparent 34%),
        linear-gradient(135deg, rgba(1,6,18,.74), rgba(2,12,28,.94));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 62px;
    align-items: center;
}

.benefit-copy p {
    margin-top: 22px;
    line-height: 1.85;
}

.benefit-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.benefit-list div {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--line);
    color: #EEF6FF;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.benefit-list span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    background: rgba(0,140,255,.15);
    color: var(--primary-2);
    display: grid;
    place-items: center;
    font-weight: 950;
}

.dashboard-preview {
    border-radius: 38px;
    background: rgba(7, 18, 35, .84);
    border: 1px solid rgba(0, 194, 255, .22);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dash-header {
    height: 62px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--line);
}

.dash-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
}

.dash-map {
    position: relative;
    height: 370px;
    background:
        linear-gradient(rgba(0, 194, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 194, 255, .08) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(0,140,255,.16), transparent 28%),
        #041023;
    background-size: 34px 34px, 34px 34px, auto, auto;
}

.map-route {
    position: absolute;
    inset: 72px 80px;
    border: 4px dashed rgba(0, 194, 255, .44);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 48px;
    transform: rotate(-9deg);
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-2);
    box-shadow: 0 0 0 12px rgba(0,194,255,.12), 0 0 28px rgba(0,194,255,.8);
}

.map-pin.one { left: 22%; top: 58%; }
.map-pin.two { left: 56%; top: 32%; }
.map-pin.three { right: 20%; bottom: 28%; }

.dash-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.dash-info div {
    padding: 22px;
    background: rgba(2, 6, 23, .72);
}

.dash-info small {
    color: var(--muted-2);
}

.dash-info strong {
    display: block;
    margin-top: 6px;
    font-size: 19px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.plan-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    transform: translateY(-16px);
    border-color: rgba(0, 194, 255, .45);
    background:
        linear-gradient(180deg, rgba(0,140,255,.14), transparent 44%),
        var(--card);
}

.badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 194, 255, .12);
    color: var(--primary-2);
    border: 1px solid rgba(0, 194, 255, .24);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-card ul {
    list-style: none;
    display: grid;
    gap: 13px;
    margin: 25px 0 28px;
}

.plan-card li {
    color: #DDE7F6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.45;
}

.plan-card li::before {
    content: "✓";
    color: var(--primary-2);
    font-weight: 950;
}

.plan-card .btn {
    margin-top: auto;
}

.cta-section {
    padding-top: 60px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, .2), transparent 30%),
        linear-gradient(135deg, rgba(0,140,255,.16), rgba(7,18,35,.88));
    border: 1px solid rgba(0, 194, 255, .28);
    box-shadow: var(--shadow);
}

.cta-card p {
    margin-top: 14px;
    max-width: 680px;
}

.footer {
    padding: 70px 0 28px;
    background: rgba(1, 4, 12, .78);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr;
    gap: 34px;
}

.footer p,
.footer span,
.footer a {
    color: var(--muted-2);
}

.footer p {
    max-width: 360px;
    margin-top: 18px;
    line-height: 1.65;
}

.footer strong {
    display: block;
    margin-bottom: 14px;
}

.footer a,
.footer span {
    display: block;
    margin: 10px 0;
}

.footer a:hover {
    color: white;
}

.policy-hero {
    padding-top: 44px;
    padding-bottom: 30px;
}

.policy-card {
    padding: 32px;
    border-radius: 30px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .18);
}

.policy-card h1 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 14px;
}

.policy-card p,
.policy-card li {
    color: var(--muted-2);
    line-height: 1.75;
}

.policy-section {
    margin-top: 18px;
}

.policy-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.policy-section ul {
    display: grid;
    gap: 10px;
    padding-left: 18px;
}

.policy-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0, 140, 255, .09);
    border: 1px solid rgba(0, 194, 255, .18);
    color: #DDE7F6;
}

.copyright {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: #25D366;
    border: 0;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .35);
    transition: .25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float:focus-visible,
.whatsapp-modal-close:focus-visible {
    outline: 3px solid rgba(37, 211, 102, .45);
    outline-offset: 3px;
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.whatsapp-modal-backdrop {
    position: fixed;
    right: 22px;
    bottom: 100px;
    z-index: 120;
    width: min(390px, calc(100vw - 32px));
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(.98);
    transition: opacity .22s ease, transform .22s ease;
}

.whatsapp-modal-backdrop[hidden] {
    display: none;
}

.whatsapp-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.whatsapp-modal {
    position: relative;
    width: 100%;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #0B141A;
    border: 1px solid rgba(37, 211, 102, .32);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45), 0 0 36px rgba(37, 211, 102, .12);
}

.whatsapp-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    color: white;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.chat-shell {
    display: flex;
    flex-direction: column;
    max-height: min(620px, calc(100vh - 126px));
    background: #0B141A;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 54px 14px 14px;
    background: #075E54;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.chat-header h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
}

.chat-header p {
    margin-top: 3px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.chat-screen {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 320px;
    overflow-y: auto;
    padding: 16px 14px 14px;
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 211, 102, .08), transparent 24%),
        linear-gradient(135deg, #0B141A, #111B21);
}

.chat-bubble {
    width: fit-content;
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 14px;
    line-height: 1.45;
    font-size: 14px;
}

.chat-bubble.agent,
.whatsapp-form label span {
    align-self: flex-start;
    background: #202C33;
    color: #E9EDEF;
    border-bottom-left-radius: 4px;
}

.chat-bubble.client {
    align-self: flex-end;
    background: #D9FDD3;
    color: #111B21;
    border-bottom-right-radius: 4px;
}

.chat-bubble[hidden],
.chat-typing[hidden],
.chat-input-step[hidden] {
    display: none;
}

.chat-typing {
    width: fit-content;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 13px 14px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    background: #202C33;
}

.chat-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #AEBAC1;
    animation: chatTyping 1.05s infinite ease-in-out;
}

.chat-typing span:nth-child(2) {
    animation-delay: .15s;
}

.chat-typing span:nth-child(3) {
    animation-delay: .3s;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
}

.chat-input-step,
.whatsapp-form label {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.whatsapp-form label span {
    width: fit-content;
    max-width: 86%;
    padding: 8px 11px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.35;
}

.whatsapp-form input,
.whatsapp-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(37, 211, 102, .24);
    background: #D9FDD3;
    color: #111B21;
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    outline: none;
}

.chat-input-step input,
.chat-input-step textarea {
    flex: 1;
}

.message-step {
    flex-direction: column;
}

.whatsapp-form textarea {
    min-height: 96px;
    resize: vertical;
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
    color: rgba(17, 27, 33, .58);
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, .18);
}

.whatsapp-form button {
    align-self: flex-end;
    min-height: 46px;
    width: auto;
    margin-top: 2px;
    padding: 0 18px;
    background: #25D366;
    color: #062013;
    box-shadow: none;
}

.whatsapp-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, .24);
}

.whatsapp-form button:disabled {
    opacity: .72;
    cursor: progress;
}

.chat-send-button {
    min-height: 44px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    background: #25D366;
    color: #062013;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.form-feedback {
    min-height: 20px;
    color: #B9F6CA;
    font-size: 13px;
    text-align: right;
}

@keyframes chatTyping {
    0%,
    70%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    35% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

@media (max-width: 1120px) {
    .hero-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .radar-card {
        height: 480px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 980px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .navbar {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(2, 6, 23, .98);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 13px 14px;
        border-radius: 16px;
    }

    .nav-links .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .section {
        padding: 84px 0;
    }

    .stats-grid,
    .features-grid,
    .plans-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(1180px, calc(100% - 20px));
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .hero {
        padding-top: 42px;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(34px, 11vw, 52px);
        letter-spacing: -2px;
    }

    .hero p,
    .section-heading p,
    .benefit-copy p,
    .cta-card p {
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-actions,
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .store-card {
        width: 100%;
    }

    .store-card {
        min-width: 0;
    }

    .stats-grid,
    .features-grid,
    .plans-grid,
    .footer-grid,
    .dash-info {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        gap: 28px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .radar-card {
        height: 380px;
        border-radius: 28px;
    }

    .planet {
        width: 190px;
        height: 190px;
    }

    .tracking-panel {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
    }

    .satellite {
        top: 18px;
        right: 18px;
        font-size: 40px;
    }

    .cta-card {
        padding: 30px 22px;
    }

    .copyright {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-modal-backdrop {
        right: 16px;
        bottom: 92px;
        width: calc(100vw - 32px);
    }

    .chat-shell {
        max-height: calc(100vh - 112px);
    }

    .chat-input-step {
        flex-direction: column;
    }

    .chat-send-button,
    .whatsapp-form button {
        width: 100%;
    }
}
