*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --teal-500: #5dbebd;
    --teal-600: #3aa5a5;
    --dark-900: #020a13;
    --dark-800: #091624;
    --gray-50: #f8fafb;
    --gray-100: #eef2f5;
    --gray-200: #d8e0e7;
    --gray-500: #768297;
    --gray-700: #37404f;
    --white: #ffffff;
    --text-dark: #0d1b2a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.narrow {
    width: min(960px, 92vw);
    margin: 0 auto;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    list-style: none !important;
    list-style-type: none !important;
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.nav-menu li::before {
    content: none !important;
    display: none !important;
}

.nav-menu a {
    color: var(--gray-700);
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--teal-600);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--teal-500);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(93, 190, 189, 0.35);
}

.btn-primary:hover {
    background: var(--teal-600);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(13, 27, 42, 0.2);
}

.btn-outline:hover {
    border-color: var(--teal-500);
    color: var(--teal-500);
}

.hero {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 160px 0 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(40px, 4.5vw, 56px);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.hero-highlight {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--teal-500);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.link-arrow {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--teal-500);
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.drone-visual {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.drone-visual img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(93, 190, 189, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.signal-band {
    height: 80px;
    background: var(--white);
}

.text-teal {
    color: var(--teal-500);
}

section h2 {
    font-size: clamp(32px, 3vw, 42px);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 50px;
    font-size: 16px;
}

.technology {
    background: var(--white);
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(13, 27, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-card.featured {
    background: var(--teal-500);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(93, 190, 189, 0.3);
}

.feature-card.featured:hover {
    box-shadow: 0 16px 40px rgba(93, 190, 189, 0.4);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    color: #1A2332;
}

.feature-card.featured .feature-icon {
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A2332;
}

.feature-card.featured h3 {
    color: var(--white);
}

.feature-card p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

.feature-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.industries-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
    margin: 50px 0 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.industry-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-item p {
    font-size: 13px;
    font-weight: 500;
    color: #1A2332;
}

.pricing-text {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1A2332;
    margin-top: 50px;
    margin-bottom: 10px;
}

.price-highlight {
    color: var(--teal-500);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
}

.map-section {
    background: #ffffff; /* Ubah dari var(--dark-900) jadi putih */
    padding: 0;          /* Ubah dari 80px jadi 0 supaya tidak ada celah */
    color: #000000;      /* Opsional: ubah warna teks jadi hitam jika ada teks */
    text-align: center;
}
.map-section h2 {
    display: none; 
}

.map-wrapper {
    width: 100%;
    max-width: 100%;    
    margin: 0;
    position: relative;
    background: #ffffff; 
    padding: 0;          
}

.map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: none;   
}
.cta-section {
    background: var(--teal-500);
    padding: 100px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.cta-media {
    display: flex;
    justify-content: center;
}

.cta-media img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.cta-text {
    color: var(--white);
}

.cta-text h2 {
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-align: left;
}

.cta-text p {
    font-size: 16px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: var(--white);
    color: var(--teal-500);
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.link-white {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s;
}

.link-white:hover {
    opacity: 0.8;
}

.footer {
    background: var(--dark-800);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-left {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-left h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--teal-500);
}

.newsletter-form .btn-primary {
    padding: 10px 20px;
    font-size: 13px;
}

.footer-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.footer-bottom-left a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom-center {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-bottom-center a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-center a:hover {
    color: var(--white);
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    color: var(--white);
}

.footer-bottom-right p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-menu {
        gap: 20px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text h2,
    .cta-text p {
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-inner {
        justify-content: space-between;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        margin-bottom: 40px;
    }
    
    .map-wrapper {
        padding: 0 10px;
    }
    
    .map-wrapper img {
        max-height: 400px;
    }
}

@media (max-width: 540px) {
    .btn,
    .btn-outline,
    .btn-primary,
    .btn-cta-white {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-box {
        padding: 20px 24px;
    }
    
    .pricing-box p {
        font-size: 14px;
    }

    .cta-grid {
        gap: 40px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-center {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        justify-content: center;
        align-items: center;
    }
}
