/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    font-size: 1.125rem;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.loaded {
    opacity: 1;
}

/* PWA Install Prompt */
.pwa-install-prompt {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.pwa-install-prompt:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
}

.pwa-prompt-content {
    padding: 1.5rem;
    text-align: center;
}

.pwa-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.pwa-prompt-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.pwa-prompt-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pwa-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.pwa-buttons .btn-primary,
.pwa-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

/* iOS Install Prompt */
.ios-install-prompt {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.ios-prompt-content {
    padding: 1.5rem;
}

.ios-prompt-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.ios-logo {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
}

.ios-prompt-header h3 {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-green);
}

.ios-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
}

.ios-steps {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.ios-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.ios-steps svg {
    vertical-align: middle;
    margin: 0 0.25rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* App Management Section */
.app-icon-wrapper {
    margin-bottom: 2rem;
}

.app-icon {
    background: var(--secondary-yellow);
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.smartphone-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-green);
}

.value-proposition {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-grid {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.value-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary-yellow);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.value-item-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    background: var(--secondary-yellow);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-green);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.investment-highlight {
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, #f59e0b 100%);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
}

.investment-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.investment-description {
    color: var(--primary-green);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.investment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.investment-buttons .btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.investment-buttons .btn-primary:hover {
    background: var(--primary-green-dark);
}

.investment-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.investment-buttons .btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Color Variables */
:root {
    --primary-green: #166534;
    --primary-green-light: #16a34a;
    --primary-green-dark: #14532d;
    --secondary-yellow: #eab308;
    --secondary-yellow-light: #fbbf24;
    --accent-cream: #fef7ed;
    --accent-beige: #f5f5dc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

/* Gradients */
.bg-gradient-light {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.5rem;
    width: 2.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-section {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
}

.phone-icon {
    width: 1rem;
    height: 1rem;
}

.phone-number {
    font-size: 0.875rem;
    font-weight: 500;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-green);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/302899/pexels-photo-302899.jpeg') center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.85) 0%, rgba(22, 163, 74, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-yellow);
    font-weight: 600;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-highlight {
    display: block;
    color: var(--secondary-yellow);
}

.title-year {
    display: block;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.subtitle-highlight {
    display: block;
    color: var(--secondary-yellow-light);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.btn-primary {
    background: var(--secondary-yellow);
    color: var(--primary-green);
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--secondary-yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--white);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--white);
    border-radius: 0.125rem;
    animation: pulse 2s infinite;
}

/* Paket Kemitraan */
.paket-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.investment-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
}

.investment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, #059669 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.investment-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.investment-label {
    color: var(--text-light);
    font-size: 1.125rem;
}

.package-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #f0fdf4;
    transition: all 0.3s ease;
}

.package-item:hover {
    background: #dcfce7;
}

.package-item.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 2px solid var(--secondary-yellow);
}

.item-icon {
    background: #dcfce7;
    padding: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-green);
}

.item-text {
    font-weight: 600;
    color: var(--primary-green);
    flex-grow: 1;
}

.package-item.highlight .item-text {
    color: #92400e;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-green-light);
    flex-shrink: 0;
}

.btn-investment {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, #059669 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-investment:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
}

.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Simulasi Usaha */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.analysis-icon {
    background: var(--secondary-yellow);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.analysis-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-green);
}

.analysis-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.analysis-metric {
    color: var(--secondary-yellow);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.analysis-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.profit-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
}

.profit-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.profit-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.calculation-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calculation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.calculation-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.calculation-value {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.calculation-value.highlight {
    color: var(--secondary-yellow);
}

.profit-result {
    text-align: center;
}

.result-card {
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, #f59e0b 100%);
    border-radius: 1.5rem;
    padding: 2rem;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.result-period {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.roi-info {
    background: rgba(22, 101, 52, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
}

.roi-text {
    color: var(--primary-green);
    font-weight: 700;
}

/* Sebaran Mitra */
.cities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.city-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.city-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.city-card.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 2px solid var(--secondary-yellow);
}

.city-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.city-icon {
    background: #dcfce7;
    padding: 0.75rem;
    border-radius: 50%;
}

.city-card.highlight .city-icon {
    background: #fde68a;
}

.city-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-green);
}

.city-card.highlight .city-icon svg {
    color: #92400e;
}

.city-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.city-card.highlight .city-name {
    color: #92400e;
}

.city-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
}

