/* ==========================================
   1. ARCHIVO MAESTRO DE VARIABLES
   ========================================== */
:root {
    /* Colores Principales */
    --primary: #00A896;
    --primary-hover: #008f7f;
    
    /* Colores de Secciones y Textos */
    --bg-light: #F3F4F6;
    --bg-dark: #4B5563;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    
    /* Variables de Diseño */
    --border-radius: 8px;
    --border-radius-large: 16px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    
    /* Tipografía */
    --font-main: 'Poppins', sans-serif;
    
    /* Scroll Offset para el Header Fijo */
    --header-height: 80px;
}

/* ==========================================
   2. RESET Y CONFIGURACIÓN BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Efecto de navegación suave */
    scroll-padding-top: var(--header-height); /* Evita que el header tape los títulos */
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.image-support-banner{
    display: none;
}

.stat-icon {
    margin-bottom: 32px; /* Ajusta este valor a tu gusto */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* ==========================================
   3. CLASES UTILITARIAS Y LAYOUT
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

.mt-small { margin-top: 16px; }
.mt-medium { margin-top: 32px; }
.mt-large { margin-top: 32px; }
.mb-small { margin-bottom: 16px; }
.mb-medium { margin-bottom: 32px; }
.mb-large { margin-bottom: 32px; }

.grid {
    display: grid;
    gap: 24px;
}

/* Placeholders de imágenes (Recuadros plomos del diseño) */
/* Contenedor principal de la imagen en el Hero */
.hero-image {
    display: flex;
    justify-content: center; /* Obliga a la imagen a centrarse siempre */
    width: 100%;
    margin-top: 20px; /* Separación del texto en móviles */
}

/* El recuadro de la imagen */
.hero-image .img-placeholder {
    width: 100%; /* Toma el espacio disponible */
    max-width: 350px; /* Pero nunca se hace más grande que 400px */
    aspect-ratio: 1 / 1; /* Mantiene un cuadrado perfecto automáticamente */
    overflow: hidden;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-md);
}

/* La foto dentro del recuadro */
.hero-image .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: flex;

}

/* ==========================================
   4. BOTONES
   ========================================== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--bg-light);
}

.btn-solid {
    background-color: var(--primary);
    color: var(--white);
}

.btn-solid:hover {
    background-color: var(--primary-hover);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ==========================================
   5. HEADER Y NAVEGACIÓN
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img{
    height: 40px;
}

.logo-icon {
    color: var(--primary);
    font-size: 32px;
    line-height: 1;
}

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

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-main);
}

/* ==========================================
   6. SECCIÓN HERO
   ========================================== */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

/* 1. Aseguramos que el contenedor no tenga espacios y recorte las esquinas de la imagen */
.hero-image .img-placeholder {
    width: 400px;
    height: 350px;
    overflow: hidden; /* Evita que la imagen cuadrada se salga de los bordes curvos */
    padding: 0;       /* Quitamos cualquier espacio interno */
    border: none;     /* Opcional: quitamos bordes si los hubiera */
}

/* 2. Hacemos que la imagen llene el 100% del espacio disponible */
.hero-image .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* La propiedad mágica: recorta la foto para que encaje perfecto sin deformarla */
    object-position: center; /* Centra la imagen para que el repartidor no se corte */
    display: block;    /* Elimina pequeños márgenes blancos debajo de las imágenes */
}


/* ==========================================
   7. SOLUCIONES Y POR QUÉ ELEGIRNOS
   ========================================== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.solutions-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.card-icon {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.card-feature {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.card-feature p {
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================
   8. ESTADÍSTICAS E IMAGEN DE APOYO
   ========================================== */
.stats-section {
    background-color: var(--primary);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 40px;
}

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

.stat-icon {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    margin-top: 8px;
}

.banner-placeholder {
    height: 300px;
    border-radius: 0; /* Ocupa ancho completo visualmente */
    background-color: #e5e7eb;
}

/* ==========================================
   9. PROCESO
   ========================================== */
.process-header {
    margin-bottom: 48px;
}

.process-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step .step-img {
    height: 120px;
    margin-bottom: 16px;
}

.process-step .step-img img{
    height: 100%;
}

.process-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-muted);
}

.process-footer {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.process-footer span {
    font-size: 16px;
    font-weight: 500;
}

/* ==========================================
   10. NOSOTROS Y COBERTURA
   ========================================== */
.about-grid, .coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content h2, .coverage-content h2 {
    font-size: 36px;
    font-weight: 700;
}

.about-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 16px;
}

/* ==========================================
   SECCIÓN NOSOTROS - AJUSTE DE IMAGEN
   ========================================== */

/* Alineamos el contenedor para que quede centrado verticalmente con el texto */
.about-image {
    display: flex;
    align-items: center;
    height: 100%;
}

