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

:root {
    --cream: #faf8f3;
    --dark: #1a1a1a;
    --gray: #6b6b6b;
    --accent: #ff6b35;
    --purple: #6366f1;
    --green: #22c55e;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

.wrapper {
    max-width: 1380px;
    margin: 0 auto;
    padding: 50px 70px 100px;
}

/* Promo Banner */
.promo-banner {
    width: 50%;
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-bottom: 2px solid var(--accent);
    border-radius: 30px;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.promo-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 12px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.promo-badge {
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    white-space: nowrap;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    flex-shrink: 0;
}

.promo-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    flex: 1;
    text-align: center;
}

.promo-text strong {
    color: #fff;
    font-weight: 700;
}

.promo-cta {
    padding: 7px 20px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.promo-cta:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.promo-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.promo-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {

    .promo-text {
        font-size: 12px;
        text-align: left;
    }

    .promo-badge {
        display: none;
    }
}


/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    padding: 20px 0;
}

.brand {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--dark);
}


.free-label-white {
    padding: 8px 18px;
    background: var(--cream);
    color: var(--dark);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}


.free-label {
    padding: 8px 18px;
    background: var(--dark);
    color: var(--cream);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}


.free-label-white:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}


.free-label:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Content */
.content-area {
    padding-top: 20px;
}

.eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 24px;
}

h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    color: var(--dark);
    margin-bottom: 32px;
}

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

.lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 520px;
}

.action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}

.cta-btn {
    padding: 18px 40px;
    background: var(--dark);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.link-btn {
    color: var(--dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.link-btn:hover {
    gap: 16px;
}

/* Feature Badges */
.badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 22px;
    border: 2px solid var(--dark);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    transition: all 0.3s;
}

.badge:hover {
    background: var(--dark);
    color: var(--cream);
}

/* Map Section */
.map-section {
    background: var(--dark);
    border-radius: 24px;
    padding: 44px;
    height: 100%;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
    border-radius: 50%;
}

.map-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.map-label {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--cream);
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 8px var(--green); }
    50% { box-shadow: 0 0 20px var(--green); }
}

/* Map Canvas */
.map-display {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Decorative Lines */
.deco-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    height: 1px;
}

.deco-line:nth-child(1) { top: 20%; width: 60%; left: 10%; }
.deco-line:nth-child(2) { top: 45%; width: 70%; left: 20%; }
.deco-line:nth-child(3) { top: 70%; width: 50%; left: 15%; }

/* Points */
.wifi-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 3px solid var(--dark);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
    transition: all 0.3s;
    cursor: pointer;
}

.wifi-marker:hover {
    transform: scale(1.5);
    box-shadow: 0 0 30px var(--accent);
}

.marker-1 { top: 22%; left: 25%; }
.marker-2 { top: 40%; left: 55%; }
.marker-3 { top: 58%; left: 30%; }
.marker-4 { top: 68%; left: 65%; }
.marker-5 { top: 78%; left: 20%; }
.marker-6 { top: 32%; left: 72%; }
.marker-7 { top: 50%; left: 80%; }

/* Bottom Stats */
.map-stats {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.stat-block {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.stat-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.stat-num {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Footer Note */
.footer-note {
    margin-top: 80px;
    padding: 32px 40px;
    background: var(--dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--cream);
}

.note-icon {
    font-size: 32px;
}

.note-content {
    flex: 1;
}

.note-title {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.note-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    h1 {
        font-size: 60px;
    }

    .map-section {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 32px 24px 60px;
    }

    .header {
        margin-bottom: 60px;
    }

    .nav-menu {
        gap: 20px;
    }

    h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .lead {
        font-size: 19px;
    }

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

    .map-section {
        padding: 32px 24px;
        min-height: 550px;
    }

    .map-stats {
        grid-template-columns: 1fr;
    }

    .footer-note {
        flex-direction: column;
        text-align: center;
    }
}
