/* =============================================
   GCARGO - CUSTOM STYLES
   ============================================= */

/* ----------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------- */
:root {
    /* Brand Colors */
    --gcargo-primary: #1E3A8A;
    --gcargo-primary-dark: #172e6e;
    --gcargo-secondary: #1a1a2e;
    --gcargo-accent: #F97316;
    --gcargo-bg: #F3F4F6;
    --gcargo-neutral: #4B5563;
    --gcargo-dark: #212529;

    /* =============================================
       MODULE ICON DESIGN SYSTEM
       ============================================= */

    /* FAMILIA 1: Operación & Flota (Azules) */
    --mod-ops-primary: #0066cc;
    --mod-ops-secondary: #004d99;
    --mod-ops-gps: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    --mod-ops-planning: linear-gradient(135deg, #0088ff 0%, #0066cc 100%);
    --mod-ops-fuel: linear-gradient(135deg, #00a8e8 0%, #007ea7 100%);
    --mod-ops-workshop: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

    /* FAMILIA 2: Administración & Compliance (Verdes) */
    --mod-admin-primary: #00b894;
    --mod-admin-secondary: #00a884;
    --mod-admin-docs: linear-gradient(135deg, #00b894 0%, #00a884 100%);
    --mod-admin-hr: linear-gradient(135deg, #26de81 0%, #20bf6b 100%);
    --mod-admin-terceros: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --mod-admin-prevencion: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);

    /* FAMILIA 3: Finanzas & Control (Verde Oscuro/Teal) */
    --mod-fin-primary: #009688;
    --mod-fin-secondary: #00796b;
    --mod-fin-finanzas: linear-gradient(135deg, #009688 0%, #00796b 100%);
    --mod-fin-billing: linear-gradient(135deg, #00897b 0%, #00695c 100%);
    --mod-fin-rendiciones: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
    --mod-fin-cobranza: linear-gradient(135deg, #4db6ac 0%, #26a69a 100%);

    /* FAMILIA 4: Inteligencia & Datos (Morados) */
    --mod-intel-primary: #9b59b6;
    --mod-intel-secondary: #8e44ad;
    --mod-intel-bi: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    --mod-intel-crm: linear-gradient(135deg, #a55eea 0%, #8854d0 100%);

    /* FAMILIA 5: Plataforma & Ecosistema (Azul Oscuro/Naranja) */
    --mod-plat-primary: #1a1a2e;
    --mod-plat-secondary: #16213e;
    --mod-plat-api: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --mod-plat-integraciones: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    --mod-plat-infracciones: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

/* =============================================
   MODULE ICON SYSTEM - Design Guidelines
   =============================================

   FAMILIAS DE MÓDULOS:

   1. OPERACIÓN & FLOTA (Azules)
      - GPS & Monitoreo      → flaticon-map        → #0066cc/#004d99
      - Planificación        → flaticon-calendar-1 → #0088ff/#0066cc
      - Combustible          → flaticon-gauge      → #00a8e8/#007ea7
      - Taller               → flaticon-maintenance→ #3498db/#2980b9

   2. ADMINISTRACIÓN & COMPLIANCE (Verdes)
      - Documentos           → flaticon-shield     → #00b894/#00a884
      - RRHH Transporte      → flaticon-group      → #26de81/#20bf6b
      - Gestión Terceros     → flaticon-partner    → #2ecc71/#27ae60
      - Prevención Riesgos   → flaticon-warning-1  → #e74c3c/#c0392b

   3. FINANZAS & CONTROL (Verde Oscuro/Teal)
      - Finanzas             → flaticon-wallet     → #009688/#00796b
      - Facturación DTE      → flaticon-bill       → #00897b/#00695c
      - Rendiciones          → flaticon-receipt    → #26a69a/#00897b
      - Cobranza             → flaticon-payment    → #4db6ac/#26a69a

   4. INTELIGENCIA & DATOS (Morados)
      - Business Intelligence→ flaticon-chart      → #9b59b6/#8e44ad
      - CRM                  → flaticon-target     → #a55eea/#8854d0

   5. PLATAFORMA & ECOSISTEMA (Azul Oscuro/Naranja)
      - API & Integraciones  → flaticon-api        → #1a1a2e/#16213e
      - Integraciones        → flaticon-connect    → #2c3e50/#1a252f
      - Infracciones         → flaticon-warning    → #ff6b6b/#ee5a24

   TAMAÑOS:
   - Extra Small (XS): 24x24px - para listas compactas
   - Small (SM): 32x32px - para cards pequeñas
   - Medium (MD): 48x48px - para cards estándar (default)
   - Large (LG): 64x64px - para hero sections
   - Extra Large (XL): 80x80px - para páginas de módulo

   REGLAS DE USO:
   - Siempre usar gradiente 135deg
   - Bordes redondeados: 12px (SM), 14px (MD), 16px (LG), 20px (XL)
   - Ícono en blanco sobre fondo de color
   - Hover: scale(1.05) + box-shadow
   ============================================= */

/* ----------------------------------------------
   1.0.1 MODULE ICON BASE STYLES
   ---------------------------------------------- */

/* Base icon container */
.module-icon,
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.module-icon span,
.nav-icon span {
    color: white;
    line-height: 1;
}

/* Size variants */
.module-icon-xs { width: 24px; height: 24px; min-width: 24px; border-radius: 6px; }
.module-icon-xs span { font-size: 12px; }

.module-icon-sm { width: 32px; height: 32px; min-width: 32px; border-radius: 8px; }
.module-icon-sm span { font-size: 16px; }

.module-icon-md { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; }
.module-icon-md span { font-size: 24px; }

.module-icon-lg { width: 64px; height: 64px; min-width: 64px; border-radius: 14px; }
.module-icon-lg span { font-size: 32px; }

.module-icon-xl { width: 80px; height: 80px; min-width: 80px; border-radius: 16px; }
.module-icon-xl span { font-size: 40px; }

/* Hover effects */
.module-icon:hover,
.nav-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------------
   1.0.2 FAMILIA 1: OPERACIÓN & FLOTA (Azules)
   ---------------------------------------------- */
.nav-icon.gps,
.module-icon.gps {
    background: var(--mod-ops-gps);
}

.nav-icon.planning,
.module-icon.planning {
    background: var(--mod-ops-planning);
}

.nav-icon.fuel,
.module-icon.fuel {
    background: var(--mod-ops-fuel);
}

.nav-icon.workshop,
.module-icon.workshop {
    background: var(--mod-ops-workshop);
}

/* ----------------------------------------------
   1.0.3 FAMILIA 2: ADMINISTRACIÓN & COMPLIANCE (Verdes)
   ---------------------------------------------- */
.nav-icon.docs,
.module-icon.docs {
    background: var(--mod-admin-docs);
}

.nav-icon.hr,
.module-icon.hr {
    background: var(--mod-admin-hr);
}

.nav-icon.terceros,
.module-icon.terceros {
    background: var(--mod-admin-terceros);
}

.nav-icon.prevencion,
.module-icon.prevencion {
    background: var(--mod-admin-prevencion);
}

/* ----------------------------------------------
   1.0.4 FAMILIA 3: FINANZAS & CONTROL (Teal)
   ---------------------------------------------- */
.nav-icon.finance,
.module-icon.finance {
    background: var(--mod-fin-finanzas);
}

.nav-icon.billing,
.module-icon.billing {
    background: var(--mod-fin-billing);
}

.nav-icon.rendiciones,
.module-icon.rendiciones {
    background: var(--mod-fin-rendiciones);
}

.nav-icon.cobranza,
.module-icon.cobranza {
    background: var(--mod-fin-cobranza);
}

/* ----------------------------------------------
   1.0.5 FAMILIA 4: INTELIGENCIA & DATOS (Morados)
   ---------------------------------------------- */
.nav-icon.bi,
.module-icon.bi {
    background: var(--mod-intel-bi);
}

.nav-icon.crm,
.module-icon.crm {
    background: var(--mod-intel-crm);
}

/* ----------------------------------------------
   1.0.6 FAMILIA 5: PLATAFORMA & ECOSISTEMA
   ---------------------------------------------- */
.nav-icon.api,
.module-icon.api {
    background: var(--mod-plat-api);
}

.nav-icon.integraciones,
.module-icon.integraciones {
    background: var(--mod-plat-integraciones);
}

.nav-icon.infracciones,
.module-icon.infracciones {
    background: var(--mod-plat-infracciones);
}

/* ----------------------------------------------
   1.0.7 MODULE FAMILY BADGES
   ---------------------------------------------- */
.module-family-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-family-badge.ops {
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
}

.module-family-badge.admin {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
}

.module-family-badge.fin {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
}

.module-family-badge.intel {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.module-family-badge.plat {
    background: rgba(26, 26, 46, 0.1);
    color: #1a1a2e;
}

/* ----------------------------------------------
   1.0.8 MODULE ICON UTILITY CLASSES
   ---------------------------------------------- */

/* Icon with text inline */
.icon-with-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-with-text .module-icon {
    flex-shrink: 0;
}

/* Icon grid for module listings */
.module-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
}

/* Stacked icons for pack displays */
.module-icons-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-icons-stack .module-icon {
    margin-right: -8px;
    border: 2px solid white;
}

/* Disabled state */
.module-icon.disabled,
.nav-icon.disabled {
    opacity: 0.4;
    filter: grayscale(100%);
    pointer-events: none;
}

/* Active/Selected state */
.module-icon.active,
.nav-icon.active {
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

/* ----------------------------------------------
   1.1 LOGO SIZE (+20% total)
   ---------------------------------------------- */
.desktoplogo img {
    max-height: 42px !important;    /* 35px + 20% */
}
.smllogo img {
    max-height: 41px !important;    /* 34px + 20% */
}

/* ----------------------------------------------
   1.2 CLIENT LOGOS (+56% total, grayscale hover effect)
   ---------------------------------------------- */
.brands-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.brands-section .brands-carousel-5 {
    min-height: 156px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Owl Carousel wrapper for brands */
.brands-section .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.brands-section .owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 140px;
}

.brand-logo img {
    max-height: 94px !important;
    max-width: 203px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block !important;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brands-title {
    margin-bottom: 30px;
}

.brands-title h6 {
    color: var(--gcargo-neutral);
    font-weight: 500;
    text-align: center;
}

/* Fallback if Owl Carousel doesn't load */
.brands-carousel-5:not(.owl-loaded) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brands-carousel-5:not(.owl-loaded) .brand-logo {
    flex: 0 0 auto;
}

/* ----------------------------------------------
   1.2 TEXT SIZE REDUCTION (-10% ALL)
   ---------------------------------------------- */

/* H6 - Reducción 10% */
h6 { font-size: 0.9rem !important; }           /* 16px -> 14.4px */
h6.h6-md { font-size: 1.01rem !important; }    /* 18px -> 16.2px */
h6.h6-lg { font-size: 1.13rem !important; }    /* 20px -> 18px */
h6.h6-xl { font-size: 1.18rem !important; }    /* 21px -> 18.9px */

/* H5 - Reducción 10% */
h5 { font-size: 1.24rem !important; }          /* 22px -> 19.8px */
h5.h5-md { font-size: 1.35rem !important; }    /* 24px -> 21.6px */
h5.h5-lg { font-size: 1.46rem !important; }    /* 26px -> 23.4px */
h5.h5-xl { font-size: 1.58rem !important; }    /* 28px -> 25.2px */

/* H4 - Reducción 10% */
h4 { font-size: 1.69rem !important; }          /* 30px -> 27px */
h4.h4-md { font-size: 1.8rem !important; }     /* 32px -> 28.8px */
h4.h4-lg { font-size: 1.91rem !important; }    /* 34px -> 30.6px */
h4.h4-xl { font-size: 2.03rem !important; }    /* 36px -> 32.4px */

/* H3 - Reducción 10% */
h3 { font-size: 2.14rem !important; }          /* 38px -> 34.2px */
h3.h3-md { font-size: 2.25rem !important; }    /* 40px -> 36px */
h3.h3-lg { font-size: 2.36rem !important; }    /* 42px -> 37.8px */
h3.h3-xl { font-size: 2.48rem !important; }    /* 44px -> 39.6px */

/* H2 - Reducción 10% */
h2 { font-size: 2.59rem !important; }          /* 46px -> 41.4px */
h2.h2-md { font-size: 2.7rem !important; }     /* 48px -> 43.2px */
h2.h2-lg { font-size: 2.81rem !important; }    /* 50px -> 45px */
h2.h2-xl { font-size: 2.64rem !important; }    /* 52px -> 42.1px (-20% total) */
h2.h2-title { font-size: 3.04rem !important; } /* 54px -> 48.6px */

/* Párrafos - Reducción 10% */
p.p-sm { font-size: 0.84rem !important; }      /* 15px -> 13.5px */
p { font-size: 0.9rem !important; }            /* 16px -> 14.4px */
p.p-md { font-size: 0.96rem !important; }      /* 17px -> 15.3px */
p.p-lg { font-size: 1.01rem !important; }      /* 18px -> 16.2px */
p.p-xl { font-size: 1.07rem !important; }      /* 19px -> 17.1px */

/* ----------------------------------------------
   2. MODULE PAGE HERO
   ---------------------------------------------- */
.module-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.module-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(0,200,83,0.05) 100%);
    z-index: -1;
}

.module-hero .section-id {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gcargo-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.module-hero .lead {
    font-size: 1.25rem;
    color: var(--gcargo-neutral);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ----------------------------------------------
   3. MODULE ICONS
   ---------------------------------------------- */
.module-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.module-icon-large span {
    font-size: 48px;
    color: white;
}

/* Module Color Gradients */
.module-icon-large.gps { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.module-icon-large.planning { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.module-icon-large.fuel { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.module-icon-large.docs { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.module-icon-large.hr { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.module-icon-large.finance { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.module-icon-large.billing { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
.module-icon-large.workshop { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.module-icon-large.api { background: linear-gradient(135deg, #cd9cf2 0%, #f6f3ff 100%); }
.module-icon-large.terceros { background: linear-gradient(135deg, #f5af19 0%, #f12711 100%); }

/* Small module icons for cards */
.module-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.module-icon span {
    font-size: 32px;
    color: white;
}

.module-icon.gps { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.module-icon.planning { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.module-icon.fuel { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.module-icon.docs { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.module-icon.hr { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.module-icon.finance { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.module-icon.billing { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
.module-icon.workshop { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.module-icon.api { background: linear-gradient(135deg, #cd9cf2 0%, #f6f3ff 100%); }
.module-icon.terceros { background: linear-gradient(135deg, #f5af19 0%, #f12711 100%); }

/* ----------------------------------------------
   4. PROBLEM/SOLUTION CARDS
   ---------------------------------------------- */
.problem-card {
    background: #fff5f5;
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateX(8px);
}

.problem-card h6 {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-card h6::before {
    content: '!';
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.solution-card {
    background: #f0fff4;
    border-left: 4px solid var(--gcargo-accent);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateX(8px);
}

.solution-card h6 {
    color: var(--gcargo-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-card h6::before {
    content: '\2713';
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: var(--gcargo-accent);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ----------------------------------------------
   5. FEATURE LIST WITH ICONS
   ---------------------------------------------- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0,102,204,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gcargo-primary);
}

.feature-list .feature-icon span {
    font-size: 24px;
}

.feature-list .feature-content h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gcargo-dark);
}

.feature-list .feature-content p {
    margin: 0;
    color: var(--gcargo-neutral);
    font-size: 0.9375rem;
}

/* ----------------------------------------------
   6. BENEFIT BOXES
   ---------------------------------------------- */
.benefit-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.benefit-box .benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-box .benefit-icon span {
    font-size: 28px;
    color: white;
}

.benefit-box h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
}

.benefit-box p {
    color: var(--gcargo-neutral);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ----------------------------------------------
   7. INTEGRATION BADGES
   ---------------------------------------------- */
.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gcargo-dark);
    transition: all 0.3s ease;
}

.integration-badge:hover {
    border-color: var(--gcargo-primary);
    color: var(--gcargo-primary);
    background: rgba(0,102,204,0.05);
}

.integration-badge span {
    font-size: 18px;
    color: var(--gcargo-primary);
}

/* ----------------------------------------------
   8. CTA SECTION
   ---------------------------------------------- */
.cta-module {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-module::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-module h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-module p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-module .btn-white {
    background: white;
    color: var(--gcargo-primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-module .btn-white:hover {
    background: var(--gcargo-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ----------------------------------------------
   9. MODULE NAVIGATION CARDS
   ---------------------------------------------- */
.module-nav-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.module-nav-card:hover {
    border-color: var(--gcargo-primary);
    box-shadow: 0 8px 24px rgba(0,102,204,0.1);
    transform: translateY(-4px);
}

.module-nav-card .nav-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-nav-card .nav-icon span {
    font-size: 28px;
    color: white;
}

.module-nav-card .nav-content h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gcargo-dark);
}

.module-nav-card .nav-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gcargo-neutral);
}

/* ----------------------------------------------
   10. STEPS SECTION
   ---------------------------------------------- */
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

/* ----------------------------------------------
   11. PACKS SECTION
   ---------------------------------------------- */
.pack-card {
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    background: white;
}

.pack-card:hover {
    border-color: var(--gcargo-primary);
    box-shadow: 0 12px 40px rgba(0,102,204,0.15);
}

.pack-card.featured {
    border-color: var(--gcargo-primary);
    position: relative;
    box-shadow: 0 12px 40px rgba(0,102,204,0.15);
}

.pack-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----------------------------------------------
   12. VALUE BADGES
   ---------------------------------------------- */
.value-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 4px 8px 0;
}

/* ----------------------------------------------
   13. CLIENT TYPES
   ---------------------------------------------- */
.client-type-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
}

.client-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.client-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ----------------------------------------------
   14. RELATED MODULES SECTION
   ---------------------------------------------- */
.related-modules {
    background: var(--gcargo-bg);
    padding: 5rem 0;
}

.related-modules .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.related-modules .section-title h3 {
    font-weight: 700;
    color: var(--gcargo-dark);
}

/* ----------------------------------------------
   15. RESPONSIVE ADJUSTMENTS
   ---------------------------------------------- */
@media (max-width: 991.98px) {
    .module-hero {
        padding: 120px 0 60px;
    }

    .module-hero h1 {
        font-size: 2.25rem;
    }

    .module-icon-large {
        width: 80px;
        height: 80px;
    }

    .module-icon-large span {
        font-size: 40px;
    }

    .cta-module {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .module-hero h1 {
        font-size: 1.875rem;
    }

    .module-hero .lead {
        font-size: 1.125rem;
    }

    .problem-card,
    .solution-card {
        padding: 1.25rem;
    }

    .benefit-box {
        padding: 1.5rem;
    }

    .cta-module {
        padding: 2.5rem 1.5rem;
    }

    .cta-module h3 {
        font-size: 1.5rem;
    }
}

/* ----------------------------------------------
   16. ANIMATION DELAYS
   ---------------------------------------------- */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }

/* ----------------------------------------------
   17. KPI CARDS
   ---------------------------------------------- */
.kpi-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.kpi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.15);
    border-color: var(--gcargo-primary);
}

.kpi-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gcargo-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpi-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.25rem;
}

.kpi-desc {
    font-size: 0.875rem;
    color: var(--gcargo-neutral);
    margin: 0;
}

/* ----------------------------------------------
   18. WHY US CARDS
   ---------------------------------------------- */
.why-us-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--gcargo-primary);
}

.why-us-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0,102,204,0.3);
}

.why-us-icon span {
    font-size: 32px;
    color: white;
}

.why-us-card h6 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.why-us-card p {
    color: var(--gcargo-neutral);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* KPI Responsive */
@media (max-width: 767.98px) {
    .kpi-number {
        font-size: 2.5rem;
    }

    .kpi-label {
        font-size: 1rem;
    }

    .kpi-card {
        padding: 1.5rem 1rem;
    }

    .why-us-card {
        padding: 1.5rem;
    }

    .why-us-icon {
        width: 60px;
        height: 60px;
    }

    .why-us-icon span {
        font-size: 28px;
    }
}

/* ----------------------------------------------
   19. ABOUT PAGE CARDS
   ---------------------------------------------- */
.about-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
    border-color: var(--gcargo-primary);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,102,204,0.3);
}

.about-card-icon span {
    font-size: 40px;
    color: white;
}

.about-card h4 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--gcargo-neutral);
    margin: 0;
    line-height: 1.7;
}

/* ----------------------------------------------
   20. VALUE CARDS
   ---------------------------------------------- */
.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--gcargo-primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,102,204,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
}

.value-icon span {
    font-size: 28px;
    color: var(--gcargo-primary);
    transition: color 0.3s ease;
}

.value-card:hover .value-icon span {
    color: white;
}

.value-card h6 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--gcargo-neutral);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ----------------------------------------------
   21. TIMELINE
   ---------------------------------------------- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gcargo-primary), var(--gcargo-accent));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 70px;
    height: 32px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-left: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0,102,204,0.1);
    border-color: var(--gcargo-primary);
}

.timeline-content h5 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gcargo-neutral);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Timeline Responsive */
@media (max-width: 767.98px) {
    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -30px;
        width: 60px;
        font-size: 0.75rem;
    }

    .timeline-content {
        margin-left: 40px;
        padding: 1.25rem 1.5rem;
    }

    .about-card {
        padding: 2rem;
    }

    .about-card-icon {
        width: 64px;
        height: 64px;
    }

    .about-card-icon span {
        font-size: 32px;
    }
}

/* ----------------------------------------------
   22. INNER PAGE HEADER
   ---------------------------------------------- */
.inner-page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(0,200,83,0.05) 100%);
}

.inner-page-header .page-header-content {
    padding-top: 2rem;
}

.inner-page-header .section-id {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inner-page-header h1 {
    font-weight: 700;
    color: var(--gcargo-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.inner-page-header p {
    color: var(--gcargo-neutral);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .inner-page-header {
        padding: 140px 0 60px;
    }

    .inner-page-header h1 {
        font-size: 1.75rem;
    }

    .inner-page-header p {
        font-size: 1.125rem;
    }
}

/* ----------------------------------------------
   23. TEAM CARDS
   ---------------------------------------------- */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
    border-color: var(--gcargo-primary);
}

.team-card--leadership {
    padding: 2.5rem;
}

.team-photo {
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0,102,204,0.3);
}

.team-avatar span {
    font-size: 48px;
    color: white;
}

.team-avatar--sm {
    width: 80px;
    height: 80px;
}

.team-avatar--sm span {
    font-size: 32px;
}

.team-info h4,
.team-info h5 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.25rem;
}

.team-role {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gcargo-neutral);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-bio-short {
    color: var(--gcargo-neutral);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--gcargo-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gcargo-neutral);
    transition: all 0.3s ease;
}

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

.team-social a span {
    font-size: 16px;
}

/* Join Card */
.team-card--join {
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(0,200,83,0.05) 100%);
    border-style: dashed;
    border-color: var(--gcargo-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-join-content {
    text-align: center;
}

.join-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,102,204,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.join-icon span {
    font-size: 24px;
    color: var(--gcargo-primary);
}

.team-card--join h5 {
    color: var(--gcargo-primary);
    margin-bottom: 0.5rem;
}

.team-card--join p {
    color: var(--gcargo-neutral);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ----------------------------------------------
   24. CULTURE LIST
   ---------------------------------------------- */
.culture-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.culture-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.culture-list li:last-child {
    margin-bottom: 0;
}

.culture-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--gcargo-accent) 0%, #00a843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.culture-icon span {
    font-size: 14px;
    color: white;
}

.culture-list strong {
    display: block;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.25rem;
}

.culture-list p {
    color: var(--gcargo-neutral);
    font-size: 0.9375rem;
    margin: 0;
}

/* Team Responsive */
@media (max-width: 767.98px) {
    .team-card {
        padding: 1.5rem;
    }

    .team-card--leadership {
        padding: 2rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-avatar span {
        font-size: 40px;
    }

    .team-avatar--sm {
        width: 64px;
        height: 64px;
    }

    .team-avatar--sm span {
        font-size: 28px;
    }
}

/* ----------------------------------------------
   25. SUPPORT CARDS
   ---------------------------------------------- */
.support-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
    border-color: var(--gcargo-primary);
}

.support-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.support-icon span {
    font-size: 32px;
    color: white;
}

.support-icon.whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.support-icon.email { background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%); }
.support-icon.phone { background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%); }
.support-icon.ticket { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

.support-card h5 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.support-card p {
    color: var(--gcargo-neutral);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.support-link {
    display: inline-block;
    color: var(--gcargo-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--gcargo-primary-dark);
}

/* ----------------------------------------------
   26. SCHEDULE TABLE
   ---------------------------------------------- */
.schedule-table {
    margin-top: 2rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}

.schedule-row.highlight {
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(0,200,83,0.05) 100%);
    border-color: var(--gcargo-primary);
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-day span {
    font-size: 20px;
    color: var(--gcargo-primary);
}

.schedule-day strong {
    color: var(--gcargo-dark);
}

.schedule-time {
    font-weight: 600;
    color: var(--gcargo-primary);
}

/* ----------------------------------------------
   27. SLA BLOCK
   ---------------------------------------------- */
.sla-block {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.sla-block h4 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.sla-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.sla-item:last-child {
    border-bottom: none;
}

.sla-priority {
    width: 80px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: white;
}

.sla-priority.critical { background: #dc3545; }
.sla-priority.high { background: #fd7e14; }
.sla-priority.medium { background: #ffc107; color: #212529; }
.sla-priority.low { background: #28a745; }

.sla-info strong {
    display: block;
    color: var(--gcargo-dark);
    font-size: 1.125rem;
}

.sla-info span {
    color: var(--gcargo-neutral);
    font-size: 0.875rem;
}

/* ----------------------------------------------
   28. FAQ ACCORDION
   ---------------------------------------------- */
.accordion-item {
    background: white;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    background: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gcargo-primary);
    background: rgba(0,102,204,0.05);
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 0 1.5rem 1.25rem;
}

.accordion-body p {
    color: var(--gcargo-neutral);
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------------
   29. RESOURCE CARDS
   ---------------------------------------------- */
.resource-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
    border-color: var(--gcargo-primary);
}

.resource-icon {
    width: 72px;
    height: 72px;
    background: rgba(0,102,204,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
}

.resource-icon span {
    font-size: 32px;
    color: var(--gcargo-primary);
    transition: color 0.3s ease;
}

.resource-card:hover .resource-icon span {
    color: white;
}

.resource-card h5 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--gcargo-neutral);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

/* Support Responsive */
@media (max-width: 767.98px) {
    .support-card {
        padding: 1.5rem;
    }

    .support-icon {
        width: 60px;
        height: 60px;
    }

    .support-icon span {
        font-size: 28px;
    }

    .schedule-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .sla-block {
        padding: 1.5rem;
    }

    .sla-priority {
        width: 70px;
        font-size: 0.6875rem;
    }
}

/* ----------------------------------------------
   30. BLOG COMPONENTS
   ---------------------------------------------- */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gcargo-neutral);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gcargo-primary);
    border-color: var(--gcargo-primary);
    color: white;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
    border-color: var(--gcargo-primary);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img-placeholder span {
    font-size: 64px;
    color: white;
    opacity: 0.9;
}

.blog-img-placeholder.gps { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.blog-img-placeholder.planning { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.blog-img-placeholder.fuel { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.blog-img-placeholder.docs { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.blog-img-placeholder.hr { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.blog-img-placeholder.finance { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.blog-img-placeholder.workshop { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.blog-img-placeholder.api { background: linear-gradient(135deg, #cd9cf2 0%, #f6f3ff 100%); }
.blog-img-placeholder.terceros { background: linear-gradient(135deg, #f5af19 0%, #f12711 100%); }
.blog-img-placeholder.billing { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
.blog-img-placeholder.gestion { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 6px 14px;
    background: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gcargo-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gcargo-neutral);
}

.blog-meta span span {
    font-size: 14px;
    color: var(--gcargo-primary);
}

.blog-content h5 {
    margin-bottom: 0.75rem;
}

.blog-content h5 a {
    color: var(--gcargo-dark);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-content h5 a:hover {
    color: var(--gcargo-primary);
}

.blog-content p {
    color: var(--gcargo-neutral);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Box */
.newsletter-box {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.newsletter-box h3 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.newsletter-box p {
    color: var(--gcargo-neutral);
}

.newsletter-form .input-group {
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 1rem 1.25rem;
    border-radius: 8px 0 0 8px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--gcargo-primary);
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

/* Blog Responsive */
@media (max-width: 767.98px) {
    .blog-filters {
        gap: 0.375rem;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .blog-img-placeholder {
        height: 160px;
    }

    .blog-img-placeholder span {
        font-size: 48px;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .newsletter-box {
        padding: 2rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .form-control {
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .newsletter-form .btn {
        border-radius: 8px;
        width: 100%;
    }
}

/* ----------------------------------------------
   31. BLOG POST PAGE
   ---------------------------------------------- */
.blog-post-header {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(0,200,83,0.05) 100%);
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gcargo-neutral);
}

.blog-post-meta span span {
    color: var(--gcargo-primary);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h2 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post-content p {
    color: var(--gcargo-neutral);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    color: var(--gcargo-neutral);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    background: rgba(0,102,204,0.05);
    border-left: 4px solid var(--gcargo-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.blog-post-content blockquote p {
    font-style: italic;
    color: var(--gcargo-dark);
    margin: 0;
}

/* Related Posts */
.related-posts .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.related-posts h3 {
    font-weight: 700;
    color: var(--gcargo-dark);
}

/* Blog Navigation */
.blog-nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    margin-top: 3rem;
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gcargo-neutral);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-nav-link:hover {
    color: var(--gcargo-primary);
}

.blog-nav-link span {
    font-size: 20px;
}

/* ----------------------------------------------
   32. WHATSAPP FLOATING BUTTON
   ---------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float span {
    font-size: 32px;
    color: white;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
}

.whatsapp-link span {
    font-size: 20px;
}

/* ----------------------------------------------
   33. NEW MODULE ICONS (Infracciones, BI)
   ---------------------------------------------- */
.module-icon-large.infracciones { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }
.module-icon-large.bi { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.module-icon.infracciones { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }
.module-icon.bi { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.nav-icon.infracciones { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }
.nav-icon.bi { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.blog-img-placeholder.infracciones { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }
.blog-img-placeholder.bi { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }

/* ----------------------------------------------
   34. FREE TRIAL BANNER
   ---------------------------------------------- */
.trial-banner {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
}

.trial-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}

.trial-banner a:hover {
    text-decoration: none;
}

/* ----------------------------------------------
   35. LOGIN BUTTON HEADER STYLE
   ---------------------------------------------- */
.btn--login {
    background: transparent;
    border: 2px solid var(--gcargo-primary);
    color: var(--gcargo-primary);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn--login:hover {
    background: var(--gcargo-primary);
    color: white;
}

/* ----------------------------------------------
   36. APP SECTION STYLES
   ---------------------------------------------- */
.app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0,102,204,0.03) 0%, rgba(0,200,83,0.03) 100%);
}

.app-mockup {
    max-width: 280px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gcargo-dark);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    background: var(--gcargo-primary);
    color: white;
    transform: translateY(-3px);
}

.app-store-btn span {
    font-size: 28px;
}

.app-store-btn .store-text small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-store-btn .store-text strong {
    font-size: 1rem;
}

/* App Features List */
.app-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gcargo-neutral);
}

.app-features-list li span {
    width: 24px;
    height: 24px;
    background: var(--gcargo-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* ----------------------------------------------
   37. SUSTAINABILITY SECTION
   ---------------------------------------------- */
.sustainability-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 100px 0;
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.sustainability-icon span {
    font-size: 40px;
    color: white;
}

.sustainability-stat {
    text-align: center;
    padding: 1.5rem;
}

.sustainability-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2e7d32;
    line-height: 1;
}

.sustainability-stat .stat-label {
    color: var(--gcargo-neutral);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

/* ----------------------------------------------
   38. LANDING PAGE HERO
   ---------------------------------------------- */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(0,200,83,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,102,204,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.landing-form-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.landing-form-card h3 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.landing-form-card p {
    color: var(--gcargo-neutral);
    margin-bottom: 1.5rem;
}

.landing-form-card .form-label {
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.375rem;
}

.landing-form-card .form-control {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.landing-form-card .form-control:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.landing-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gcargo-neutral);
    font-size: 0.875rem;
}

.trust-badge span {
    color: var(--gcargo-accent);
}

/* ----------------------------------------------
   39. FAQ PAGE STYLES
   ---------------------------------------------- */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.faq-category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-category-icon span {
    font-size: 24px;
    color: white;
}

.faq-category-title h4 {
    margin: 0;
    font-weight: 700;
    color: var(--gcargo-dark);
}

/* FAQ Search */
.faq-search {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-search .form-control {
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
}

.faq-search .form-control:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}

/* ----------------------------------------------
   40. POLICY PAGES
   ---------------------------------------------- */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gcargo-primary);
}

.policy-content h3 {
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    color: var(--gcargo-neutral);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
}

.policy-content li {
    color: var(--gcargo-neutral);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-meta {
    background: var(--gcargo-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.policy-meta p {
    margin: 0;
    color: var(--gcargo-neutral);
}

.policy-meta strong {
    color: var(--gcargo-dark);
}

/* ----------------------------------------------
   41. RESPONSIVE WHATSAPP
   ---------------------------------------------- */
@media (max-width: 767.98px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float span {
        font-size: 28px;
    }

    .app-store-buttons {
        justify-content: center;
    }

    .landing-form-card {
        padding: 1.5rem;
    }

    .sustainability-stat .stat-number {
        font-size: 2.25rem;
    }
}

/* ----------------------------------------------
   42. NAV MODULE ICONS (Infracciones & BI)
   ---------------------------------------------- */
.nav-icon.infracciones {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.nav-icon.bi {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.module-icon-large.infracciones {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.module-icon-large.bi {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

/* ----------------------------------------------
   43. APP GCARGO SECTION
   ---------------------------------------------- */
.app-mockup-container {
    text-align: center;
    padding: 2rem;
}

.app-mockup-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--gcargo-dark);
}

.app-feature-item span:first-child {
    color: var(--gcargo-primary);
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ----------------------------------------------
   44. SUSTAINABILITY SECTION
   ---------------------------------------------- */
.sustainability-badge {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
    color: white !important;
}

.sustainability-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.sustainability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #43e97b;
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability-icon span {
    font-size: 36px;
    color: white;
}

.sustainability-card h6 {
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.sustainability-card p {
    color: var(--gcargo-neutral);
    margin-bottom: 1rem;
}

.sustainability-metric {
    background: linear-gradient(135deg, rgba(67,233,123,0.1) 0%, rgba(56,249,215,0.1) 100%);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: inline-block;
}

.sustainability-metric .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ecc71;
    display: block;
}

.sustainability-metric .metric-label {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sustainability-cta {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ----------------------------------------------
   45. CORFO BADGE
   ---------------------------------------------- */
.corfo-badge {
    text-align: center;
    padding: 1rem;
}

.corfo-badge img {
    max-height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.corfo-badge:hover img {
    opacity: 1;
}

/* ----------------------------------------------
   46. LOGIN LINK STYLE
   ---------------------------------------------- */
.login-link {
    font-weight: 600 !important;
}

.login-link::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    vertical-align: middle;
    opacity: 0.7;
}

/* ----------------------------------------------
   47. ADDITIONAL RESPONSIVE STYLES
   ---------------------------------------------- */
@media (max-width: 991.98px) {
    .sustainability-card {
        margin-bottom: 1rem;
    }

    .app-mockup-container {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .sustainability-icon {
        width: 60px;
        height: 60px;
    }

    .sustainability-icon span {
        font-size: 28px;
    }

    .sustainability-metric .metric-value {
        font-size: 1.25rem;
    }

    .app-features-list {
        text-align: left;
    }

    .corfo-badge img {
        max-height: 40px;
    }
}

/* ----------------------------------------------
   48. PARTNERS SECTION
   ---------------------------------------------- */
.partners-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(102,126,234,0.1) 100%);
}

.partners-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.partner-value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.partner-value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, #667eea 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-value-icon span {
    font-size: 32px;
    color: white;
}

/* Partner Cards Featured */
.partner-card-featured {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.partner-card-featured.smartreport {
    border-top: 4px solid #00c853;
}

.partner-card-featured.blackgps {
    border-top: 4px solid #1a1a2e;
}

.partner-card-featured.hoktus {
    border-top: 4px solid #6a11cb;
}

.partner-logo-large {
    margin-bottom: 2rem;
}

.partner-logo-large img {
    max-height: 60px;
    max-width: 200px;
}

.partner-logo-placeholder {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gcargo-primary);
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-stats .stat-item {
    text-align: center;
}

.partner-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gcargo-primary);
    display: block;
}

.partner-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gcargo-neutral);
}

/* Partner Features */
.partner-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    font-size: 0.95rem;
}

/* Client/Tech Badges */
.client-badge, .tech-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gcargo-bg);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gcargo-dark);
    margin: 4px;
}

.tech-badge {
    background: linear-gradient(135deg, rgba(106,17,203,0.1) 0%, rgba(37,117,252,0.1) 100%);
    color: #6a11cb;
}

/* Partner CTA */
.partner-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.smartreport-cta {
    background: linear-gradient(135deg, #00c853 0%, #00897b 100%);
}

.blackgps-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hoktus-cta {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

/* ----------------------------------------------
   49. PARTNER LANDING PAGES
   ---------------------------------------------- */
.partner-landing-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, rgba(102,126,234,0.1) 100%);
}

.smartreport-hero {
    background: linear-gradient(135deg, rgba(0,200,83,0.05) 0%, rgba(0,137,123,0.1) 100%);
}

.blackgps-hero {
    background: linear-gradient(135deg, rgba(26,26,46,0.05) 0%, rgba(22,33,62,0.1) 100%);
}

.hoktus-hero {
    background: linear-gradient(135deg, rgba(106,17,203,0.05) 0%, rgba(37,117,252,0.1) 100%);
}

.partner-logos-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-plus {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gcargo-neutral);
}

.partner-logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00c853;
}

.partner-logo-text.blackgps-text {
    color: #1a1a2e;
}

.partner-logo-text.hoktus-text {
    color: #6a11cb;
}

/* Hero Stats Cards */
.partner-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, #667eea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-card .stat-icon span {
    font-size: 24px;
    color: white;
}

.hero-stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gcargo-dark);
    display: block;
    line-height: 1;
}

.hero-stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
}

.hero-stat-card.blackgps-card .stat-icon {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hero-stat-card.hoktus-card .stat-icon {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

/* Service Cards Partner */
.service-card-partner {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-card-partner .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-partner .service-icon span {
    font-size: 28px;
    color: white;
}

.smartreport-gradient {
    background: linear-gradient(135deg, #00c853 0%, #00897b 100%);
}

.service-card-partner .service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.service-card-partner .service-features li {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
    padding: 4px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.service-card-partner .service-features li:last-child {
    border-bottom: none;
}

/* Segment Badges */
.segment-badge {
    background: white;
    border: 2px solid var(--gcargo-primary);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gcargo-primary);
    text-align: center;
    transition: all 0.3s ease;
}

.segment-badge:hover {
    background: var(--gcargo-primary);
    color: white;
}

/* Client Logo Badges */
.client-logo-badge {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gcargo-dark);
    margin: 4px;
}

.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* Pillar Cards */
.pillar-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.pillar-card .pillar-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0,102,204,0.08);
    line-height: 1;
}

.pillar-card h6 {
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

/* Solution Category Cards */
.solution-category-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.solution-category-card .category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gcargo-primary);
}

.solution-category-card .category-header span {
    font-size: 28px;
    color: var(--gcargo-primary);
}

.solution-category-card.security .category-header {
    border-color: #e74c3c;
}

.solution-category-card.security .category-header span {
    color: #e74c3c;
}

.solution-category-card.optimization .category-header {
    border-color: #27ae60;
}

.solution-category-card.optimization .category-header span {
    color: #27ae60;
}

.solution-category-card.automation .category-header {
    border-color: #3498db;
}

.solution-category-card.automation .category-header span {
    color: #3498db;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: var(--gcargo-neutral);
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-list li strong {
    color: var(--gcargo-dark);
}

/* Process Step Cards */
.process-step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.process-step-card .step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: var(--gcargo-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-step-card .step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-card .step-icon span {
    font-size: 32px;
    color: white;
}

.process-step-card .whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.process-step-card .ai-icon {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.process-step-card .check-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
}

.process-step-card .sign-icon {
    background: linear-gradient(135deg, #00c853 0%, #00897b 100%);
}

/* Problem/Solution Cards */
.problem-card, .solution-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.problem-card {
    border-left: 4px solid #e74c3c;
}

.solution-card {
    border-left: 4px solid #27ae60;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gcargo-neutral);
}

.problem-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.solution-list-check {
    list-style: none;
    padding: 0;
}

.solution-list-check li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gcargo-dark);
}

.solution-list-check li span {
    color: #27ae60;
}

/* Integration Diagram */
.integration-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.diagram-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 150px;
}

.diagram-box span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gcargo-primary);
    display: block;
}

.diagram-box p {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
    margin: 0;
}

.diagram-box.hoktus-box span {
    color: #6a11cb;
}

.diagram-box.gtrack-box {
    border: 2px solid var(--gcargo-primary);
}

.diagram-arrow {
    font-size: 2rem;
    color: var(--gcargo-primary);
}

/* Tech Badges Large */
.tech-badge-large {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(106,17,203,0.1) 0%, rgba(37,117,252,0.1) 100%);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6a11cb;
    margin: 6px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* Integration Features */
.integration-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.integration-feature-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

/* ----------------------------------------------
   50. PARTNERS RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 991.98px) {
    .partner-hero-stats {
        margin-top: 2rem;
    }

    .partner-logos-hero {
        justify-content: center;
    }

    .integration-diagram {
        flex-direction: column;
    }

    .diagram-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 767.98px) {
    .partners-hero,
    .partner-landing-hero {
        padding: 120px 0 60px;
    }

    .partner-stats {
        gap: 1rem;
    }

    .partner-stats .stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-card {
        padding: 1rem;
    }

    .hero-stat-card .stat-number {
        font-size: 1.25rem;
    }

    .partner-logo-text {
        font-size: 1.25rem;
    }

    .pillar-card .pillar-number {
        font-size: 3rem;
    }
}

/* ----------------------------------------------
   51. INTEGRATION CARDS (Modulo Integraciones)
   ---------------------------------------------- */
.integration-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
    border-color: var(--gcargo-primary);
}

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

.integration-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-icon span {
    font-size: 28px;
    color: white;
}

/* Icon colors by category */
.integration-icon.banking {
    background: linear-gradient(135deg, #00B894 0%, #00A884 100%);
}

.integration-icon.security {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.integration-icon.billing {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.integration-icon.messaging {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.integration-icon.hr {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.integration-icon.erp {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.integration-icon.gps {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.integration-title h5 {
    margin: 0;
    font-weight: 700;
    color: var(--gcargo-dark);
    font-size: 1.25rem;
}

.integration-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gcargo-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.integration-description {
    color: var(--gcargo-neutral);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.integration-value {
    background: rgba(0,102,204,0.05);
    border-left: 3px solid var(--gcargo-primary);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.875rem;
    color: var(--gcargo-dark);
    font-style: italic;
}

.integration-value strong {
    color: var(--gcargo-primary);
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gcargo-neutral);
}

.integration-features li:last-child {
    margin-bottom: 0;
}

.integration-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gcargo-primary);
    font-weight: 700;
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h5 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--gcargo-neutral);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Module icon for integrations */
.module-icon-large.integration {
    background: linear-gradient(135deg, #0066cc 0%, #9b59b6 100%);
}

/* Nav icon for API */
.nav-icon.api {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.nav-icon.finance {
    background: linear-gradient(135deg, #00B894 0%, #00A884 100%);
}

.nav-icon.bi {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

/* ----------------------------------------------
   51.1 INTEGRATION CARDS RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 767.98px) {
    .integration-card {
        padding: 1.5rem;
    }

    .integration-icon {
        width: 48px;
        height: 48px;
    }

    .integration-icon span {
        font-size: 24px;
    }

    .integration-title h5 {
        font-size: 1.1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ----------------------------------------------
   52. NEW MODULE ICONS
   ---------------------------------------------- */

/* Module icon large - Rendiciones */
.module-icon-large.rendiciones {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

/* Module icon large - Cobranza */
.module-icon-large.cobranza {
    background: linear-gradient(135deg, #00B894 0%, #00A884 100%);
}

/* Module icon large - CRM */
.module-icon-large.crm {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

/* Module icon large - Prevencion */
.module-icon-large.prevencion {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Nav icons for new modules */
.nav-icon.rendiciones {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.nav-icon.cobranza {
    background: linear-gradient(135deg, #00B894 0%, #00A884 100%);
}

.nav-icon.crm {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.nav-icon.prevencion {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* ----------------------------------------------
   53. MODULE CARDS (HOME PAGE)
   ---------------------------------------------- */
.module-card {
    display: block;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-decoration: none;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.15);
    border-color: var(--gcargo-primary);
    text-decoration: none;
}

.module-card .module-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.module-card .module-icon span {
    font-size: 28px;
    color: white;
}

.module-card h5 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem !important;
}

.module-card p {
    color: var(--gcargo-neutral);
    font-size: 0.875rem !important;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ----------------------------------------------
   54. CHANNEL CARDS (SOPORTE PAGE)
   ---------------------------------------------- */
.channel-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.12);
}

.channel-card span[class^="flaticon-"] {
    font-size: 2.5rem;
    color: var(--gcargo-primary);
    display: block;
    margin-bottom: 1rem;
}

.channel-card h6 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.channel-card p {
    margin-bottom: 0.5rem;
}

.channel-card p a {
    color: var(--gcargo-primary);
    text-decoration: none;
}

.channel-card p a:hover {
    text-decoration: underline;
}

.channel-card small {
    color: var(--gcargo-neutral);
    font-size: 0.8rem;
}

/* ----------------------------------------------
   55. CONTACT INFO CARDS (CONTACTO PAGE)
   ---------------------------------------------- */
.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,102,204,0.1);
}

.contact-info-card h5 {
    font-size: 1rem !important;
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card h5 span[class^="flaticon-"] {
    color: var(--gcargo-primary);
    font-size: 1.2rem;
}

.contact-info-card p {
    margin-bottom: 0;
    color: var(--gcargo-neutral);
}

.contact-info-card p a {
    color: var(--gcargo-primary);
    text-decoration: none;
}

.contact-info-card p a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------
   56. CONTACT FORM STYLES
   ---------------------------------------------- */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.contact-form h4 {
    font-weight: 700;
    color: var(--gcargo-dark);
    font-size: 1.25rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--gcargo-dark);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.contact-form .form-control::placeholder {
    font-size: 0.85rem;
}

.contact-form .form-check-label {
    font-size: 0.85rem;
}

/* ----------------------------------------------
   57. SLA TABLE STYLES
   ---------------------------------------------- */
.sla-table {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sla-table .table {
    margin-bottom: 0;
}

.sla-table .table thead th {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
    font-size: 0.9rem;
}

.sla-table .table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.sla-table .table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.sla-table .table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.sla-table .table tbody tr:last-child td {
    border-bottom: none;
}

.sla-table .table tbody tr:hover {
    background: #f8f9fa;
}

/* ----------------------------------------------
   58. PRICING PAGE ADDITIONAL STYLES
   ---------------------------------------------- */
/* Badge styles for categories */
.badge.bg--tra-theme {
    background: rgba(48, 138, 240, 0.13) !important;
}

.badge.bg--tra-green {
    background: rgba(15, 188, 73, 0.13) !important;
}

.badge.bg--tra-yellow {
    background: rgba(255, 191, 21, 0.2) !important;
}

.badge.bg--tra-purple {
    background: rgba(102, 51, 255, 0.13) !important;
}

.badge.color--theme {
    color: var(--theme-color) !important;
}

.badge.color--green {
    color: #0fbc49 !important;
}

.badge.color--yellow {
    color: #d4a000 !important;
}

.badge.color--purple {
    color: #6633ff !important;
}

/* Pricing table enhancements */
.comp-table .table thead th {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
}

.comp-table .table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.comp-table .table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.comp-table .table tbody th,
.comp-table .table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.comp-table .table tbody tr:hover {
    background: #f8f9fa;
}

/* Payment icons */
.payment-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-icons li img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icons li img:hover {
    opacity: 1;
}

/* Pbox styles */
.pbox {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.pbox h6 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.pbox p {
    color: var(--gcargo-neutral);
    margin-bottom: 0;
}

/* ----------------------------------------------
   59. RESPONSIVE ADJUSTMENTS
   ---------------------------------------------- */
@media (max-width: 991.98px) {
    .module-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .module-card .module-icon {
        width: 56px;
        height: 56px;
    }

    .module-card .module-icon span {
        font-size: 24px;
    }

    .channel-card {
        padding: 1.5rem;
    }

    .sla-table {
        padding: 1rem;
    }

    .sla-table .table {
        font-size: 0.85rem;
    }
}

/* ----------------------------------------------
   60. STAT BOX (NOSOTROS PAGE)
   ---------------------------------------------- */
.stat-box {
    padding: 2rem 1rem;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gcargo-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box .stat-label {
    color: var(--gcargo-neutral);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .stat-box .stat-number {
        font-size: 2rem;
    }
}

/* ----------------------------------------------
   61. MODULE DETAIL PAGE STYLES
   ---------------------------------------------- */
.module-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge span[class^="flaticon-"] {
    font-size: 0.9rem;
}

.module-code {
    display: inline-block;
    margin-left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    color: var(--gcargo-neutral);
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: monospace;
}

.module-hero-txt .tagline {
    font-weight: 600;
    color: var(--gcargo-dark);
}

.pricing-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
}

.pricing-highlight .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-highlight .period {
    font-size: 0.9rem;
    opacity: 0.9;
}

img.module-hero-img,
.module-hero-img img {
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* Dependencies Alert */
.dependencies-alert {
    padding: 1rem 0;
}

.alert-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: #e8f4fd;
    color: var(--gcargo-dark);
}

.alert-box.alert-info {
    background: #e8f4fd;
    border-left: 4px solid var(--gcargo-primary);
}

.alert-box span[class^="flaticon-"] {
    color: var(--gcargo-primary);
    font-size: 1.25rem;
}

.alert-box .dep-link {
    color: var(--gcargo-primary);
    font-weight: 600;
    text-decoration: underline;
}

.alert-box .dep-link:hover {
    color: var(--gcargo-primary-dark);
}

.alert-box .note {
    color: var(--gcargo-neutral);
    font-size: 0.85rem;
}

/* Feature Box */
.feature-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon span {
    font-size: 1.25rem;
}

.feature-box h5 {
    font-size: 1rem !important;
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--gcargo-neutral);
    font-size: 0.875rem !important;
    margin: 0;
    line-height: 1.6;
}

/* ----------------------------------------------
   62. MODULE DETAIL RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 991.98px) {
    .module-hero-img {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .category-badge {
        font-size: 0.75rem;
    }

    .module-code {
        display: block;
        margin: 0.5rem 0 0 0;
    }

    .pricing-highlight .price {
        font-size: 1.25rem;
    }

    .feature-box {
        padding: 1.25rem;
    }
}

/* ==============================================
   63. PRICING PAGE STYLES
   ============================================== */

/* Pricing Hero */
.pricing-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(0,102,204,0.03) 0%, rgba(0,200,83,0.03) 100%);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-weight: 500;
    color: var(--gcargo-neutral);
}

.pricing-toggle span.active {
    color: var(--gcargo-primary);
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: var(--gcargo-primary);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: 0.3s;
}

.toggle-switch.annual::after {
    left: 33px;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid var(--gcargo-primary);
}

.pricing-card.featured::before {
    content: 'Más Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gcargo-primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gcargo-secondary);
    margin-bottom: 0.5rem;
}

.pricing-card .plan-description {
    color: var(--gcargo-neutral);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card .plan-price {
    margin-bottom: 1.5rem;
}

.pricing-card .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gcargo-primary);
}

.pricing-card .price-unit {
    font-size: 1rem;
    color: var(--gcargo-neutral);
}

.pricing-card .price-note {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-card .features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.pricing-card .features-list li:last-child {
    border-bottom: none;
}

.pricing-card .features-list li .check {
    color: #00c853;
    font-weight: bold;
}

.pricing-card .features-list li .cross {
    color: #ccc;
}

.pricing-card .features-list li.disabled {
    color: #ccc;
}

.pricing-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gcargo-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0 0.5rem;
}

/* Volume Discounts Table */
.volume-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.volume-table th, .volume-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.volume-table th {
    background: var(--gcargo-primary);
    color: white;
    font-weight: 600;
}

.volume-table tr:nth-child(even) {
    background: #f8f9fa;
}

.volume-table .discount {
    color: #00c853;
    font-weight: 600;
}

/* Modules Grid */
.module-price-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.module-price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.module-price-card .module-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.module-price-card .module-icon span {
    font-size: 24px;
    color: white;
}

.module-price-card .module-name {
    font-weight: 600;
    color: var(--gcargo-secondary);
    margin-bottom: 0.25rem;
}

.module-price-card .module-price {
    color: var(--gcargo-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.module-price-card .module-unit {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
}

/* Importance Badge */
.importance-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.importance-badge.core {
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
}

.importance-badge.value {
    background: rgba(0,200,83,0.1);
    color: #00c853;
}

.importance-badge.efficiency {
    background: rgba(255,152,0,0.1);
    color: #ff9800;
}

.importance-badge.specialized {
    background: rgba(156,39,176,0.1);
    color: #9c27b0;
}

/* FAQ Accordion */
.pricing-faq .accordion-button {
    font-weight: 600;
    color: var(--gcargo-secondary);
}

.pricing-faq .accordion-button:not(.collapsed) {
    background: rgba(0,102,204,0.05);
    color: var(--gcargo-primary);
}

/* CTA Section */
.pricing-cta {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, #004c99 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.pricing-cta h3 {
    color: white;
}

.pricing-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Price Calculator Styles */
.calculator-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.calculator-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.calculator-input-group {
    margin-bottom: 1.5rem;
}

.calculator-input-group label {
    font-weight: 600;
    color: var(--gcargo-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.calculator-input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.calculator-input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gcargo-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,102,204,0.4);
}

.truck-count-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gcargo-primary);
    text-align: center;
    margin: 1rem 0;
}

.module-checkbox {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.module-checkbox:hover {
    background: #e9ecef;
}

.module-checkbox.selected {
    background: rgba(0,102,204,0.1);
    border: 2px solid var(--gcargo-primary);
}

.module-checkbox input {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--gcargo-primary);
}

.module-checkbox .module-info {
    flex: 1;
}

.module-checkbox .module-name {
    font-weight: 600;
    color: var(--gcargo-secondary);
}

.module-checkbox .module-factor {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
}

.module-checkbox .module-price-tag {
    font-weight: 700;
    color: var(--gcargo-primary);
}

.calculator-result {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, #004c99 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.calculator-result .result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.calculator-result .result-value {
    font-size: 3rem;
    font-weight: 700;
}

.calculator-result .result-unit {
    font-size: 1.25rem;
    opacity: 0.9;
}

.calculator-result .result-clp {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.calculator-result .result-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.volume-discount-badge {
    display: inline-block;
    background: #00c853;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.free-trial-banner {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.free-trial-banner .trial-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.free-trial-banner .trial-text span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-trial {
    background: white;
    color: #00c853;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-trial:hover {
    background: #f0fff4;
    transform: scale(1.05);
}

/* ==============================================
   64. PRICING PAGE RESPONSIVE
   ============================================== */
@media (max-width: 991.98px) {
    .pricing-hero {
        padding: 120px 0 40px;
    }

    .calculator-section {
        padding: 2rem;
    }

    .calculator-result {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card .price-value {
        font-size: 2rem;
    }

    .calculator-section {
        padding: 1.5rem;
    }

    .calculator-card {
        padding: 1.5rem;
    }

    .truck-count-display {
        font-size: 2rem;
    }

    .calculator-result .result-value {
        font-size: 2rem;
    }

    .free-trial-banner {
        flex-direction: column;
        text-align: center;
    }

    .volume-table {
        font-size: 0.8rem;
    }

    .volume-table th, .volume-table td {
        padding: 0.5rem;
    }
}

/* ==============================================
   65. MODULE DETAIL PAGE - EXTENDED STYLES
   ============================================== */

/* Problem Cards */
.problem-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    height: 100%;
    border-left: 4px solid var(--gcargo-primary);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.problem-card h6 {
    color: var(--gcargo-secondary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--gcargo-neutral);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Feature List (detailed) */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-list .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.feature-list .feature-content h6 {
    color: var(--gcargo-secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-list .feature-content p {
    color: var(--gcargo-neutral);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefit Box */
.benefit-box {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-box .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-box h5 {
    color: var(--gcargo-secondary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem !important;
}

.benefit-box p {
    color: var(--gcargo-neutral);
    font-size: 0.875rem !important;
    line-height: 1.6;
    margin: 0;
}

/* Integration Badges */
.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--gcargo-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.integration-badge:hover {
    background: var(--gcargo-primary);
    color: white;
    border-color: var(--gcargo-primary);
    transform: translateY(-2px);
}

.integration-badge span {
    font-size: 1rem;
}

/* CTA Module */
.cta-module {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
}

.cta-module h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-module p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-module .btn-white {
    display: inline-block;
    background: white;
    color: var(--gcargo-primary);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-module .btn-white:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Related Modules Section */
.related-modules {
    background: #f8f9fa;
    padding: 80px 0;
}

.related-modules .section-title {
    margin-bottom: 2.5rem;
}

.related-modules .section-title h3 {
    color: var(--gcargo-secondary);
    font-weight: 700;
}

/* Module Nav Card */
.module-nav-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.module-nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.module-nav-card .nav-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.module-nav-card .nav-content h6 {
    color: var(--gcargo-secondary);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.95rem !important;
}

.module-nav-card .nav-content p {
    color: var(--gcargo-neutral);
    font-size: 0.8rem !important;
    margin: 0;
    line-height: 1.4;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ==============================================
   66. MODULE DETAIL PAGE - RESPONSIVE
   ============================================== */
@media (max-width: 991.98px) {
    .cta-module {
        padding: 3rem 2rem;
    }

    .feature-list .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .problem-card {
        padding: 1.25rem;
    }

    .benefit-box {
        padding: 1.5rem 1rem;
    }

    .benefit-box .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .cta-module {
        padding: 2.5rem 1.5rem;
    }

    .cta-module h3 {
        font-size: 1.5rem !important;
    }

    .module-nav-card {
        padding: 1rem;
    }

    .module-nav-card .nav-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .integration-badges {
        justify-content: center;
    }

    .related-modules {
        padding: 60px 0;
    }
}

/* ==============================================
   67. COMPANY PAGES - NOSOTROS, EQUIPO, PARTNERS
   ============================================== */

/* Inner Page Header */
.inner-page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%) !important;
    color: #fff;
}

.inner-page-header.bg--fixed {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%) !important;
    background-size: cover;
    background-attachment: fixed;
}

/* Footer Dark Background Override */
.footer.bg--dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.footer.bg--dark .footer-info p,
.footer.bg--dark .foo-links li p,
.footer.bg--dark .foo-links li p a,
.footer.bg--dark h6.d-title,
.footer.bg--dark .footer-copyright p {
    color: rgba(255,255,255,0.85) !important;
}

.footer.bg--dark .foo-links li p a:hover {
    color: #fff !important;
}

.footer.bg--dark hr.divider {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0, rgba(255,255,255,0.2) 38%, rgba(255,255,255,0.2) 64%, rgba(255,255,255,0) 99%);
}

.footer.bg--dark .bottom-footer-socials li a {
    color: rgba(255,255,255,0.7) !important;
}

.footer.bg--dark .bottom-footer-socials li a:hover {
    color: #fff !important;
}

.page-header-content {
    color: #fff;
}

.page-header-content h1 {
    color: #fff !important;
    margin-bottom: 1rem;
}

.page-header-content p {
    color: rgba(255,255,255,0.9) !important;
}

.page-header-content .section-id {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
}

/* About Card (Mission/Vision) */
.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.75rem;
}

.about-card h4 {
    margin-bottom: 1rem;
    color: var(--gcargo-dark);
}

/* KPI Cards */
.kpi-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.kpi-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gcargo-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kpi-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.25rem;
}

.kpi-desc {
    font-size: 0.85rem !important;
    color: var(--gcargo-neutral);
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gcargo-primary) 0%, var(--gcargo-accent) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gcargo-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-left: 20px;
}

.timeline-content h5 {
    margin-bottom: 0.5rem;
    color: var(--gcargo-dark);
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--gcargo-neutral);
}

/* Team Cards */
.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-card--leadership {
    border: 2px solid var(--gcargo-primary);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2.5rem;
}

.team-avatar--sm {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
}

.team-info h4,
.team-info h5 {
    margin-bottom: 0.25rem;
    color: var(--gcargo-dark);
}

.team-role {
    display: inline-block;
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gcargo-neutral);
    margin-bottom: 1rem;
}

.team-bio-short {
    font-size: 0.9rem !important;
    color: var(--gcargo-neutral);
    margin-bottom: 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(0,102,204,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gcargo-primary);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--gcargo-primary);
    color: #fff;
}

/* Team Join Card */
.team-card--join {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-join-content {
    text-align: center;
}

.join-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.team-card--join h5 {
    color: #fff !important;
    margin-bottom: 0.5rem;
}

.team-card--join p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 1rem;
}

/* Culture List */
.culture-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.culture-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.culture-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: rgba(0,200,83,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gcargo-accent);
    font-size: 0.8rem;
    margin-top: 3px;
}

.culture-list li strong {
    display: block;
    color: var(--gcargo-dark);
    margin-bottom: 0.25rem;
}

.culture-list li p {
    margin-bottom: 0;
    color: var(--gcargo-neutral);
    font-size: 0.9rem !important;
}

/* Partners Hero */
.partners-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
}

.partners-hero h1 {
    color: #fff !important;
}

.partners-hero p {
    color: rgba(255,255,255,0.9) !important;
}

.partners-badge {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

/* Partner Value Cards */
.partner-value-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.partner-value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.25rem;
}

.partner-value-card h6 {
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

/* Partner Featured Card */
.partner-card-featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.partner-card-featured.smartreport {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
}

.partner-card-featured.blackgps {
    background: linear-gradient(135deg, #f0f7ff 0%, #dbeafe 100%);
}

.partner-card-featured.hoktus {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.partner-logo-large {
    margin-bottom: 2rem;
}

.partner-logo-large img {
    max-height: 80px;
    max-width: 200px;
}

.partner-logo-placeholder {
    width: 150px;
    height: 60px;
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    color: var(--gcargo-neutral);
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gcargo-primary);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
}

/* Partner Features List */
.partner-features {
    text-align: left;
}

.partner-feature-item {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gcargo-dark);
}

.partner-feature-item .flaticon-check {
    color: var(--gcargo-accent);
}

/* Client & Tech Badges */
.partner-clients,
.partner-tech {
    text-align: left;
}

.client-badge,
.tech-badge {
    display: inline-block;
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.tech-badge {
    background: rgba(0,200,83,0.1);
    color: #059669;
}

/* Partner CTA */
.partner-cta {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, #0052a3 100%);
}

/* Value Card (used in nosotros) */
.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .inner-page-header,
    .partners-hero {
        padding: 120px 0 60px;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.65rem;
    }

    .partner-stats {
        gap: 1rem;
    }

    .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .inner-page-header,
    .partners-hero {
        padding: 100px 0 50px;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .kpi-number {
        font-size: 2rem;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .partner-card-featured {
        padding: 1.5rem;
    }
}

/* ==============================================
   68. INDEX PAGE - PACKS, CLIENT TYPES, WHY US
   ============================================== */

/* Pack Cards */
.pack-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pack-card.featured {
    border: 2px solid var(--gcargo-primary);
    background: linear-gradient(180deg, rgba(0,102,204,0.02) 0%, #fff 100%);
}

.pack-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gcargo-primary);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Client Type Cards */
.client-type-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.client-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.client-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #fff;
}

.client-type-card h6 {
    margin-bottom: 0.5rem;
    color: var(--gcargo-dark);
}

/* Why Us Cards */
.why-us-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.why-us-card h6 {
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
}

/* App Features List */
.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--gcargo-dark);
}

.app-mockup-container {
    text-align: center;
}

.app-mockup-container img {
    max-height: 500px;
}

/* Sustainability Section */
.sustainability-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #fff !important;
}

.sustainability-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #10b981;
}

.sustainability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.sustainability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.sustainability-card h6 {
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
}

.sustainability-metric {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
}

.sustainability-cta {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.05) 0%, rgba(5,150,105,0.1) 100%);
    border-radius: 16px;
}

/* ==============================================
   69. BLOG STYLES
   ============================================== */

/* Blog Hero */
.blog-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
}

.blog-hero h1 {
    color: #fff !important;
}

.blog-hero p {
    color: rgba(255,255,255,0.9) !important;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gcargo-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card h5 {
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
    line-height: 1.4;
}

.blog-card h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h5 a:hover {
    color: var(--gcargo-primary);
}

.blog-card-excerpt {
    color: var(--gcargo-neutral);
    font-size: 0.95rem !important;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-link {
    color: var(--gcargo-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

/* Blog Featured */
.blog-featured {
    grid-column: span 2;
}

.blog-featured .blog-card-image {
    height: 300px;
}

/* Blog Sidebar */
.blog-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-sidebar h6 {
    margin-bottom: 1rem;
    color: var(--gcargo-dark);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gcargo-primary);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.blog-sidebar ul li:last-child {
    border-bottom: none;
}

.blog-sidebar ul li a {
    color: var(--gcargo-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar ul li a:hover {
    color: var(--gcargo-primary);
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--gcargo-primary);
    color: #fff;
}

/* Blog Article */
.blog-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-article-header {
    position: relative;
}

.blog-article-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-article-content {
    padding: 2.5rem;
}

.blog-article-content h1 {
    margin-bottom: 1rem;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    color: var(--gcargo-neutral);
}

.blog-article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gcargo-dark);
}

.blog-article-body h2,
.blog-article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-article-body p {
    margin-bottom: 1.5rem;
}

.blog-article-body ul,
.blog-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-article-body li {
    margin-bottom: 0.5rem;
}

/* Blog Article Detail Page */

/* Back Link */
.back-link {
    display: inline-block;
    color: var(--gcargo-neutral);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gcargo-primary);
}

.back-link i {
    margin-right: 0.35rem;
}

/* Article Header */
.article-header {
    max-width: 750px;
    margin: 0 auto;
}

.article-header h1 {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

/* Article Category Badge */
.article-category {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--gcargo-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-category span {
    margin-right: 0.25rem;
}

/* Article Meta */
.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.article-meta span + span::before {
    content: "·";
    margin-right: 0.25rem;
    color: #d1d5db;
    font-weight: 700;
}

.article-date,
.article-author,
.article-time {
    color: var(--gcargo-neutral);
}

/* Article Section */
.article-section {
    background: #fff;
}

/* Featured Image */
.article-featured-image {
    border-radius: 12px;
    overflow: hidden;
    max-height: 480px;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content Typography */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gcargo-dark);
}

.article-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gcargo-dark);
}

.article-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--gcargo-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4b5563;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.article-tags strong {
    margin-right: 0.25rem;
    color: var(--gcargo-dark);
}

.tag {
    display: inline-block;
    background: #f3f4f6;
    color: var(--gcargo-neutral);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--gcargo-primary);
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.article-share strong {
    color: var(--gcargo-dark);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
    color: #fff;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.twitter {
    background: #1a1a1a;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* CTA Wrapper */
.cta-1-wrapper {
    padding: 3rem 2rem;
}

/* Responsive Article Detail */
@media (max-width: 767.98px) {
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-meta span + span::before {
        display: none;
    }

    .article-featured-image {
        max-height: 280px;
        border-radius: 8px;
    }

    .article-content {
        font-size: 1rem;
    }

    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Responsive Blog */
@media (max-width: 991.98px) {
    .blog-featured {
        grid-column: span 1;
    }

    .blog-featured .blog-card-image {
        height: 200px;
    }

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

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 100px 0 50px;
    }

    .blog-article-header img {
        height: 250px;
    }

    .blog-article-content {
        padding: 1.5rem;
    }

    .pack-card {
        padding: 1.5rem;
    }

    .client-type-icon,
    .why-us-icon,
    .sustainability-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .app-mockup-container img {
        max-height: 350px;
    }
}

/* ==============================================
   70. BLOG PAGE SPECIFIC STYLES
   ============================================== */

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--gcargo-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gcargo-primary);
    border-color: var(--gcargo-primary);
    color: #fff;
}

/* Blog Card Inner */
.blog-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 280px;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gcargo-primary);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h4,
.blog-content h5 {
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4,
.blog-card:hover .blog-content h5 {
    color: var(--gcargo-primary);
}

.blog-content p {
    color: var(--gcargo-neutral);
    font-size: 0.95rem !important;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--gcargo-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 0.75rem;
}

/* Section Subtitle */
.section-subtitle {
    color: var(--gcargo-dark);
    position: relative;
    padding-left: 1rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gcargo-primary);
    border-radius: 2px;
}

/* Newsletter */
.newsletter-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.newsletter-wrapper .section-id {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0,102,204,0.1);
    color: var(--gcargo-primary);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    padding: 0.85rem 1.5rem;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--gcargo-primary);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.85rem 1.5rem;
}

/* Blog Pagination */
.blog-pagination .pagination {
    gap: 0.5rem;
}

.blog-pagination .page-link {
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--gcargo-dark);
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover,
.blog-pagination .page-item.active .page-link {
    background: var(--gcargo-primary);
    color: #fff;
}

/* ==============================================
   71. FOOTER STYLES
   ============================================== */

/* Footer Logo */
.footer-logo {
    max-height: 45px;
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255,255,255,0.8);
}

/* Footer Badge */
.footer-badge {
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: inline-block;
}

.footer-badge img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-badge p {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Footer Logo Link */
.footer-logo-link {
    display: inline-block;
}

.footer-logo-link:hover .footer-logo {
    opacity: 0.9;
}

/* CORFO Badge con Logo Imagen */
.corfo-badge-img {
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corfo-badge-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.corfo-logo-img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive CORFO Logo */
@media (max-width: 991.98px) {
    .corfo-logo-img {
        max-width: 160px;
    }
}

@media (max-width: 767.98px) {
    .corfo-badge-img {
        padding: 0.6rem 0.85rem;
    }

    .corfo-logo-img {
        max-width: 130px;
    }
}

/* Legacy CORFO Badge (texto) */
.corfo-badge {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.corfo-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corfo-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Footer Contact Icons */
.footer-links .foo-links li p a span,
.footer-links .foo-links li p span {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .blog-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }

    .blog-card .blog-image,
    .blog-card.featured .blog-image {
        height: 180px;
    }

    .newsletter-wrapper {
        padding: 2rem 1.5rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 25px;
        width: 100%;
    }
}


/* ==============================================
   SUPPORT PAGE STYLES
   ============================================== */

/* Support Cards */
.support-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,102,204,0.15);
}

.support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
}

.support-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

.support-icon.email {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
}

.support-icon.phone {
    background: linear-gradient(135deg, #ff6b35 0%, #f54c21 100%);
    color: #fff;
}

.support-icon.ticket {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
}

.support-card h5 {
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
}

.support-card p {
    color: var(--gcargo-neutral);
    margin-bottom: 1rem;
}

.support-link {
    color: var(--gcargo-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--gcargo-primary-dark);
}

/* Schedule Table */
.schedule-table {
    margin-top: 1.5rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid #e5e7eb;
}

.schedule-row.highlight {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    border: none;
}

.schedule-row.highlight .schedule-time {
    color: rgba(255,255,255,0.9);
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-day span {
    font-size: 1.1rem;
    color: var(--gcargo-primary);
}

.schedule-row.highlight .schedule-day span {
    color: #fff;
}

.schedule-time {
    font-weight: 600;
    color: var(--gcargo-dark);
}

/* SLA Block */
.sla-block {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sla-block h4 {
    margin-bottom: 0.5rem;
    color: var(--gcargo-dark);
}

.sla-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sla-item:last-child {
    border-bottom: none;
}

.sla-priority {
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 70px;
    text-align: center;
}

.sla-priority.critical {
    background: #fef2f2;
    color: #dc2626;
}

.sla-priority.high {
    background: #fff7ed;
    color: #ea580c;
}

.sla-priority.medium {
    background: #fefce8;
    color: #ca8a04;
}

.sla-priority.low {
    background: #f0fdf4;
    color: #16a34a;
}

.sla-info {
    flex: 1;
}

.sla-info strong {
    display: block;
    color: var(--gcargo-dark);
    margin-bottom: 0.15rem;
}

.sla-info span {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
}

/* Resource Cards */
.resource-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,102,204,0.15);
}

.resource-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
}

.resource-card h5 {
    margin-bottom: 0.75rem;
    color: var(--gcargo-dark);
}

.resource-card p {
    color: var(--gcargo-neutral);
    margin-bottom: 1.25rem;
}

/* Support Page Responsive */
@media (max-width: 767.98px) {
    .schedule-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .schedule-day {
        justify-content: center;
    }

    .sla-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .sla-info {
        text-align: center;
    }
}


/* ==============================================
   GCARGO PRELOADER
   ============================================== */

/* Preloader Container */
.gtrack-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gtrack-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Dark mode variant */
.gtrack-preloader.dark-mode {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Preloader Content */
.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Pulse Container - GPS Rings */
.pulse-container {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    border: 2px solid var(--gcargo-primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

.pulse-ring-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.pulse-ring-2 {
    width: 120px;
    height: 120px;
    animation-delay: 0.5s;
}

.pulse-ring-3 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Logo Container */
.logo-container {
    position: relative;
    z-index: 10;
    animation: logoFloat 3s ease-in-out infinite;
}

.preloader-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.3));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Logo Glow Effect */
.logo-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

/* GPS Tracker Dot */
.gps-tracker {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.tracker-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gcargo-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gcargo-accent), 0 0 20px var(--gcargo-accent);
    animation: trackerOrbit 4s linear infinite;
}

.tracker-trail {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 200, 83, 0.5);
    border-radius: 50%;
    animation: trackerOrbit 4s linear infinite;
    animation-delay: -0.3s;
    opacity: 0.6;
}

@keyframes trackerOrbit {
    0% {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    25% {
        top: 50%;
        left: 100%;
        transform: translate(-50%, -50%);
    }
    50% {
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    75% {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Loading Text */
.loading-text {
    margin-top: 120px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gcargo-neutral);
    display: flex;
    align-items: center;
    gap: 2px;
}

.loading-word {
    letter-spacing: 1px;
}

.loading-dots {
    display: flex;
}

.loading-dots .dot {
    animation: dotBounce 1.4s ease-in-out infinite;
    font-weight: 600;
}

.loading-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

/* Dark Mode Styles */
.gtrack-preloader.dark-mode .loading-text {
    color: rgba(255, 255, 255, 0.7);
}

.gtrack-preloader.dark-mode .pulse-ring {
    border-color: rgba(0, 102, 204, 0.8);
}

.gtrack-preloader.dark-mode .logo-glow {
    background: radial-gradient(ellipse, rgba(0, 102, 204, 0.6) 0%, transparent 70%);
}

/* Preloader Responsive */
@media (max-width: 575.98px) {
    .preloader-logo {
        width: 90px;
    }

    .pulse-container {
        width: 150px;
        height: 150px;
    }

    .pulse-ring-1 {
        width: 60px;
        height: 60px;
    }

    .pulse-ring-2 {
        width: 90px;
        height: 90px;
    }

    .pulse-ring-3 {
        width: 120px;
        height: 120px;
    }

    .gps-tracker {
        width: 150px;
        height: 150px;
    }

    .loading-text {
        margin-top: 90px;
        font-size: 0.9rem;
    }
}


/* ==============================================
   FAQ PAGE STYLES
   ============================================== */

/* FAQ Search in Header */
.faq-search {
    position: relative;
}

.faq-search .form-control {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.95);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.faq-search .form-control:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 4px 25px rgba(0,102,204,0.25);
    outline: none;
}

.faq-search .form-control::placeholder {
    color: #9ca3af;
}

/* FAQ Category */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.faq-category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.faq-category-header h4 {
    margin: 0;
    color: var(--gcargo-dark);
    font-weight: 600;
}

/* FAQ Accordion Custom Styles */
.faq-content .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-content .accordion-button {
    font-weight: 500;
    color: var(--gcargo-dark);
    padding: 1.25rem 1.5rem;
    background: #fff;
}

.faq-content .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--gcargo-primary);
    box-shadow: none;
}

.faq-content .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-content .accordion-button::after {
    background-size: 1rem;
}

.faq-content .accordion-body {
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
}

.faq-content .accordion-body p {
    margin: 0;
    color: var(--gcargo-neutral);
    line-height: 1.7;
}

/* FAQ Responsive */
@media (max-width: 767.98px) {
    .faq-category-header {
        gap: 0.75rem;
    }

    .faq-category-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .faq-category-header h4 {
        font-size: 1.1rem;
    }

    .faq-content .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-content .accordion-body {
        padding: 1rem;
    }
}


/* ==============================================
   ACADEMIA PAGE STYLES
   ============================================== */

/* Academy Search */
.academy-search .form-control {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.95);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.academy-search .form-control:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 4px 25px rgba(0,102,204,0.25);
    outline: none;
}

/* Profile Cards */
.profile-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,102,204,0.15);
    text-decoration: none;
}

.profile-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.profile-icon.admin {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.profile-icon.tech {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.profile-card h4 {
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.profile-card p {
    color: var(--gcargo-neutral);
    margin-bottom: 1rem;
}

.profile-count {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gcargo-primary);
}

/* Module Navigation */
.academy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.module-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gcargo-neutral);
    cursor: pointer;
    transition: all 0.3s ease;
}

.module-btn:hover {
    border-color: var(--gcargo-primary);
    color: var(--gcargo-primary);
}

.module-btn.active {
    background: var(--gcargo-primary);
    border-color: var(--gcargo-primary);
    color: #fff;
}

/* Video Cards */
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,102,204,0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-embed {
    position: relative;
    cursor: pointer;
}

.video-embed img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-embed img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,102,204,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--gcargo-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-info {
    padding: 1.25rem;
}

.video-module {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: #e0f2fe;
    color: var(--gcargo-primary);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.video-info h5 {
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.video-info p {
    color: var(--gcargo-neutral);
    font-size: 0.85rem;
    margin: 0;
}

/* Guide Cards */
.guide-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,102,204,0.15);
}

.guide-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.guide-card h5 {
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.guide-card p {
    color: var(--gcargo-neutral);
    margin-bottom: 1rem;
}

.guide-link {
    color: var(--gcargo-primary);
    font-weight: 600;
    text-decoration: none;
}

.guide-link:hover {
    color: var(--gcargo-primary-dark);
    text-decoration: underline;
}

/* Academy Responsive */
@media (max-width: 991.98px) {
    .academy-nav {
        gap: 0.4rem;
    }

    .module-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .profile-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-embed img {
        height: 150px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ----------------------------------------------
   12. ROADMAP INTERACTIVO
   ---------------------------------------------- */

/* Roadmap Stats */
.roadmap-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,102,204,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.stat-icon.completed {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
}

.stat-icon.in-progress {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.stat-icon.votes {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gcargo-neutral);
    font-size: 0.9rem;
    margin: 0;
}

/* Filter Bar */
.filter-bar {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tab {
    background: #f1f3f5;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gcargo-neutral);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background: #e9ecef;
    color: var(--gcargo-dark);
}

.filter-tab.active {
    background: var(--gcargo-primary);
    color: #fff;
}

.category-filter {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
}

/* Kanban Board */
.kanban-board {
    min-height: 600px;
}

.kanban-column {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.kanban-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.kanban-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.kanban-header .badge {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.kanban-header.proposed {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.kanban-header.planned {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
}

.kanban-header.in-progress {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.kanban-header.completed {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
}

.kanban-cards {
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

/* Roadmap Cards */
.roadmap-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.roadmap-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.roadmap-card.completed {
    opacity: 0.85;
    border-left-color: #00c853;
}

.card-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.category-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.category-tag.gps {
    background: #e3f2fd;
    color: #1565c0;
}

.category-tag.planificacion {
    background: #f3e5f5;
    color: #7b1fa2;
}

.category-tag.combustible {
    background: #fff3e0;
    color: #ef6c00;
}

.category-tag.finanzas {
    background: #e8f5e9;
    color: #2e7d32;
}

.category-tag.rrhh {
    background: #fce4ec;
    color: #c2185b;
}

.category-tag.integraciones {
    background: #e0f2f1;
    color: #00695c;
}

.category-tag.movil {
    background: #ede7f6;
    color: #512da8;
}

.category-tag.reportes {
    background: #fff8e1;
    color: #f9a825;
}

.quarter-tag,
.release-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    background: #e9ecef;
    color: var(--gcargo-neutral);
}

.release-tag {
    background: #d4edda;
    color: #155724;
}

.roadmap-card .card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.roadmap-card .card-description {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.progress-bar-wrapper {
    margin-bottom: 0.75rem;
}

.progress-bar-wrapper .progress {
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    margin-bottom: 0.25rem;
}

.progress-bar-wrapper .progress-bar {
    background: linear-gradient(90deg, var(--gcargo-primary) 0%, var(--gcargo-accent) 100%);
    border-radius: 3px;
}

.progress-text {
    font-size: 0.7rem;
    color: var(--gcargo-neutral);
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f3f5;
}

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

.vote-btn {
    width: 28px;
    height: 28px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vote-btn:hover:not(.voted):not(:disabled) {
    border-color: var(--gcargo-primary);
    color: var(--gcargo-primary);
    background: #e7f1ff;
}

.vote-btn.voted {
    background: var(--gcargo-primary);
    border-color: var(--gcargo-primary);
    color: #fff;
}

.vote-count {
    font-weight: 600;
    color: var(--gcargo-dark);
    font-size: 0.9rem;
}

.vote-count.completed {
    color: #00c853;
    font-size: 0.8rem;
}

.comments {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gcargo-neutral);
    font-size: 0.8rem;
}

.card-footer {
    margin-top: 0.75rem;
}

.proposed-date,
.eta,
.dev-status,
.release-date {
    font-size: 0.7rem;
    color: var(--gcargo-neutral);
}

.dev-status i {
    font-size: 0.5rem;
}

.release-date {
    color: #00c853;
    font-weight: 500;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gcargo-primary) 0%, var(--gcargo-accent) 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #dee2e6;
    margin: 30px auto 1.5rem;
    transition: all 0.3s ease;
}

.timeline-marker.active {
    border-color: var(--gcargo-primary);
    background: var(--gcargo-primary);
    box-shadow: 0 0 0 6px rgba(0,102,204,0.2);
}

.timeline-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.quarter-label {
    display: inline-block;
    background: var(--gcargo-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--gcargo-dark);
    margin-bottom: 1rem;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.timeline-features li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-features li i.fa-check-circle {
    color: #00c853;
}

.timeline-features li i.fa-circle {
    color: #dee2e6;
    font-size: 0.5rem;
}

/* Proposal Cards */
.proposal-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.proposal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,102,204,0.15);
}

.proposal-rank {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

.proposal-rank.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    box-shadow: 0 4px 12px rgba(192,192,192,0.4);
}

.proposal-rank.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
    box-shadow: 0 4px 12px rgba(205,127,50,0.4);
}

.rank-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.rank-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.proposal-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--gcargo-dark);
    font-size: 0.9rem;
}

.author-company {
    color: var(--gcargo-neutral);
    font-size: 0.8rem;
}

.proposal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.proposal-description {
    color: var(--gcargo-neutral);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.proposal-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f5;
}

.votes-display,
.comments-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.votes-display {
    background: #e7f1ff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.votes-display i {
    color: var(--gcargo-primary);
}

.votes-count {
    font-weight: 700;
    color: var(--gcargo-primary);
}

.comments-display {
    color: var(--gcargo-neutral);
    font-size: 0.85rem;
}

/* Roadmap CTA */
.roadmap-cta {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
}

.btn-white {
    background: #fff;
    color: var(--gcargo-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Roadmap Modal */
#propuestaModal .modal-header {
    border-bottom: 1px solid #f1f3f5;
}

#propuestaModal .modal-title {
    font-weight: 600;
}

#propuestaModal .form-label {
    font-weight: 500;
    color: var(--gcargo-dark);
    margin-bottom: 0.35rem;
}

/* Roadmap Responsive */
@media (max-width: 1199.98px) {
    .kanban-cards {
        max-height: 400px;
    }
}

@media (max-width: 991.98px) {
    .filter-tabs {
        margin-bottom: 1rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-marker {
        margin-top: 0;
    }

    .kanban-column {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .filter-bar {
        padding: 1rem;
    }

    .filter-tab {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .proposal-rank {
        width: 40px;
        height: 50px;
        right: 15px;
    }

    .rank-number {
        font-size: 1rem;
    }
}

/* ----------------------------------------------
   13. PÁGINAS LEGALES
   ---------------------------------------------- */

/* Legal Navigation */
.legal-nav-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.nav-label {
    font-weight: 600;
    color: var(--gcargo-dark);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: #f1f3f5;
    color: var(--gcargo-neutral);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #e9ecef;
    color: var(--gcargo-dark);
}

.nav-links a.active {
    background: var(--gcargo-primary);
    color: #fff;
}

/* Legal Index */
.index-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.index-box h5 {
    color: var(--gcargo-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
}

.index-grid a {
    padding: 0.5rem 0.75rem;
    color: var(--gcargo-primary);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.index-grid a:hover {
    background: #e7f1ff;
    color: var(--gcargo-primary-dark);
}

/* Legal Document */
.legal-document {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.legal-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h4 {
    color: var(--gcargo-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section h5 {
    color: var(--gcargo-dark);
    font-size: 1rem;
    margin: 1.25rem 0 0.75rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--gcargo-neutral);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    color: var(--gcargo-neutral);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--gcargo-primary);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Intro Box */
.intro-box {
    background: linear-gradient(135deg, #e7f1ff 0%, #f0f7ff 100%);
    border-left: 4px solid var(--gcargo-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.intro-box p {
    color: var(--gcargo-dark);
    margin: 0;
    font-size: 1rem;
}

.intro-box.highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left-color: #00c853;
}

/* Contact Info Box */
.contact-info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: var(--gcargo-dark);
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box i {
    color: var(--gcargo-primary);
    width: 20px;
}

/* Report Box */
.report-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.report-box h5 {
    color: #856404;
    margin-top: 0 !important;
}

.report-box ul {
    margin-bottom: 0;
}

/* Security Badges */
.badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.security-badge {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.security-badge i {
    font-size: 2rem;
    color: var(--gcargo-primary);
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    color: var(--gcargo-dark);
    font-size: 0.95rem;
}

.badge-info span {
    color: var(--gcargo-neutral);
    font-size: 0.8rem;
}

/* Legal CTA */
.legal-cta {
    background: #f8f9fa;
}

.legal-cta h4 {
    color: var(--gcargo-dark);
}

.legal-cta p {
    color: var(--gcargo-neutral);
}

.legal-cta .btn-primary {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.legal-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: #fff;
}

/* Legal Responsive */
@media (max-width: 991.98px) {
    .legal-nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-document {
        padding: 1.5rem;
    }

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

@media (max-width: 767.98px) {
    .nav-links a {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .legal-section h4 {
        font-size: 1.1rem;
    }

    .security-badge {
        min-width: 100%;
    }

    .badges-wrapper {
        flex-direction: column;
    }
}

/* ----------------------------------------------
   14. NAVEGACIÓN MÓVIL - MÓDULOS
   ---------------------------------------------- */

/* Por defecto: ocultar enlace móvil, mostrar mega-menu */
.mobile-modules-link {
    display: none !important;
}

.desktop-mega-menu {
    display: list-item !important;
}

/* En móvil (tablet y menor): mostrar enlace simple, ocultar mega-menu */
@media (max-width: 991.98px) {
    .mobile-modules-link {
        display: list-item !important;
    }

    .desktop-mega-menu {
        display: none !important;
    }
}

/* Estilos adicionales para la página de módulos en móvil */
@media (max-width: 767.98px) {
    /* Módulos grid responsive */
    .modules-grid .col-md-6 {
        margin-bottom: 1rem;
    }

    /* Cards de módulos más compactas */
    .module-card {
        padding: 1rem;
    }

    .module-card .module-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .module-card h5 {
        font-size: 1rem;
    }

    .module-card p {
        font-size: 0.85rem;
    }

    /* Hero section más compacto */
    .modules-hero .h2-xl {
        font-size: 1.75rem;
    }

    /* Tabs de categoría scrollables */
    .category-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .category-tabs::-webkit-scrollbar {
        height: 3px;
    }

    .category-tabs::-webkit-scrollbar-thumb {
        background: var(--gcargo-primary);
        border-radius: 3px;
    }
}

/* ==============================================
   15. CORRECCIONES RESPONSIVE GLOBALES
   ============================================== */

/* ----------------------------------------------
   15.1 PRECIOS PAGE - RESPONSIVE
   ---------------------------------------------- */

/* Tablet: Calculator section */
@media (max-width: 991.98px) {
    /* Calculadora de precios */
    .pricing-calculator .col-lg-7,
    .pricing-calculator .col-lg-5 {
        width: 100%;
    }

    .pricing-calculator .col-lg-5 {
        margin-top: 2rem;
    }

    /* Pack cards más compactas */
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card .price-amount {
        font-size: 2.5rem;
    }

    /* Tabla de descuentos por volumen */
    .volume-discount-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .volume-discount-table table {
        min-width: 500px;
    }

    /* Cards de planes */
    .plan-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    /* Precios hero */
    .pricing-hero .h2-xl {
        font-size: 1.75rem;
    }

    .pricing-hero .p-xl {
        font-size: 1rem;
    }

    /* Pricing cards en móvil */
    .pricing-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .pricing-card .price-amount {
        font-size: 2rem;
    }

    .pricing-card .price-period {
        font-size: 0.85rem;
    }

    /* Calculadora compacta */
    .calculator-result {
        padding: 1rem;
    }

    .calculator-result .total-price {
        font-size: 1.75rem;
    }

    /* Módulos seleccionables */
    .module-checkbox-group .form-check {
        padding: 0.75rem;
    }

    .module-checkbox-group .form-check-label {
        font-size: 0.9rem;
    }

    /* Tabla de descuentos responsive */
    .volume-discount-table {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .volume-discount-table table {
        font-size: 0.85rem;
    }

    .volume-discount-table th,
    .volume-discount-table td {
        padding: 0.5rem;
        white-space: nowrap;
    }
}

/* ----------------------------------------------
   15.2 ROADMAP PAGE - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 991.98px) {
    /* Kanban board: 2 columnas en tablet */
    .kanban-board .col-lg-3 {
        width: 50%;
    }

    /* Filter tabs scrollables */
    .filter-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .filter-tabs::-webkit-scrollbar {
        height: 3px;
    }

    .filter-tabs::-webkit-scrollbar-thumb {
        background: var(--gcargo-primary);
        border-radius: 3px;
    }

    .filter-tab {
        flex-shrink: 0;
    }

    /* Timeline más compacto */
    .timeline-wrapper .col-md-3 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    /* Kanban: 1 columna en móvil */
    .kanban-board .col-lg-3 {
        width: 100%;
    }

    .kanban-column {
        margin-bottom: 1.5rem;
    }

    /* Cards del roadmap */
    .roadmap-card {
        padding: 1rem;
    }

    .roadmap-card .card-title {
        font-size: 1rem;
    }

    .roadmap-card .card-description {
        font-size: 0.85rem;
    }

    /* Stats del roadmap */
    .roadmap-stats .stat-card {
        padding: 1rem;
    }

    .roadmap-stats .stat-number {
        font-size: 1.5rem;
    }

    .roadmap-stats .stat-label {
        font-size: 0.8rem;
    }

    /* Timeline vertical en móvil */
    .timeline-wrapper .timeline-line {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-item .timeline-marker {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 0.5rem;
    }

    /* Propuestas destacadas */
    .proposal-card {
        padding: 1rem;
    }

    .proposal-card .proposal-rank {
        width: 40px;
        height: 40px;
    }

    .proposal-card .rank-number {
        font-size: 1rem;
    }

    /* Filter bar */
    .filter-bar .col-lg-6,
    .filter-bar .col-lg-3 {
        width: 100%;
    }
}

/* ----------------------------------------------
   15.3 FAQ PAGE - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 767.98px) {
    /* FAQ search */
    .faq-search input {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    /* Categorías FAQ */
    .faq-category {
        margin-bottom: 1.5rem;
    }

    .faq-category-header {
        padding: 1rem;
    }

    .faq-category-header h4 {
        font-size: 1.1rem;
    }

    .faq-category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Acordeón más compacto */
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .accordion-body {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* ----------------------------------------------
   15.4 ACADEMIA PAGE - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 991.98px) {
    /* Video cards en 2 columnas */
    .academia-videos .col-lg-4 {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    /* Video cards en 1 columna */
    .academia-videos .col-lg-4,
    .academia-videos .col-md-6 {
        width: 100%;
    }

    .video-card {
        margin-bottom: 1.5rem;
    }

    .video-card .video-thumbnail {
        height: 180px;
    }

    .video-card .video-title {
        font-size: 1rem;
    }

    .video-card .video-duration {
        font-size: 0.8rem;
    }

    /* Categorías de videos */
    .video-categories {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .video-categories .nav-link {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ----------------------------------------------
   15.5 FOOTER - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 991.98px) {
    /* Footer 3 columnas en tablet */
    #footer-1 .col-xl-3,
    #footer-1 .col-xl-2 {
        width: 33.333%;
    }

    /* Columna de contacto al final */
    #footer-1 .col-xl-3:last-child {
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    /* Footer 2 columnas en móvil */
    #footer-1 .col-xl-3,
    #footer-1 .col-xl-2,
    #footer-1 .col-lg-3,
    #footer-1 .col-lg-2 {
        width: 50%;
    }

    /* Branding full width */
    #footer-1 .col-xl-3:first-child {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Contacto full width */
    #footer-1 .col-xl-3:last-child {
        width: 100%;
        margin-top: 1.5rem;
    }

    .footer-info p {
        font-size: 0.9rem;
    }

    .footer-links h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-links ul li p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    /* Bottom footer centrado */
    .bottom-footer .col {
        text-align: center !important;
    }

    .bottom-footer-socials {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    /* Footer 1 columna en móvil pequeño */
    #footer-1 .col-xl-3,
    #footer-1 .col-xl-2,
    #footer-1 .col-lg-3,
    #footer-1 .col-lg-2,
    #footer-1 .col-md-6 {
        width: 100%;
    }

    .footer-links {
        margin-bottom: 1.5rem;
    }

    /* Logo más pequeño */
    .footer-logo {
        max-height: 35px;
    }

    /* CORFO badge compacto */
    .corfo-badge {
        padding: 0.5rem 0.75rem;
    }
}

/* ----------------------------------------------
   15.6 HERO SECTIONS - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 767.98px) {
    /* Hero titles */
    .inner-page-header .h2-xl,
    .page-header-content .h2-xl {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .inner-page-header .p-xl,
    .page-header-content .p-xl {
        font-size: 1rem;
    }

    /* Hero padding */
    .inner-page-header {
        padding: 80px 0 60px;
    }

    /* Section titles */
    .section-title .h2-xl {
        font-size: 1.5rem;
    }

    .section-title .h2-md {
        font-size: 1.35rem;
    }

    .section-title .p-lg,
    .section-title .p-xl {
        font-size: 0.95rem;
    }
}

/* ----------------------------------------------
   15.7 CONTACT PAGE - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 991.98px) {
    .contact-section .col-lg-7,
    .contact-section .col-lg-5 {
        width: 100%;
    }

    .contact-section .col-lg-5 {
        margin-top: 2rem;
    }

    .contact-info-card {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h4 {
        font-size: 1.25rem;
    }

    .contact-info-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-info-card h5 {
        font-size: 1rem;
    }
}

/* ----------------------------------------------
   15.8 EMPRESA PAGES - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 767.98px) {
    /* About cards */
    .about-card {
        padding: 1.5rem;
    }

    .about-card h4 {
        font-size: 1.25rem;
    }

    /* Value cards */
    .value-card {
        padding: 1rem;
        text-align: center;
    }

    .value-card .value-icon {
        margin-bottom: 0.75rem;
    }

    .value-card h6 {
        font-size: 0.95rem;
    }

    /* KPI cards */
    .kpi-card {
        padding: 1rem;
    }

    .kpi-card .kpi-number {
        font-size: 1.5rem;
    }

    .kpi-card .kpi-label {
        font-size: 0.85rem;
    }

    .kpi-card .kpi-desc {
        font-size: 0.75rem;
    }

    /* Timeline vertical */
    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .timeline-item::before {
        left: 0;
    }

    .timeline-marker {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }

    .timeline-content h5 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* ----------------------------------------------
   15.9 BLOG & PARTNERS - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 991.98px) {
    /* Blog cards en 2 columnas */
    .blog-grid .col-lg-4 {
        width: 50%;
    }

    /* Partner cards en 2 columnas */
    .partners-grid .col-lg-4 {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    /* Blog cards en 1 columna */
    .blog-grid .col-lg-4,
    .blog-grid .col-md-6 {
        width: 100%;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }

    .blog-card .card-title {
        font-size: 1.1rem;
    }

    .blog-card .card-text {
        font-size: 0.9rem;
    }

    /* Partner cards en 1 columna */
    .partners-grid .col-lg-4,
    .partners-grid .col-md-6 {
        width: 100%;
    }

    .partner-card {
        padding: 1rem;
    }

    .partner-logo {
        max-height: 50px;
    }
}

/* ----------------------------------------------
   15.10 LEGAL PAGES - RESPONSIVE ADICIONAL
   ---------------------------------------------- */

@media (max-width: 767.98px) {
    /* Legal navigation más compacta */
    .legal-nav-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-label {
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Index grid */
    .index-grid {
        grid-template-columns: 1fr;
    }

    .index-grid a {
        font-size: 0.9rem;
    }

    /* Legal content */
    .legal-document {
        padding: 1rem;
    }

    .legal-section h4 {
        font-size: 1.15rem;
    }

    .legal-section h5 {
        font-size: 1rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.9rem;
    }

    /* Contact info box */
    .contact-info-box {
        padding: 1rem;
    }

    .contact-info-box p {
        font-size: 0.9rem;
    }
}

/* ----------------------------------------------
   15.11 CTA SECTIONS - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 767.98px) {
    .cta-module {
        padding: 2rem 1.5rem;
    }

    .cta-module h3 {
        font-size: 1.35rem;
    }

    .cta-module p {
        font-size: 0.95rem;
    }

    .cta-module .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .cta-module .btn:last-child {
        margin-bottom: 0;
    }

    /* Flex buttons stacking */
    .cta-module .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }
}

/* ----------------------------------------------
   15.12 FORMS - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 767.98px) {
    /* Form inputs */
    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    /* Form buttons */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Modal forms */
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 0.75rem 1rem;
    }

    .modal-footer .btn {
        flex: 1;
    }
}

/* ----------------------------------------------
   15.13 TABLES - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 767.98px) {
    /* Todas las tablas con scroll horizontal */
    .table-responsive-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .table-responsive-wrapper table {
        min-width: 100%;
    }

    table th,
    table td {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    /* Comparison tables */
    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.4rem 0.5rem;
    }
}

/* ----------------------------------------------
   15.14 BUTTONS & ICONS - RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 575.98px) {
    /* Buttons group stacking */
    .btns-group {
        flex-direction: column;
        width: 100%;
    }

    .btns-group .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }

    .btns-group .btn:last-child {
        margin-bottom: 0;
    }

    /* Smaller icons on mobile */
    .ico-60 [class*="flaticon-"]:before,
    .ico-60 [class*="flaticon-"]:after {
        font-size: 2.5rem;
    }

    .ico-50 [class*="flaticon-"]:before,
    .ico-50 [class*="flaticon-"]:after {
        font-size: 2rem;
    }
}

/* ----------------------------------------------
   15.15 UTILIDADES RESPONSIVE
   ---------------------------------------------- */

/* Hide on mobile */
@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide on tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hide-tablet {
        display: none !important;
    }
}

/* Hide on desktop */
@media (min-width: 992px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Text alignment responsive */
@media (max-width: 767.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Spacing responsive */
@media (max-width: 767.98px) {
    .py-100 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .pt-100 {
        padding-top: 60px;
    }

    .pb-100 {
        padding-bottom: 60px;
    }

    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .mb-70, .mb-60, .mb-50 {
        margin-bottom: 30px;
    }
}

/* ==============================================
   16. MODALES ESTANDARIZADOS
   ============================================== */

/* Base Modal Styling */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.modal-header .modal-title i {
    margin-right: 0.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.5rem;
    background: #fff;
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--gcargo-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.modal-body .form-control,
.modal-body .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.modal-body .form-control::placeholder {
    color: #adb5bd;
}

.modal-body textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.modal-body .form-check-input {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 4px;
}

.modal-body .form-check-input:checked {
    background-color: var(--gcargo-primary);
    border-color: var(--gcargo-primary);
}

.modal-body .form-check-label {
    font-size: 0.9rem;
    color: var(--gcargo-neutral);
    margin-left: 0.25rem;
}

.modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
}

.modal-footer .btn {
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.modal-footer .btn-outline-secondary {
    border-color: #dee2e6;
    color: var(--gcargo-neutral);
}

.modal-footer .btn-outline-secondary:hover {
    background: #e9ecef;
    border-color: #ced4da;
    color: var(--gcargo-dark);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.modal-footer .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* ==============================================
   17. ROADMAP MEJORAS ADICIONALES
   ============================================== */

/* Hero del Roadmap */
#roadmap-hero {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    padding: 140px 0 80px;
}

#roadmap-hero .h2-xl {
    color: #fff;
    font-weight: 700;
}

#roadmap-hero .p-xl {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats mejoradas */
.roadmap-stats {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.roadmap-stats .stat-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Filter bar mejorado */
.filter-bar {
    border: 1px solid #e9ecef;
}

.filter-bar .btn-primary {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
}

.filter-bar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

/* Timeline mejorado */
.timeline-wrapper {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e9ecef;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1rem;
    position: relative;
    z-index: 5;
}

.timeline-marker.active {
    background: var(--gcargo-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.timeline-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.quarter-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.timeline-features li {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-features li i.fa-check-circle {
    color: #00c853;
}

.timeline-features li i.fa-circle {
    color: #dee2e6;
    font-size: 0.5rem;
}

/* Propuestas destacadas */
.proposal-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proposal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.12);
}

.proposal-rank {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    padding-top: 8px;
    padding-right: 8px;
}

.proposal-rank.silver {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
}

.proposal-rank.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
}

.rank-number {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.rank-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 600;
}

.proposal-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--gcargo-dark);
    font-size: 0.95rem;
}

.author-company {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
}

.proposal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.proposal-description {
    font-size: 0.9rem;
    color: var(--gcargo-neutral);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.proposal-stats {
    display: flex;
    gap: 1.5rem;
}

.votes-display,
.comments-display {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.votes-display {
    color: var(--gcargo-primary);
    font-weight: 600;
}

.votes-display i {
    color: #00c853;
}

.comments-display {
    color: var(--gcargo-neutral);
}

/* Roadmap CTA mejorado */
.roadmap-cta .cta-content h3 {
    font-weight: 700;
}

.roadmap-cta .btn-white {
    background: #fff;
    color: var(--gcargo-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.roadmap-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Featured Proposals Section */
.featured-proposals {
    background: #fff;
}

.featured-proposals .btn-outline-primary {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

/* ==============================================
   18. HEROES ESTANDARIZADOS - BLOG Y CONTACTO
   ============================================== */

/* Hero del Blog */
#blog-hero {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
}

/* Hero de Contacto */
#contacto-hero {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
}

/* Estilos base para hero-txt */
.hero-txt {
    padding-top: 1rem;
}

.hero-txt .section-id {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-txt h1,
.hero-txt .h2-xl {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-txt p,
.hero-txt .p-xl {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* White color helper class */
.white-color,
.white-color h1,
.white-color h2,
.white-color h3,
.white-color h4,
.white-color h5,
.white-color h6,
.white-color p,
.white-color span {
    color: #fff;
}

/* Responsive hero-txt */
@media (max-width: 767.98px) {
    .hero-txt h1,
    .hero-txt .h2-xl {
        font-size: 1.75rem;
    }

    .hero-txt p,
    .hero-txt .p-xl {
        font-size: 1rem;
    }
}

/* ==============================================
   19. MODAL PROPONER IDEA - MEJORADO
   ============================================== */

/* Estilo especial para el modal de propuestas */
#propuestaModal .modal-dialog {
    max-width: 650px;
}

#propuestaModal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

#propuestaModal .modal-header {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.5rem 2rem;
    position: relative;
}

#propuestaModal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='200' height='100' viewBox='0 0 200 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='150' cy='50' r='80' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='180' cy='20' r='40' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") no-repeat right center;
    pointer-events: none;
}

#propuestaModal .modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

#propuestaModal .modal-title i {
    font-size: 1.5rem;
    color: #ffc107;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

#propuestaModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

#propuestaModal .btn-close:hover {
    opacity: 1;
}

#propuestaModal .modal-body {
    padding: 2rem;
    background: #fff;
}

#propuestaModal .modal-body .form-label {
    font-weight: 600;
    color: var(--gcargo-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#propuestaModal .modal-body .form-label::after {
    content: '';
}

#propuestaModal .modal-body .form-control,
#propuestaModal .modal-body .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

#propuestaModal .modal-body .form-control:focus,
#propuestaModal .modal-body .form-select:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
    background: #fff;
}

#propuestaModal .modal-body .form-control::placeholder {
    color: #adb5bd;
}

#propuestaModal .modal-body textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

#propuestaModal .modal-body .form-check {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

#propuestaModal .modal-body .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 5px;
    border: 2px solid #dee2e6;
}

#propuestaModal .modal-body .form-check-input:checked {
    background-color: var(--gcargo-primary);
    border-color: var(--gcargo-primary);
}

#propuestaModal .modal-body .form-check-label {
    font-size: 0.9rem;
    color: var(--gcargo-neutral);
    margin-left: 0.5rem;
    cursor: pointer;
}

#propuestaModal .modal-footer {
    background: linear-gradient(to top, #f8f9fa 0%, #fff 100%);
    border-top: none;
    padding: 1.25rem 2rem 1.5rem;
    gap: 1rem;
}

#propuestaModal .modal-footer .btn {
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#propuestaModal .modal-footer .btn-outline-secondary {
    border: 2px solid #dee2e6;
    color: var(--gcargo-neutral);
    background: transparent;
}

#propuestaModal .modal-footer .btn-outline-secondary:hover {
    background: #e9ecef;
    border-color: #ced4da;
    color: var(--gcargo-dark);
}

#propuestaModal .modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border: none;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
    position: relative;
    overflow: hidden;
}

#propuestaModal .modal-footer .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

#propuestaModal .modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.45);
}

#propuestaModal .modal-footer .btn-primary:hover::before {
    left: 100%;
}

/* Responsive del modal */
@media (max-width: 767.98px) {
    #propuestaModal .modal-dialog {
        margin: 0.5rem;
    }

    #propuestaModal .modal-header,
    #propuestaModal .modal-body,
    #propuestaModal .modal-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    #propuestaModal .modal-footer {
        flex-direction: column;
    }

    #propuestaModal .modal-footer .btn {
        width: 100%;
    }
}

/* ==============================================
   20. MODAL VIDEO YOUTUBE - ACADEMIA
   ============================================== */

#videoModal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

#videoModal .modal-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

#videoModal .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#videoModal .modal-title i {
    color: #ff0000;
    font-size: 1.25rem;
}

#videoModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#videoModal .btn-close:hover {
    opacity: 1;
}

#videoModal .modal-body {
    background: #000;
    padding: 0;
}

/* Contenedor responsive 16:9 para el video */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Card Hover mejorado */
.video-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 0.95);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button span {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive video modal */
@media (max-width: 767.98px) {
    #videoModal .modal-dialog {
        margin: 0.5rem;
    }

    #videoModal .modal-title {
        font-size: 0.95rem;
    }

    .video-thumbnail img {
        height: 160px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button span {
        font-size: 1.25rem;
    }
}

/* ==============================================
   21. DEMO PAGE - BENEFICIOS
   ============================================== */

.demo-benefits h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gcargo-dark);
}

.demo-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.demo-benefits-list li:last-child {
    border-bottom: none;
}

.demo-benefits-list .benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-benefits-list .benefit-icon span {
    color: #fff;
    font-size: 0.9rem;
}

.demo-benefits-list li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.15rem;
}

.demo-benefits-list li p {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 767.98px) {
    .demo-benefits h4 {
        font-size: 1.2rem;
    }

    .demo-benefits-list li strong {
        font-size: 0.9rem;
    }

    .demo-benefits-list li p {
        font-size: 0.8rem;
    }

    .demo-benefits-list .benefit-icon {
        width: 28px;
        height: 28px;
    }

    .demo-benefits-list .benefit-icon span {
        font-size: 0.8rem;
    }
}

/* ==============================================
   22. DEMO LANDING PAGE - NUEVO DISEÑO
   ============================================== */

/* Landing Hero */
.landing-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.landing-hero .container {
    position: relative;
    z-index: 1;
}

.landing-hero h1,
.landing-hero .h2-xl {
    color: var(--gcargo-dark);
}

.landing-hero .p-lg {
    color: var(--gcargo-neutral);
}

.landing-hero .section-id {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    color: #fff;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* App Features List */
.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gcargo-dark);
}

.app-features-list li .flaticon-check {
    color: var(--gcargo-primary);
    font-size: 1rem;
}

/* KPI Numbers */
.kpi-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gcargo-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Landing Form Card */
.landing-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.landing-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.landing-form-card .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.35rem;
}

.landing-form-card .form-control,
.landing-form-card .form-select {
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.landing-form-card .form-control:focus,
.landing-form-card .form-select:focus {
    border-color: var(--gcargo-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.landing-form-card .form-check-label {
    font-size: 0.8rem;
}

/* Landing Trust Badges */
.landing-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
}

.trust-badge span[class^="flaticon-"] {
    color: var(--gcargo-primary);
    font-size: 1rem;
}

/* Testimonial */
.testimonial-quote {
    font-size: 3rem;
    color: var(--gcargo-primary);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-text p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gcargo-dark);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--gcargo-dark);
}

/* Demo Feature Cards */
.demo-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.demo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.demo-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.demo-feature-icon span,
.demo-feature-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.demo-feature-card h6 {
    font-weight: 700;
    color: var(--gcargo-dark);
    margin-bottom: 0.5rem;
}

.demo-feature-card p {
    color: var(--gcargo-neutral);
    margin-bottom: 0;
}

/* Responsive Demo Landing */
@media (max-width: 991.98px) {
    .landing-hero {
        padding: 120px 0 60px;
    }

    .landing-form-card {
        margin-bottom: 2rem;
    }

    .kpi-number {
        font-size: 1.5rem;
    }

    .landing-trust-badges {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .landing-hero {
        padding: 100px 0 40px;
    }

    .landing-form-card {
        padding: 1.5rem;
    }

    .landing-form-card h3 {
        font-size: 1.25rem;
    }

    .app-features-list li {
        font-size: 0.9rem;
    }

    .kpi-number {
        font-size: 1.25rem;
    }

    .testimonial-text p {
        font-size: 1rem;
    }

    .demo-feature-card {
        padding: 1.25rem 0.75rem;
    }

    .demo-feature-icon {
        width: 40px;
        height: 40px;
    }

    .demo-feature-icon span,
    .demo-feature-icon i {
        font-size: 1rem;
    }
}

/* ==============================================
   23. BRANDS CAROUSEL LARGE (DEMO PAGE)
   ============================================== */

.brands-large .brand-logo img {
    max-height: 65px !important;
    width: auto !important;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.brands-large .brand-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.bg-white {
    background-color: #fff !important;
}

@media (max-width: 767.98px) {
    .brands-large .brand-logo img {
        max-height: 50px !important;
    }
}

/* ==============================================
   24. PRICING TOGGLE - MENSUAL/ANUAL
   ============================================== */

/* Toggle container centrado */
.pricing-hero .toggle-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pricing-hero .toggle-btn p {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Asegurar que el toggle es visible y clickeable */
.pricing-hero .switch-wrap {
    cursor: pointer;
    display: inline-block;
}

.pricing-hero .switcher {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 60px;
    height: 30px;
    padding: 0 5px;
}

/* Price toggle states */
.pricing-card .price1,
.pricing-card .price2 {
    position: relative;
}

.pricing-card .price1 {
    display: none;
}

.pricing-card .price2 {
    display: block;
}

/* Discount badge styling dentro de pricing cards */
.pricing-card .pricing-discount {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.pricing-card .pricing-discount h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Animación suave para el cambio de precio */
.pricing-card .plan-price > div {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Estilos específicos para el badge de descuento anual */
.bg--yellow {
    background-color: #ffc107 !important;
}

.color--black {
    color: #000 !important;
}

/* Responsive pricing toggle */
@media (max-width: 767.98px) {
    .pricing-hero .toggle-btn {
        flex-direction: column;
        gap: 0.75rem;
    }

    .pricing-hero .toggler-txt {
        font-size: 0.9rem;
    }
}

/* ==============================================
   25. MODULE DETAIL - TITLE WITH INLINE ICON
   ============================================== */

/* Title with inline icon */
.module-title-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Small icon next to title */
.module-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    flex-shrink: 0;
}

.module-icon-small i {
    color: #fff;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .module-title-inline {
        gap: 0.5rem;
    }

    .module-icon-small {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 8px;
    }

    .module-icon-small i {
        font-size: 1rem;
    }
}

/* ==============================================
   26. SUSTAINABILITY PAGE STYLES
   ============================================== */

/* Stat Cards */
.sustainability-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sustainability-stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sustainability-stat-card .stat-unit {
    font-size: 0.85rem;
    color: var(--gcargo-neutral);
    text-transform: uppercase;
}

.sustainability-stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--gcargo-dark);
    margin-top: 0.5rem;
}

/* Environmental Impact Cards */
.environmental-impact-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.environmental-impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
}

.environmental-impact-card .impact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.environmental-impact-card .impact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.environmental-impact-card .impact-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.environmental-impact-card .impact-metric {
    text-align: right;
}

.environmental-impact-card .impact-metric .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.environmental-impact-card .impact-metric .metric-label {
    font-size: 0.8rem;
    color: var(--gcargo-neutral);
}

.environmental-impact-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.environmental-impact-card p {
    font-size: 0.95rem;
    color: var(--gcargo-neutral);
    margin-bottom: 0.75rem;
}

.environmental-impact-card .impact-detail {
    font-size: 0.85rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0;
}

.environmental-impact-card .impact-detail i {
    margin-right: 0.5rem;
}

/* Initiative Cards */
.initiative-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
}

.initiative-card .initiative-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.initiative-card .initiative-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.initiative-card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.75rem;
}

.initiative-card p {
    font-size: 0.9rem;
    color: var(--gcargo-neutral);
    margin-bottom: 0;
}

/* EV Features */
.ev-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.ev-feature i {
    color: #059669;
    font-size: 1.1rem;
}

.ev-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gcargo-dark);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto;
}