/* El recuadro de la imagen limitando su altura */
.about-image .tall-placeholder {
    width: 100%;
    height: 300px; /* Aquí forzamos el límite de 300px de alto */
    max-height: 300px;
    border-radius: var(--border-radius-large, 24px); /* Mantiene las esquinas curvas */
    overflow: hidden;
    box-shadow: var(--shadow-md, 0 10px 25px rgba(0,0,0,0.08)); /* Sombra para mantener el estilo B2B */
}

/* La fotografía en sí */
.about-image .tall-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen para que encaje en los 300px sin deformarse */
    object-position: center center; /* Mantiene enfocado al repartidor y el centro de la ciudad */
    display: block;
}


.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mv-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.mv-card h4 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mv-card p {
    font-size: 13px;
    margin-top: 0;
}

.tall-placeholder {
    height: 500px;
}


.coverage-centered {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente todo el contenido */
    text-align: center;  /* Centra los textos */
}

.coverage-centered .table-container {
    width: 100%;
    max-width: 900px; /* Ancho máximo para que no ocupe toda la pantalla en PC */
    margin-left: auto;
    margin-right: auto;
}

/* Tabla de Cobertura */
.table-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.coverage-table {
    width: 100%;
    border-collapse: collapse;
}

.coverage-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-main);
}

.coverage-table tr:nth-child(even) {
    background-color: #fafafa;
}

.table-empty-row {
    height: 40px;
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-light);
}

.coverage-note {
    font-size: 13px;
    font-weight: 500;
}

.map-placeholder {
    height: 400px;
}

/* ==========================================
   11. CONFIANZA Y TESTIMONIOS (CARRUSELES)
   ========================================== */
   
/* A. Carrusel Infinito de Logos */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-bottom: 50px;
}

/* Efecto de difuminado en los bordes para que los logos aparezcan/desaparezcan suavemente */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, rgba(243, 244, 246, 0) 100%);
}
.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, rgba(243, 244, 246, 0) 100%);
}

.logo-slide-track {
    display: flex;
    gap: 40px;
    width: max-content;
    /* La animación dura 25s, es lineal e infinita */
    animation: scrollLogos 25s linear infinite;
}

/* Pausa la animación si el usuario pone el mouse encima */
.logo-slide-track:hover {
    animation-play-state: paused;
}

.brand-box {
    width: 200px;
    height: 100px;
    flex-shrink: 0;
}

.brand-box img {
    max-width: 100%;       /* Evita que la imagen sea más ancha que su contenedor */
    height: auto;          /* Mantiene la proporción original */
    max-height: 80px;      /* Ajusta este valor al tamaño que desees para los logos */
    object-fit: contain;   /* Asegura que el logo no se deforme ni se recorte */
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    /* Se mueve la mitad del contenedor (justo donde empieza la copia) */
    100% { transform: translateX(calc(-50% - 20px)); } 
}

/* B. Carrusel Manual de Testimonios */
.testimonial-carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px; /* Espacio para los botones */
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* "Imán" de la tarjeta */
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* Oculta scrollbar en IE y Edge */
    scrollbar-width: none;  /* Oculta scrollbar en Firefox */
}

/* Oculta scrollbar en Chrome, Safari y Opera */
.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%; /* Una tarjeta por vista */
    scroll-snap-align: center;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: left;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-main);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition);
    margin: -10px;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Ocultar botones en móvil (pueden hacer swipe con el dedo) */
@media (max-width: 768px) {
    .carousel-btn { display: none; }
    .testimonial-carousel-container { padding: 0; }
}
/* ==========================================
   12. SECCIÓN CONTACTO (CTA DINÁMICO)
   ========================================== */

/* Variables locales específicas para esta sección (Asegura la paleta B2B) */
:root {
    /* Un charcoal sutilmente diferente al bg-dark general para que las formas popen */
    --contact-bg: #1c252e; 
    --contact-shape-color: rgba(255, 255, 255, 0.02); /* Súper sutil, casi invisible */
    --contact-text-muted: rgba(255, 255, 255, 0.8);
}

.section-contacto {
    position: relative;
    overflow: hidden; /* Importante para que las formas no se salgan */
    background-color: var(--contact-bg);
    padding: 100px 0; /* Un poco más de aire */
    display: flex;
    align-items: center;
}

/* Útil para SEO y legibilidad (reemplaza p por h2 semántico) */
.text-compelling {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-white-muted {
    color: var(--contact-text-muted);
}

.text-lead {
    font-size: 16px;
    font-weight: 400;
}

/* A. Animación Geométrica de Fondo */
.bg-dynamic-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Detrás del texto */
}

.shape {
    position: absolute;
    background-color: var(--contact-shape-color);
    border-radius: 50%;
    transform-origin: center;
}

