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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(to bottom right, #eff6ff, #ffedd5);
    min-height: 100vh;
}

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

header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn-outline:hover {
    background: #eff6ff;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-orange {
    background: #f97316;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-orange:hover {
    background: #ea580c;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 24px;
    height: 24px;
    color: #2563eb;
}

.stat-text {
    font-weight: 600;
    color: #374151;
}

/* Map Section */
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 1.5rem;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-placeholder {
    display: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.price-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.price-card.featured {
    border: 2px solid #2563eb;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 1.875rem;
    font-weight: bold;
    color: #2563eb;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
}

.price-features {
    list-style: none;
    margin-top: 1.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.price-features li {
    padding: 0.5rem 0;
    line-height: 1.5;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: #f3f4f6;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.benefit-icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: white;
}

.benefit-card:hover .benefit-icon-circle {
    border: 3px solid rgba(255, 255, 255, 0.5);
    background: transparent;
}

.benefit-icon-svg {
    width: 64px;
    height: 64px;
    transition: all 0.4s ease;
    fill: #3b82f6;
    stroke: #3b82f6;
}

.benefit-card:hover .benefit-icon-svg {
    fill: white;
    stroke: white;
}

.benefit-title {
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    transition: all 0.4s ease;
    color: #3b82f6;
}

.benefit-card:hover .benefit-title {
    color: white;
}

.benefit-text {
    line-height: 1.7;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    color: #6b7280;
}

.benefit-card:hover .benefit-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 768px) {

    .hero-grid,
    .pricing-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
}