/* Content Box */
.content-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.content-box-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.content-box-txt h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gcargo-dark);
    margin-bottom: 0.25rem;
}

.content-box-txt p {
    font-size: 0.9rem;
    color: var(--gcargo-neutral);
}

/* Responsive sustainability */
@media (max-width: 767.98px) {
    .sustainability-stat-card .stat-value {
        font-size: 1.5rem;
    }

    .environmental-impact-card {
        padding: 1.25rem;
    }

    .environmental-impact-card .impact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .environmental-impact-card .impact-metric {
        text-align: left;
    }

    .initiative-card {
        padding: 1.25rem;
    }

    .cta-section {
        padding: 60px 0;
    }
}

/* ----------------------------------------------
   MODULE SELECTOR - GRID & CHIPS
   ---------------------------------------------- */
.module-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gcargo-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-header i {
    color: var(--gcargo-primary);
    font-size: 0.9rem;
}

.category-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.module-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    user-select: none;
}

.module-chip:hover {
    border-color: var(--gcargo-primary);
    background: #f0f7ff;
}

.module-chip.selected {
    background: var(--gcargo-primary);
    border-color: var(--gcargo-primary);
    color: white;
}

.module-chip input[type="checkbox"] {
    display: none;
}

.chip-name {
    font-weight: 500;
}