.shape-1 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -150px;
    /* Animación lenta de rotación y balanceo sutil */
    animation: rotateShape1 30s linear infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotateShape2 25s linear infinite reverse; /* Gira al revés */
}

/* Keyframes para las animaciones sutiles */
@keyframes rotateShape1 {
    0% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(20px, 10px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

@keyframes rotateShape2 {
    0% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(-10px, 20px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

/* Asegura que el contenido esté sobre las formas animadas */
.container-contacto {
    position: relative;
    z-index: 10; 
}

/* B. Botón Dinámico Avanzado */
.btn-whatsapp-dynamic {
    display: inline-block;
    position: relative;
    background-color: var(--white);
    color: var(--text-main);
    padding: 18px 48px; /* Grande, como el diseño */
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden; /* Para el efecto de ripple interno */
}

/* Estilo para el icono SVG */
.icon-whatsapp {
    width: 20px;
    height: 20px;
    fill: currentColor; /* Usa el color del texto del botón */
    margin-right: 12px;
    vertical-align: middle;
}

/* Efecto Hover del Botón: Se vuelve tu color corporativo */
.btn-whatsapp-dynamic:hover {
    background-color: var(--primary); /* Tu color corporativo: 00A896 */
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 168, 150, 0.2); /* Sombra de color sutil */
    transform: translateY(-2px); /* Pequeña elevación */
}

/* C. Animación de "Onda" Avanzada (Ripple effect) en Hover */
.btn-whatsapp-dynamic::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.4); /* Brillo sutil blanco */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    z-index: 0;
}

.btn-whatsapp-dynamic:hover::after {
    width: 300px; /* Cubre el botón completo al expandirse */
    height: 300px;
    opacity: 1;
    animation: pulseGlow 1s ease-out forwards;
}

@keyframes pulseGlow {
    0% { width: 0; height: 0; opacity: 1; }
    80% { width: 350px; height: 350px; opacity: 0; } /* Se difumina al final */
    100% { width: 350px; height: 350px; opacity: 0; }
}

/* Asegura que el texto y el icono estén sobre el ripple */
.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive para esta sección */
@media (max-width: 768px) {
    .section-contacto { padding: 80px 0; }
    .text-compelling { font-size: 26px; }
    .text-lead { font-size: 14px; }
    .btn-whatsapp-dynamic { padding: 16px 32px; font-size: 14px; }
    .icon-whatsapp { width: 16px; height: 16px; margin-right: 8px; }
    /* Desactivar animaciones de fondo en móvil para ahorrar batería y evitar distracciones */
    .bg-dynamic-shapes { display: none; }
}
/* ==========================================
   13. FOOTER
   ========================================== */
.footer {
    padding: 60px 0 40px;
    background-color: var(--white);
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-logo img{
    height: 80px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-circle {
    width: 48px;
    height: 48px;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: inline-block;
}

/* Tamaño y comportamiento básico de todos los iconos sociales */
.social-icon {
    width: 20px;       /* Tamaño del icono */
    height: 20px;
    fill: currentColor; /* IMPORTANTE: El icono hereda el color del texto del contenedor */
    transition: var(--transition);
}

/* Contenedor circular (tu diseño B2B) */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-circle {
    width: 48px;
    height: 48px;
    background-color: var(--primary); /* Tu color corporativo de Rainau */
    color: var(--white);            /* El color inicial del icono */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Efecto hover: El icono y el fondo cambian al pasar el mouse */
.social-circle:hover {
    background-color: var(--white);
    color: var(--primary); /* El icono se vuelve de tu color corporativo */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ==========================================
   14. BOTÓN FLOTANTE RASTREAR (FAB)
   ========================================== */
.fab-rastrear {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-main); /* O puedes usar tu color --primary */
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-rastrear:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.icon-rastrear {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* En móviles lo hacemos circular para que no tape la pantalla */
@media (max-width: 768px) {
    .fab-rastrear {
        bottom: 20px;
        right: 20px;
        padding: 16px;
        border-radius: 50%;
    }
    .fab-rastrear span {
        display: none; /* Ocultamos el texto, dejamos solo el icono */
    }
    .icon-rastrear {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================
   13. RESPONSIVE / MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--header-height) + 40px);
    }
    
    .hero-content h1 { font-size: 48px; }
    .hero-content p { margin: 0 auto 32px; }
    
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid, .coverage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active { left: 0; }
    .nav-links { flex-direction: column; text-align: center; gap: 32px; }
    .nav-actions { flex-direction: column; width: 80%; max-width: 300px; margin-top: 32px; }
    .mobile-menu-btn { display: block; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 32px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
    .legal-links { flex-direction: column; gap: 12px; }
    
    .process-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 36px; }
}