:root {
    --bs-primary: #0066FF;
    --bs-primary-rgb: 0, 102, 255;
    --bs-primary-dark: #0052CC;
    --bs-dark: #0a1628;
    --bs-dark-rgb: 10, 22, 40;
    --bs-success: #10b981;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { box-sizing: border-box; }
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--surface);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.text-primary { color: var(--bs-primary) !important; }
.bg-primary { background: var(--bs-primary) !important; }
.btn-primary {
    background: var(--bs-primary);
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-primary:hover { background: var(--bs-primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,102,255,0.25); }
.btn-outline-primary {
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    background: transparent;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-1px);
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-outline-light:hover { background: #fff; color: #0a1628; border-color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }

.section { padding: 96px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark {
    background: linear-gradient(135deg, #0a1628, #132244, #0f1a2e);
    color: #fff;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bs-primary);
    margin-bottom: 0.75rem;
}
.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-title h2 { color: #fff; }
.section-dark .section-title p { color: rgba(255,255,255,0.6); }

/* Navbar */
#navWrapp {
    background: #0a1628;
    padding: 0;
    min-height: 68px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1050;
}
#navWrapp .container {
    display: flex;
    align-items: center;
    min-height: 68px;
}
#navWrapp .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0;
    letter-spacing: -0.5px;
}
.brand-text { color: #fff; }
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 22px 16px;
    transition: var(--transition);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus { color: #fff; }
.navbar-dark .navbar-nav .nav-link.dropdown-toggle::after {
    border-top-color: rgba(255,255,255,0.5);
    margin-left: 6px;
    font-size: 0.7rem;
}

.dropdown-hover { position: relative; }
@media (min-width: 992px) {
    .dropdown-hover .dropdown-menu {
        display: block !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        margin-top: 0;
        border: none;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        background: #fff;
        min-width: 220px;
    }
    .dropdown-hover:hover > .dropdown-menu,
    .dropdown-hover .dropdown-menu:hover,
    .dropdown-hover.is-open > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    .dropdown-menu .dropdown-item {
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 0.86rem;
        color: var(--text);
        transition: var(--transition);
    }
    .dropdown-menu .dropdown-item:hover { background: var(--surface-soft); color: var(--bs-primary); }
}
@media (max-width: 991.98px) {
    .dropdown-hover .dropdown-menu {
        margin-top: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        padding-left: 0.5rem;
    }
    .navbar-dark .navbar-nav .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .dropdown-hover .dropdown-menu .dropdown-item { color: rgba(255,255,255,0.7); }
    .dropdown-hover .dropdown-menu .dropdown-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
}

/* Hero */
.home-hero {
    background: linear-gradient(135deg, #0a1628 0%, #132244 40%, #1a365d 70%, #0f1a2e 100%);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.home-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #93c5fd;
    background: rgba(255,255,255,0.06);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.home-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 720px;
    letter-spacing: -0.5px;
}
.home-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
@media (max-width: 767px) {
    .home-hero { padding: 80px 0 60px; }
    .home-hero h1 { font-size: 2.2rem; }
    .home-hero p { font-size: 1rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stats strong { font-size: 1.3rem; }
}

/* Product Cards */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 12px 40px rgba(0,102,255,0.1);
    transform: translateY(-4px);
}
.product-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.icon-blue { background: #dbeafe; color: #0066FF; }
.icon-green { background: #d1fae5; color: #059669; }
.icon-orange { background: #fed7aa; color: #ea580c; }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-navy { background: #e0e7ff; color: #4338ca; }
.icon-slate { background: #f1f5f9; color: #475569; }
.product-card h3 { font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.88rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.product-card .card-footer-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.product-card:hover .card-footer-link { gap: 10px; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); border-color: #cbd5e1; transform: translateY(-2px); }
.feature-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.feature-card h4 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Use Cases */
.usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 991px) { .usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .usecases-grid { grid-template-columns: 1fr; } }
.usecase-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.usecase-card:hover { border-color: var(--bs-primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.usecase-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.usecase-card h4 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.usecase-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.75rem; }
.usecase-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.usecase-tag {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--bs-primary);
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 12px;
}

/* Testimonials */
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.75rem; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #0a1628, #1a365d);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.cta-section h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-badges { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.cta-badges span { font-size: 0.85rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.cta-badges span i { color: var(--bs-success); }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a1628, #132244);
    color: #fff;
    padding: 60px 0 50px;
}
.page-header h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.3px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { background: transparent; padding: 0; margin-bottom: 0.75rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* Pricing */
.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card.featured { border-color: var(--bs-primary); box-shadow: 0 8px 40px rgba(0,102,255,0.12); }
.pricing-card.featured::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
}
.pricing-card:hover { border-color: var(--bs-primary); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,102,255,0.1); }
.pricing-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: #0f172a; margin: 1rem 0 0.25rem; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card ul { text-align: left; list-style: none; padding: 0; margin-bottom: 1.5rem; }
.pricing-card ul li { padding: 6px 0; font-size: 0.85rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.pricing-card ul li i { color: var(--bs-success); font-size: 0.75rem; flex-shrink: 0; }

/* Features Checklist */
.features-checklist { list-style: none; padding: 0; }
.features-checklist li { padding: 10px 0; display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text); border-bottom: 1px solid var(--surface-soft); }
.features-checklist li i { color: var(--bs-success); font-size: 0.9rem; flex-shrink: 0; }

/* Contact */
.contact-info-card {
    background: #0a1628;
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}
.contact-info-card i { color: var(--bs-primary); }
.contact-info-card h5 { font-weight: 600; margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-info-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
}
.form-control:focus, .form-select:focus { border-color: var(--bs-primary); box-shadow: 0 0 0 3px rgba(0,102,255,0.1); }

/* Footer */
.site-footer { background: #0a1628; color: #fff; }
.site-footer h6 { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom small { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 1.8rem; }
    .home-hero h1 { font-size: 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .cta-section h2 { font-size: 1.8rem; }
    .hero-stats { gap: 1.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-stats strong { font-size: 1.1rem; }
}

.rounded-12 { border-radius: 12px; }
.shadow-soft { box-shadow: var(--shadow); }
.bg-gradient-primary { background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark)); }

/* Locations / Map */
.map-wrapper {
    background: linear-gradient(135deg, #0f1a2e, #132244, #1a2a4a);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}
.map-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.2;
}
.colombia-map { width: 100%; height: 100%; }
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.map-marker {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.1), 0 4px 16px rgba(0,0,0,0.3);
    transition: var(--transition);
    z-index: 2;
}
.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.15), 0 8px 32px rgba(0,0,0,0.4);
}
.map-marker::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--marker-color, #0066FF);
    opacity: 0.7;
}
.map-marker-num {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 991px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .locations-grid { grid-template-columns: 1fr; } }
.location-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.location-card:hover {
    border-color: var(--bs-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.location-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}
.location-pin {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.location-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}
.location-dept {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.location-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 1rem;
}
.location-service-tag {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--bs-primary);
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 12px;
}
.location-coords {
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.location-coords i { color: var(--bs-primary); }
