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

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #86b91f;
    --primary-dark: #6ca10f;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    letter-spacing: normal;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
}

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

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand__logo {
    height: 40px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__cta {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav__cta--ghost {
    border: 1px solid var(--border);
    color: var(--text);
}

.nav__cta--ghost:hover {
    background: var(--bg-light);
}

.nav__cta:not(.nav__cta--ghost) {
    background: var(--primary);
    color: #ffffff;
}

.nav__cta:not(.nav__cta--ghost):hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.hero__content h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: 22px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: normal;
}

.hero__description {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn__icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: currentColor;
    flex: 0 0 auto;
}

.btn--primary {
    background: var(--primary);
    color: #ffffff;
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn--secondary {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn--secondary:hover {
    background: var(--bg-light);
}

/* Map */
.map {
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f3 100%);
    position: relative;
    z-index: 2;
}

.map__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.map__intro h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.map__intro p {
    color: var(--text-muted);
    font-size: 17px;
}

.map__wrapper {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: transparent;
}

.map__shape {
    width: 100%;
    height: 100%;
    display: block;
}

.map__province {
    fill: rgba(134, 185, 31, 0.16) !important;
    stroke: rgba(15, 23, 42, 0.14) !important;
    stroke-width: 0.6 !important;
    transition: fill 0.2s ease;
    cursor: pointer;
}

.map__province.has-data {
    fill: rgba(134, 185, 31, 0.5) !important;
}

.map__province.is-pending {
    fill: rgba(134, 185, 31, 0.28) !important;
}

.map__province.is-active,
.map__province:hover,
.map__province:focus {
    fill: rgba(134, 185, 31, 0.85) !important;
    outline: none;
}

.map__tooltip {
    position: absolute;
    padding: 8px 12px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    border-radius: 8px;
    transform: translate(-50%, -100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    z-index: 2;
}

.map__tooltip.is-visible {
    opacity: 1;
}

.map__legend {
    max-width: 980px;
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.map__legend-items {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text);
    justify-content: center;
}

.map__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.map__legend-swatch {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    display: inline-block;
}

.map__legend-swatch--active {
    background: rgba(134, 185, 31, 0.6);
}

.map__legend-swatch--pending {
    background: rgba(134, 185, 31, 0.28);
}

.map__link {
    color: var(--primary);
    font-weight: 600;
}

/* App Callout */
.app-callout {
    position: relative;
    padding: 120px 24px;
    background: #ffffff;
    overflow: hidden;
    z-index: 2;
    scroll-margin-top: 96px;
}

.app-callout__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-callout__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-callout__title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--text);
}

.app-callout__subtitle {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.store-button {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-button img {
    height: 48px;
    display: block;
}

.store-button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.app-callout__gallery {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-callout__images {
    display: flex;
    gap: 18px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 12px 10px 18px;
    scroll-behavior: smooth;
}

.app-callout__img {
    position: relative;
    flex: 0 0 calc(50% - 9px);
    max-width: 240px;
    aspect-ratio: 440 / 995;
    border-radius: 12px;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.app-callout__img:hover {
    transform: scale(1.05);
}

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

.app-callout__nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 0 0 auto;
}

.app-callout__nav svg {
    width: 20px;
    height: 20px;
}

.app-callout__nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

/* Floating Images */
.floating-img {
    position: fixed;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
    opacity: 1;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    transition: opacity 0.3s;
    width: 240px;
    height: 240px;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.floating-img--1 {
    top: 12%;
    right: 3%;
    transform: rotate(-6deg);
}

.floating-img--2 {
    top: 12%;
    left: 3%;
    transform: rotate(6deg);
}

.floating-img--3 {
    bottom: 18%;
    right: 4%;
    transform: rotate(-8deg);
}

.floating-img--4 {
    bottom: 18%;
    left: 4%;
    transform: rotate(8deg);
}

/* Footer */
.footer {
    padding: 40px 24px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text);
}

/* Responsive */
@media (max-width: 1024px) {
    .floating-img {
        width: 200px;
        height: 200px;
    }
    
    .floating-img--1 {
        right: 1%;
        top: 15%;
    }
    
    .floating-img--2 {
        left: 1%;
        top: 15%;
    }
    
    .floating-img--3 {
        right: 2%;
        bottom: 20%;
    }
    
    .floating-img--4 {
        left: 2%;
        bottom: 20%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 24px 150px;
    }

    .floating-img {
        width: 160px;
        height: 160px;
        opacity: 0.35;
    }

    .floating-img--1 {
        top: 8%;
        right: -8%;
        transform: rotate(-5deg);
    }

    .floating-img--2 {
        top: 8%;
        left: -8%;
        transform: rotate(5deg);
    }

    .floating-img--3 {
        bottom: 12%;
        right: -6%;
        transform: rotate(-6deg);
    }

    .floating-img--4 {
        bottom: 12%;
        left: -6%;
        transform: rotate(6deg);
    }

    .map {
        padding: 80px 24px;
    }

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

    .app-callout {
        padding: 80px 24px;
    }

    .app-callout__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-callout__images {
        max-width: 480px;
        gap: 14px;
    }

    .app-callout__img {
        transform: none;
    }

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

@media (max-width: 480px) {
    .nav__inner {
        padding: 12px 16px;
    }

    .brand__logo {
        height: 32px;
    }

    .nav__cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 60px 16px 120px;
        overflow: visible;
    }

    .floating-img {
        width: 140px;
        height: 140px;
        opacity: 0.3 !important;
        z-index: 1;
    }

    .floating-img--1 {
        right: -10%;
        top: 6%;
    }

    .floating-img--2 {
        left: -10%;
        top: 6%;
    }

    .floating-img--3 {
        right: -8%;
        bottom: 30%;
    }

    .floating-img--4 {
        left: -8%;
        bottom: 30%;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .app-callout {
        padding: 60px 16px;
    }

    .app-callout__title {
        font-size: 28px;
    }

    .app-callout__subtitle {
        font-size: 16px;
    }

    .app-callout__images {
        max-width: 100%;
        gap: 12px;
    }

    .app-callout__img {
        flex: 0 0 70%;
        max-width: 260px;
        transform: none;
    }

    .app-callout__nav {
        width: 34px;
        height: 34px;
    }

    .store-button img {
        height: 42px;
    }
}