.city-card.highlight .city-rating {
    color: #a16207;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: var(--secondary-yellow);
}

.city-partners {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: 600;
}

.city-card.highlight .city-partners {
    color: #92400e;
}

.users-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.city-status {
    background: #f0fdf4;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.city-card.highlight .city-status {
    background: #fef3c7;
}

.city-status p {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.875rem;
}

.city-card.highlight .city-status p {
    color: #92400e;
}

.map-section {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 1rem;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-icon {
    width: 4rem;
    height: 4rem;
    color: var(--primary-green-light);
    margin: 0 auto 1rem;
}

.map-text-main {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.map-text-sub {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.map-badge {
    display: inline-block;
    background: var(--primary-green-light);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
}

/* Rata Penjualan */
.password-section {
    max-width: 600px;
    margin: 0 auto;
}

.password-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.lock-icon {
    background: var(--secondary-yellow);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.lock-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-green);
}

.password-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.password-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.password-form {
    max-width: 400px;
    margin: 0 auto;
}

.password-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.password-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--secondary-yellow);
    background: rgba(255, 255, 255, 0.2);
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--white);
}

.eye-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-password {
    background: var(--secondary-yellow);
    color: var(--primary-green);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-password:hover {
    background: var(--secondary-yellow-light);
    transform: translateY(-2px);
}

.password-help {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.sales-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sales-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.sales-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sales-card.highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 2px solid var(--secondary-yellow);
}

.sales-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sales-city {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.sales-card.highlight .sales-city {
    color: var(--secondary-yellow-light);
}

.sales-status {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-sangatbaik {
    background: var(--primary-green-light);
    color: var(--white);
}

.status-luarbiasa {
    background: var(--secondary-yellow);
    color: var(--primary-green);
}

.status-berkembang {
    background: #3b82f6;
    color: var(--white);
}

.status-stabil {
    background: #6b7280;
    color: var(--white);
}

.sales-metrics {
    display: grid;
    gap: 1rem;
}

.sales-metric {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.metric-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary-yellow);
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.metric-value {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.summary-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
}

.summary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.summary-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.summary-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.summary-stat {
    padding: 1rem;
}

.summary-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

.summary-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Keunggulan */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.advantage-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.advantage-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-green);
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.advantage-description {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-section {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.avatar-img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--primary-green);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.author-name {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.125rem;
}

.author-title {
    color: var(--text-light);
}

/* CTA Section */
.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-logo {
    margin-bottom: 2rem;
}

.cta-logo-img {
    height: 4rem;
    width: 4rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-highlight {
    display: block;
    color: var(--secondary-yellow);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

.cta-stat {
    padding: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-divider {
    display: none;
}

.rating-section {
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary-yellow);
}

.promo-text {
    color: var(--secondary-yellow-light);
    font-size: 1.125rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: 2.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-green-light);
    color: var(--white);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
    
    .pwa-install-prompt {
        left: auto;
        right: 20px;
        max-width: 350px;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .phone-section {
        display: flex;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .title-year {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .contact-info {
        flex-direction: row;
    }
    
    .contact-divider {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-section-title {
        text-align: left;
    }
    
    .footer-contacts {
        align-items: flex-start;
    }
    
    .footer-contact {
        justify-content: flex-start;
    }
    
    .footer-links {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .investment-title {
        font-size: 2.5rem;
    }
    
    .paket-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .profit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analysis-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .title-year {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Touch and Gesture Support */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover {
        transform: none;
    }
    
    .feature-card:active {
        transform: scale(0.98);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .loading-logo,
    .pwa-logo,
    .ios-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-spinner {
        animation: none;
    }
    
    .loading-logo {
        animation: none;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-light {
    color: rgba(255, 255, 255, 0.8);
}

.hidden {
    display: none !important;
}