/* =============================================
   AZNET MULTI TEKNOLOGI - Main Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1a56db;
    --primary-dark: #1341b3;
    --primary-light: #3b82f6;
    --primary-pale: #eff6ff;
    --accent: #0ea5e9;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.10), 0 4px 10px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);

    --header-h: 72px;
    --topbar-h: 40px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--dark-3);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary-pale);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--primary-pale);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* --- Section Headers --- */
/* section-label removed */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
    background: #070e1a;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    padding: 0 60px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left span, .topbar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i, .topbar-right i { font-size: 0.75rem; color: var(--accent); }

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    font-size: 0.7rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0f172a;
    height: var(--header-h);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header .container {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 32px;
    max-width: 1600px;
    padding: 0 60px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    display: block;
    object-fit: contain;
}

/* Header: logo putih langsung natural di atas header gelap */
.logo-img--header {
    height: 44px;
    width: auto;
    max-width: 200px;
}

/* Footer: logo putih natural di atas background gelap */
.logo-img--footer {
    height: 52px;
    width: auto;
    max-width: 220px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    margin-bottom: 16px;
}

/* Navbar */
.navbar { flex: 1; }

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

.nav-link {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.header-cta { margin-left: auto; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 50%, #1a56db 100%);
    padding: 80px 0 0;
    overflow-x: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    min-height: 480px;
    max-width: 1600px;
    padding: 0 60px;
}

.hero-content {
    padding-bottom: 140px;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.hero-img {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 105%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    mix-blend-mode: multiply;
    z-index: 2;
}

/* hero-badge-tag removed */

/* pulse-dot removed */

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #fbbf24;
    position: relative;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    max-width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3; /* di atas gambar, nutupin kaki */
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
    padding: 100px 0;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 48px;
}

.tab-btn {
    padding: 10px 32px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    transition: all var(--transition);
    cursor: pointer;
    background: none;
    border: none;
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(26,86,219,0.3);
}

.tab-content { display: none; }
.tab-content.active { display: grid; }

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    background: var(--white);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border-color: var(--primary);
    border-width: 2px;
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.pricing-header {
    padding: 32px 28px 24px;
    background: linear-gradient(160deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
}

.pricing-card.popular .pricing-header {
    background: linear-gradient(160deg, var(--primary-pale) 0%, #ffffff 100%);
}

.plan-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
}

.plan-speed {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: var(--primary);
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.plan-features {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--dark-3);
}

.plan-features li i.fa-check {
    color: var(--success);
    font-size: 0.75rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-features li.disabled {
    color: var(--gray-light);
    text-decoration: line-through;
}

.plan-features li.disabled i.fa-times {
    color: var(--gray-light);
    font-size: 0.75rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: rgba(148,163,184,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-features + .btn {
    margin: 0 28px 28px;
}

.pricing-card .btn { margin: 0 28px 28px; width: calc(100% - 56px); }

.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i { color: var(--warning); }

/* =============================================
   COVERAGE
   ============================================= */
.coverage {
    padding: 100px 0;
    background: var(--bg);
}

.coverage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.coverage-info .section-title { text-align: left; }
.coverage-info p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.75;
}

.coverage-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.area-group h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-group h4 i {
    color: var(--primary);
    font-size: 0.85rem;
}

.coming-soon h4 i { color: var(--warning); }

.area-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--dark-3);
}

.area-list li i.fa-check-circle { color: var(--success); font-size: 0.8rem; }
.area-list li i.fa-clock { color: var(--warning); font-size: 0.8rem; }

.coming-soon .area-list li { color: var(--gray); }

/* Map Placeholder */
.map-placeholder {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-bg {
    position: relative;
    height: 380px;
    background: linear-gradient(145deg, #e8f4fd 0%, #dbeafe 50%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,86,219,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,86,219,0.08) 1px, transparent 1px);
    background-size: 36px 36px;
}

.map-center-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 5;
}

.map-pulse {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 4;
    animation: map-pulse 2.5s infinite;
}

@keyframes map-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(8); opacity: 0; }
}

.map-radius {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(26,86,219,0.2);
    background: rgba(26,86,219,0.04);
}

.r1 { width: 100px; height: 100px; }
.r2 { width: 200px; height: 200px; }
.r3 { width: 300px; height: 300px; border-style: dashed; border-color: rgba(26,86,219,0.12); }

.map-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.map-point span {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.p1 { top: 15%; left: 50%; transform: translate(-50%, 0); }
.p2 { top: 25%; left: 65%; }
.p3 { bottom: 20%; left: 42%; }
.p4 { top: 50%; right: 15%; }
.p5 { top: 50%; left: 12%; }

.map-legend {
    padding: 14px 20px;
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--gray);
    background: white;
}

.legend-active, .legend-soon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-active {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
}

.dot-soon {
    width: 10px;
    height: 10px;
    background: var(--warning);
    border-radius: 50%;
    display: inline-block;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-stats-card {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--white);
}

.about-stat > i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.astat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.astat-lbl {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    line-height: 1.4;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 8px;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-3);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 14px;
    line-height: 1.75;
}

.about-creds {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-creds li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-3);
}

.about-creds li i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* about-badges removed */

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 100px 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    color: var(--primary-pale);
    font-family: Georgia, serif;
    line-height: 1;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testi-stars i { color: #fbbf24; font-size: 0.85rem; }

.testi-text {
    font-size: 0.9rem;
    color: var(--dark-3);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.testi-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 700;
}

.testi-info small {
    font-size: 0.78rem;
    color: var(--gray);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-details p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.social-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    width: fit-content;
}

.social-btn.fb { background: #1877f2; color: white; }
.social-btn.fb:hover { background: #1565c0; }
.social-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.social-btn.ig:hover { opacity: 0.9; }
.social-btn.wa { background: #25d366; color: white; }
.social-btn.wa:hover { background: #1db954; }

/* Contact Form */
.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-3);
}

.required { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group select { cursor: pointer; }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray-light);
    margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark); }

.footer-main { padding: 80px 0 56px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand .logo { margin-bottom: 4px; }

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact li i {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 900;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
}

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

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

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.wa-tooltip {
    position: absolute;
    right: 64px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--dark);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
}

.modal-icon.success {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

.modal h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.modal p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Large Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-brand .footer-desc { max-width: 100%; }
}

/* Tablet */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual { display: none; }

    .hero-desc { margin-left: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }

    .coverage-inner {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .topbar-left span:last-child,
    .topbar-right span:first-child {
        display: none;
    }

    .header-cta { display: none; }

    .hamburger { display: flex; }

    .navbar {
        position: fixed;
        top: calc(var(--topbar-h) + var(--header-h));
        left: 0;
        right: 0;
        background: #0f172a;
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        padding: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .navbar.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu { flex-direction: column; gap: 4px; }
    .nav-link { padding: 12px 16px; font-size: 0.95rem; }

    .hero { padding: 60px 0 100px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
    .stat-divider { width: 100%; height: 1px; }
    .stat-item { flex-direction: row; gap: 12px; }

    .features-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form { padding: 24px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
    .footer-contact { grid-column: auto; }

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

    .footer-legal { flex-wrap: wrap; justify-content: center; }

    .coverage-areas { grid-template-columns: 1fr; }

    .about-stats-card { grid-template-columns: 1fr; gap: 24px; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* Extra small */
@media (max-width: 400px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .topbar { display: none; }
    .header { top: 0; }
}