.chip-price {
    font-size: 0.75rem;
    opacity: 0.8;
    padding: 0.15rem 0.4rem;
    background: rgba(0,0,0,0.08);
    border-radius: 4px;
}

.module-chip.selected .chip-price {
    background: rgba(255,255,255,0.2);
}

.selected-count {
    font-size: 0.875rem;
    color: var(--gcargo-neutral);
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.selected-count span {
    font-weight: 600;
    color: var(--gcargo-primary);
}

/* Responsive module grid */
@media (max-width: 575.98px) {
    .module-chip {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }

    .chip-price {
        font-size: 0.7rem;
    }

    .category-header {
        font-size: 0.75rem;
    }
}


/* =============================================
   STATS COUNTER BAR
   ============================================= */
.stats-counter-section {
    background: var(--gcargo-primary);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 15px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.row > .col:last-child .stat-item {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stats-counter-section {
        padding: 40px 0;
    }

    .stat-item {
        border-right: none;
    }
}


/* =============================================
   CONFÍAN EN NOSOTROS — TRUST LOGOS
   ============================================= */
.trust-section {
    background: #fff;
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 10px 20px;
    background: var(--gcargo-bg);
    border-radius: 8px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-logo img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
}

.trust-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gcargo-neutral);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-logo:hover .trust-logo-text {
    color: var(--gcargo-primary);
}

.trust-section .brand-logo {
    padding: 0 10px;
}


/* =============================================
   IMPACTO SOSTENIBLE
   ============================================= */
.impact-section {
    background: var(--gcargo-secondary);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.impact-card {
    padding: 40px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

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

.impact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gcargo-primary) 0%, var(--gcargo-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.impact-icon i {
    font-size: 1.6rem;
    color: #fff;
}

.impact-section .section-id.txt-white-override {
    color: var(--gcargo-accent);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}


/* =============================================
   HERO — FULLWIDTH BACKGROUND IMAGE
   ============================================= */
.hero-fullwidth,
#hero-1.hero-fullwidth {
    position: relative;
    background: url('../images/hero-1-img.jpg') center center / cover no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-fullwidth .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(5, 10, 30, 0.9) 0%, rgba(10, 15, 40, 0.8) 100%);
    z-index: 0;
}

.hero-fullwidth .container {
    z-index: 1;
}

.hero-fullwidth h2 {
    font-size: 2.6rem;
    color: #fff !important;
    text-shadow: none;
}

.hero-fullwidth .p-lg {
    color: rgba(255, 255, 255, 0.85) !important;
}

.hero-fullwidth .value-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Hero: "Soy Transportista" — white filled for contrast */
.hero-fullwidth .btn--tra-white {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    color: #fff !important;
}

.hero-fullwidth .btn--tra-white:hover {
    background: #fff;
    color: var(--gcargo-primary) !important;
}

/* Outline buttons for dark backgrounds */
.btn--outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.btn--outline-white:hover {
    background: #fff;
    border-color: #fff;
    color: var(--gcargo-primary);
}

/* Botón "Registrarse" naranja en navbar */
.btn--orange-nav {
    background: var(--gcargo-accent) !important;
    color: #fff !important;
    border-color: var(--gcargo-accent) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--orange-nav:hover {
    background: #ea580c !important;
    border-color: #ea580c !important;
    color: #fff !important;
}

.btn--outline-theme {
    background: transparent;
    border: 2px solid var(--gcargo-primary);
    color: var(--gcargo-primary);
    transition: all 0.3s ease;
}

.btn--outline-theme:hover {
    background: var(--gcargo-primary);
    color: #fff;
}

@media (min-width: 992px) {
    .hero-fullwidth {
        min-height: 620px;
        padding: 140px 0 100px;
    }

    .hero-fullwidth h2 {
        font-size: 3rem;
    }
}

/* Hero responsive: stack buttons en mobile */
@media (max-width: 575.98px) {
    .hero-fullwidth {
        min-height: 480px;
        padding: 100px 0 60px;
    }

    .hero-fullwidth h2 {
        font-size: 1.8rem;
    }

    .hero-1-txt .d-flex.gap-3 {
        flex-direction: column;
    }

    .hero-1-txt .d-flex.gap-3 .btn {
        width: 100%;
        text-align: center;
    }
}
