/* Performance Optimizations */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Containment for better performance */
.header-container,
.main-nav,
.footer-grid,
.cta-section,
.service-row {
    contain: layout style paint;
}

/* Optimize animations */
.cta-button,
.nav-link,
.floating-wa-btn {
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize images */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Reduce repaints for scroll */
body {
    overflow-x: hidden;
}

/* Loading optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Variables para colores y tipografía estilo Apple/Tesla premium */
:root {
    --primary-bg: #1A1A1C;
    /* FONDOS DEL CUERPO (Gris Oscuro Original) */
    --secondary-bg: #2C2C2E;
    /* Fondo para secciones o tarjetas */
    --tertiary-bg: #3A3A3C;
    /* Un gris ligeramente más claro para contraste */
    --text-primary: #FFFFFF;
    /* Texto principal blanco */
    --text-secondary: #E0E0E6;
    /* Texto secundario gris muy claro */
    --text-muted: #B0B0B5;
    /* Texto para descripciones o info extra - Brightened from #8E8E93 for better contrast */

    /* VARIABLES DE COLOR DE MARCA NARANJA/BRONCE */
    --accent-orange: #FF6600;
    /* Naranja fuerte para CTAs y Nav Hover */
    --accent-bronze: #C87533;
    --accent-blue: #0A84FF;
    --accent-green: #30D158;
    /* Verde para WhatsApp */
    --accent-red: #FF453A;

    --border-radius-lg: 12px;
    --border-radius-md: 8px;
    --border-radius-sm: 6px;

    --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* ANIMATIONS */
    --pulse-animation: pulse 2s infinite;
}

/* Accessibility & SEO utility: Hide from view, keep for crawlers */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(48, 209, 88, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(48, 209, 88, 0);
    }
}

@keyframes tag-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Base Global */
body {
    font-family: var(--font-family-base);
    background-color: var(--primary-bg);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    padding-top: 0;
}

html {
    overflow-x: clip;
    width: 100%;
}

.mobile-nav-check {
    display: none !important;
}

 


.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
}

/* Mobile-only elements: hidden on desktop */
.mobile-nav-close,
.mobile-nav-actions {
    display: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700; /* Enfatizado */
    transition: color 0.3s ease;
    font-size: 1.1em; /* Más grande */
    position: relative;
    padding-bottom: 5px;
}

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

/* Header Actions - Groups Contacto and WhatsApp button on the right */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    /* Push to the right */
}

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

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

h1,
h2,
h3 {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    text-align: center;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

.section-padded {
    padding: 120px 0;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3em;
    font-size: 1.1em;
    color: var(--text-muted);
}

/* Header */
.main-header {
    background-color: #000101; /* Negro profundo inicial */
    padding: 30px 0; /* Huge initially */
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000 !important;
    transition: padding 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.5s ease, backdrop-filter 0.5s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    will-change: padding, background-color, backdrop-filter, transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0); /* Hardware acceleration */
}

.main-header.header-scrolled {
    padding: 10px 0; /* Reduced the difference to avoid jumping */
    background-color: rgba(0, 0, 0, 0.4) !important; /* Glassmorphism effect */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo a.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #000000; /* Fondo negro sólido para el efecto Dynamic Island */
    padding: 12px 25px;
    border-radius: 100px; /* Forma de píldora */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-scrolled .logo a.logo-link {
    padding: 6px 18px; /* Se compacta al hacer scroll */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.logo-img {
    height: 60px; /* Grande inicialmente en negro */
    width: auto;
    margin-right: 15px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-scrolled .logo-img {
    height: 32px; /* Muy compacto en modo vidrio */
    margin-right: 10px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    /* Espaciado ajustado */
}

.logo-brand {
    /* Mac Wave T2 */
    font-size: 1.8em; /* Ajustado para caber en la píldora */
    font-weight: var(--font-weight-bold);
    color: #ffffff !important;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-scrolled .logo-brand {
    font-size: 1.3em; /* Muy compacto */
}

.logo-subtext {
    /* Reparaciones y piezas Mac + Para tu dispositivo... */
    font-size: 0.75em;
    font-weight: var(--font-weight-bold);
    color: #FF5500;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.logo-subtext.subtext-2 {
    /* El texto de "fuera de garantía" en naranja sólido */
    font-size: 0.65em;
    color: #FF5500;
    font-weight: var(--font-weight-bold);
}

/* ============================================================
   CLASE VISUALLY HIDDEN — SEO-SAFE
   Invisible para el usuario, pero INDEXADO por Google.
   No usar display:none (Google lo penaliza). Esta técnica
   es el estándar W3C para accesibilidad y SEO avanzado.
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navegación */
.main-nav a {
    margin-left: 20px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
}

/* Ocultar "Inicio" y su icono de casa en el modo escritorio para evitar que se amontone */
@media (min-width: 769px) {
    .main-nav a[href="index.html"] {
        display: none !important;
    }
    .cloned-header .main-nav {
        display: none !important;
    }
}


.main-nav a.nav-link-small {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-left: 15px;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.main-nav a.nav-link-small:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.status-circle-yellow {
    width: 10px;
    height: 10px;
    background-color: #FF4500;
    /* Color exacto de las letras naranja del logo Apple Engineer */
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
    border: none;
    opacity: 1 !important;
}

.status-circle-yellow.pulsing {
    animation: pulse-orange-dot 2s infinite;
}

@keyframes pulse-orange-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 69, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
    }
}

.status-circle-yellow:hover {
    background-color: #FF4500;
    box-shadow: 0 0 15px #FF4500, 0 0 25px rgba(255, 69, 0, 0.5);
    transform: scale(1.15);
}

.nav-link::after {
    /* LÍNEA NARANJA AL PASAR EL RATÓN */
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Un poco más gruesa */
    background-color: var(--accent-orange);
    left: 0; /* Desde la izquierda */
    bottom: -2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* UTILIDADES DE CONTRASTE Y SECCIONES CLARAS */
.light-section {
    background-color: #FFFFFF !important;
    color: #1A1A1C !important;
}

.light-section h2,
.light-section h3,
.light-section h4 {
    color: #000000 !important;
}

.light-section p,
.light-section li {
    color: #333333 !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-white h2,
.text-white h3,
.text-white p {
    color: #FFFFFF !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Botones CTA */
.cta-button {
    padding: 8px 20px;
    border-radius: var(--border-radius-lg);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none !important;
}

.cta-button.primary {
    /* BOTÓN PRIMARIO ES NARANJA */
    background-color: var(--accent-orange);
    color: var(--primary-bg);
}

.cta-button.primary:hover {
    background-color: #FF7B33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-primary);
}

.cta-button.secondary:hover {
    background-color: var(--text-primary);
    color: var(--primary-bg);
}

.header-cta {
    margin-left: 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 8px 16px;
}

.header-cta.neon-green {
    background: rgba(48, 209, 88, 0.15);
    color: #30D158;
    border: 1px solid rgba(48, 209, 88, 0.4);
    box-shadow: 0 0 10px rgba(48, 209, 88, 0.2);
}

.header-cta.neon-green:hover {
    background: #30D158;
    color: #000;
    box-shadow: 0 0 20px rgba(48, 209, 88, 0.6);
}

.header-cta.neon-yellow {
    background: rgba(255, 204, 0, 0.15);
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.header-cta.neon-yellow:hover {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
}

.header-cta.neon-orange {
    background: rgba(255, 102, 0, 0.15);
    color: #ff6600;
    border: 1px solid rgba(255, 102, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.header-cta.neon-orange:hover {
    background: #ff6600;
    color: #fff;
    box-shadow: 0 0 200px rgba(255, 102, 0, 0.6);
}

.large-cta {
    padding: 12px 24px;
    font-size: 1.1em;
    margin-top: 40px;
}

/* Hero Section */
.hero-section-authority {
    background-color: var(--primary-bg);
    padding: 120px 0;
    /* Ajustado el padding para el layout de dos columnas */
    text-align: left;
    /* Cambiado a alineación izquierda */
    border-bottom: 1px solid var(--secondary-bg);
}

/* ESTILOS DE LA DIVISIÓN DE CONTENIDO */
.hero-split-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Columna izquierda (imagen) ligeramente más pequeña que la derecha (texto) */
    gap: 50px;
    align-items: center;
    /* Centrado vertical */
}


.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-content-text {
    padding-left: 10px;
}

/* Google Review Pill - Static & Smaller */
.google-review-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 28px;
    margin-top: 50px;
    margin-bottom: 0;
    gap: 16px;
    text-decoration: none;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.google-g-icon {
    width: 18px;
    height: 18px;
}

.google-star {
    color: #FBBC04;
    font-size: 1.2rem;
}

.google-rating-score {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}

.google-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
}

.google-reviews-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .google-review-pill {
        margin: 25px auto 10px;
        padding: 6px 16px;
    }
}

/* PREMIUM BANNER PROMO */
.hero-banner-promo {
    background: rgba(30, 30, 32, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e6;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-banner-promo:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 102, 0, 0.4);
}

.hero-banner-promo span {
    background: linear-gradient(135deg, #FF9933, #FF3300);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Botones Neón */
.neon-blue {
    background-color: #0071e3 !important;
    color: white !important;
    box-shadow: 0 0 10px rgba(0, 113, 227, 0.5), 0 0 20px rgba(0, 113, 227, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: neon-pulse-blue 2s infinite ease-in-out;
}

.neon-orange {
    background-color: #FF7B33 !important;
    color: white !important;
    box-shadow: 0 0 10px rgba(255, 123, 51, 0.5), 0 0 20px rgba(255, 123, 51, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: neon-pulse-orange 2s infinite ease-in-out;
}

@keyframes neon-pulse-blue {
    0% {
        box-shadow: 0 0 10px rgba(0, 113, 227, 0.5), 0 0 20px rgba(0, 113, 227, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 113, 227, 0.8), 0 0 40px rgba(0, 113, 227, 0.5);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 113, 227, 0.5), 0 0 20px rgba(0, 113, 227, 0.3);
    }
}

@keyframes neon-pulse-orange {
    0% {
        box-shadow: 0 0 10px rgba(255, 123, 51, 0.5), 0 0 20px rgba(255, 123, 51, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 123, 51, 0.8), 0 0 40px rgba(255, 123, 51, 0.5);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 123, 51, 0.5), 0 0 20px rgba(255, 123, 51, 0.3);
    }
}

/* NUEVOS ESTILOS DE LA AGRUPACIÓN DE CERTIFICACIONES */
.certification-group {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    margin-bottom: 30px;
    /* Reduced margin to bring it closer to title */
    line-height: 1;
}

.cert-apple-logo {
    font-size: 3.5em;
    font-weight: var(--font-weight-bold);
    margin-right: 30px;
    /* <--- CAMBIO AQUÍ: Más espacio a la derecha de la manzana */
    padding-top: 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    transform: translateY(-5px);
    /* Ajuste sutil */
}

.cert-text-lines {
    /* Contenedor de las dos líneas */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centrar el texto en su contenedor */
    font-size: 0.99em;
    line-height: 1.3;
    /* NORMALIZADO */
    /*margin-left: 10px;
    /* Mueve el bloque a la derecha */
}


/*Estilos de las líneas individuales (LIMPIEZA DE CONFLICTOS) */
.cert-line-1,
.cert-line-2 {
    /* Propiedades comunes */
    font-weight: var(--font-weight-light);
    margin: 0;
    padding: 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-align: left;
}

/* ---------------------------------------------------- */
/* 1. ESTILO DE LA LÍNEA BLANCA (ACSP...) - [La línea que va ABAJO en el HTML] */
/* ---------------------------------------------------- */
.cert-line-1 {
    color: var(--text-primary);
}

/* ---------------------------------------------------- */
/* 2. ESTILO DE LA LÍNEA NARANJA (Apple consulting...) - [La línea que va ARRIBA en el HTML] */
/* ---------------------------------------------------- */
.cert-line-2 {
    color: #ff6b00 !important;
    /* Orange */
    letter-spacing: 1px;
    transform: none !important;
    text-align: left;
}

.hero-content-text {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    /* Styles moved down and consolidated below line 972 to avoid conflicts */
}

@media (max-width: 600px) {
    .certification-group {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .cert-apple-logo {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 2.5em;
    }

    .cert-line-1,
    .cert-line-2 {
        text-align: center;
        white-space: normal;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2.2rem !important;
    }
}

.hero-content-text {
    align-items: center;
    text-align: center;
}

/* AJUSTES DE TEXTO DENTRO DE LA NUEVA COLUMNA */

.hero-actions {
    display: flex;
    justify-content: flex-start;
    /* Alineamos los botones a la izquierda */
    gap: 20px;
    margin-top: 20px;
}



/* Ecosystem Section */
.ecosystem-section {
    background-color: var(--secondary-bg);
    border-bottom: 1px solid var(--tertiary-bg);
}

.ecosystem-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ecosystem-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.ecosystem-desc {
    text-align: left;
    margin: 0;
    max-width: none;
    color: var(--text-secondary);
}

.ecosystem-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .ecosystem-split {
        grid-template-columns: 1fr;
    }

    .ecosystem-image {
        order: 1;
        margin-bottom: 30px;
    }

    .ecosystem-content {
        order: 2;
        text-align: center;
    }

    .ecosystem-content h2,
    .ecosystem-desc {
        text-align: center;
    }
}


/* Solution Grid Section */
.solution-grid-section {
    background-color: var(--secondary-bg);
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background-color: var(--primary-bg);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--tertiary-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}

.solution-card h3 {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--primary-bg);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    width: 330px;
    text-align: center;
    border: 1px solid var(--tertiary-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card h3 {
    font-size: 1.6em;
    color: var(--text-primary);
}

.price-tag {
    font-size: 1.1em;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.price-tag span {
    font-size: 3em;
    font-weight: var(--font-weight-bold);
    color: var(--accent-orange);
    display: block;
    line-height: 1;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 0;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--tertiary-bg);
    color: var(--text-secondary);
    font-size: 0.95em;
}

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

.pricing-card.featured {
    background-color: var(--tertiary-bg);
    border-color: var(--accent-orange);
    transform: translateY(-20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured .price-tag span {
    color: var(--accent-orange);
}

.card-cta {
    width: 100%;
    margin-top: 20px;
}

.card-cta.primary {
    /* Botón destacado */
    background-color: var(--accent-orange);
}

/* Contact CTA Section */
.cta-contact-section {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--tertiary-bg);
}

/* Footer */
.main-footer {
    background-color: #000000;
    /* Negro puro para coincidir con el header */
    color: var(--text-secondary);
}

/* Acceso OPS — solo index footer, doble clic */
.footer-ops-dot {
    display: block;
    width: 11px;
    height: 11px;
    margin: 10px auto 0;
    padding: 0;
    background: #ff6600;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding-bottom: 20px;
    text-align: left;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.9em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 6px;
}

.brand-info .tagline {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85em;
    color: var(--text-muted);
}

/* Media Queries para Responsiveness */
@media screen and (max-width: 1024px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* ============================================= */
    /* MOBILE MENU — Premium Glassmorphism UI        */
    /* ============================================= */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.75) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 10000 !important;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    body.menu-active .main-nav {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .mobile-menu-content {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        padding: 100px 30px 40px !important;
        transform: translateY(20px) !important;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    body.menu-active .mobile-menu-content {
        transform: translateY(0) !important;
    }

    .mobile-nav-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: auto !important;
    }

    .main-nav .nav-link {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 2.5rem !important;
        font-weight: 700 !important;
        letter-spacing: -1px !important;
        display: block !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        opacity: 0 !important;
        transform: translateY(30px) !important;
    }

    body.menu-active .nav-link {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition-delay: calc(var(--i) * 0.12s + 0.3s) !important;
    }

    .main-nav .nav-link:active {
        opacity: 0.6 !important;
        transform: scale(0.98) !important;
    }



    /* Close button — Minimalist iOS 18 vibe */
    .mobile-nav-close {
        display: flex !important;
        position: absolute !important;
        top: 30px !important;
        right: 30px !important;
        width: 44px !important;
        height: 44px !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50% !important;
        color: #fff !important;
        font-size: 1.5rem !important;
        cursor: pointer !important;
        z-index: 10001 !important;
        transition: all 0.3s ease !important;
    }

    .mobile-nav-close:active {
        transform: scale(0.9) !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }

    .mobile-nav-footer {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 40px !important;
        opacity: 0 !important;
        transform: translateY(20px) !important;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
        transition-delay: 0.5s !important;
    }

    body.menu-active .mobile-nav-footer {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .status-pill, .wa-pill {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 16px !important;
        border-radius: 100px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        transition: all 0.3s ease !important;
    }

    .status-pill {
        background: rgba(255, 204, 0, 0.1) !important;
        color: #ffcc00 !important;
        border: 1px solid rgba(255, 204, 0, 0.3) !important;
    }

    .wa-pill {
        background: var(--accent-orange, #FF6600) !important;
        color: #ffffff !important;
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3) !important;
    }

    .status-pill:active, .wa-pill:active {
        transform: scale(0.96) !important;
    }


    /* Mobile Header Layout - Centered Group */
    .header-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 10px 20px !important;
        width: 100% !important;
    }

    /* Hamburger Button — Refined */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu-toggle span {
        display: block !important;
        width: 24px !important;
        height: 2px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .mobile-menu-toggle span:first-child { transform: translateY(-4px) !important; }
    .mobile-menu-toggle span:last-child { transform: translateY(4px) !important; }


    body.menu-active .mobile-menu-toggle {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* Logo - Centered next to Toggle */
    .logo {
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex: none !important;
        order: 2 !important;
    }

    /* Hide WhatsApp CTA on Mobile ONLY */
    .header-actions {
        display: none !important;
    }

    .logo-brand {
        font-size: 1.1rem !important;
    }

    .logo-subtext {
        display: none !important;
    }

    /* Hero & Sections - Keep mobile adaptations */
    .hero-section-authority {
        padding: 60px 0;
    }

    .hero-split-content {
        grid-template-columns: 1fr;
    }

    .hero-image-container {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-content-text {
        order: 2;
        padding-left: 0;
        text-align: center;
    }

    .certification-group {
        justify-content: center;
        flex-direction: row;
        margin-bottom: 40px;
    }

    .cert-apple-logo {
        font-size: 3em;
        margin-right: 20px;
        transform: none !important;
    }

    .cert-text-lines {
        font-size: 0.9em;
        text-align: left;
    }

    .hero-content-text h1,
    .hero-content-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }

    .hero-actions a {
        width: 100%;
        max-width: 320px;
        margin: 5px 0;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
        max-width: 360px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .brand-info {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .certification-group {
        flex-direction: column;
    }

    .cert-apple-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .cert-text-lines {
        text-align: center;
    }
}

/* MODAL STYLES (Keep existing) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    display: flex;
    width: 900px;
    max-width: 95%;
    height: 600px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

/* Modal: Lista de Servicios (Imagen) */
.services-list-modal-container {
    width: min(1100px, 95vw);
    height: auto;
    max-height: 90vh;
    background: #0f1218;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-list-modal-container .close-modal-btn {
    color: #fff;
    top: 10px;
    right: 14px;
    font-size: 34px;
}

.services-list-modal-body {
    width: 100%;
    padding: 18px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.services-list-modal-body img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Left Panel (Dark) */
.modal-left-panel {
    width: 40%;
    background-color: #0f1218;
    /* Dark blue/black */
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal-profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img-placeholder {
    width: 80px;
    height: 80px;
    background-color: #555;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    border: 2px solid #fff;
}

.modal-profile h3 {
    font-size: 1.1em;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

.modal-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.current-month {
    font-weight: bold;
    text-transform: capitalize;
}

.calendar-nav-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
}

.calendar-day-header {
    font-size: 0.7em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #aaa;
}

.calendar-day {
    padding: 8px 0;
    cursor: pointer;
    border-radius: 50%;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-day.disabled {
    color: #444;
    cursor: default;
}

.calendar-day.selected {
    background-color: var(--accent-orange);
    color: #fff;
}

.calendar-alert {
    position: absolute;
    bottom: 100px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.calendar-alert p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

/* Compatibility Section */
.compatibility-section {
    background-color: var(--primary-bg);
    /* Igual que la sección 1 (Hero) */
    border-bottom: 1px solid var(--tertiary-bg);
}

.compatibility-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compatibility-content {
    text-align: left;
}

.section-subtitle {
    display: block;
    color: var(--accent-orange);
    font-size: 1.5rem;
    /* Reducido a tamaño "mediano vistoso" */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.compatibility-content h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

.compatibility-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1em;
    /* Fuente mediana/pequeña */
    line-height: 1.7;
}

.compatibility-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .section-subtitle {
        font-size: 1.3rem;
    }

    .card-subtitle {
        font-size: 1.1rem;
    }

    .compatibility-split {
        grid-template-columns: 1fr;
    }

    .compatibility-image {
        order: 1;
        /* Imagen arriba en móvil */
        margin-bottom: 30px;
    }

    .compatibility-content {
        order: 2;
        text-align: center;
    }
}

/* OpenCore Revical Section */
.opencore-section {
    background-color: #f5f5f7;
    /* Apple Light Gray to contrast with dark/white sections */
    border-bottom: 1px solid var(--tertiary-bg);
    color: #1d1d1f;
}

.opencore-section h2 {
    color: #1d1d1f;
}

.opencore-section p {
    color: #333;
}

.opencore-section .section-subtitle {
    color: var(--accent-orange);
}

.opencore-section ul li {
    color: #333 !important;
}


/* Security & Management Section */
.security-management-section {
    background-color: var(--secondary-bg);
    /* Siguiente en secuencia (Gris oscuro) */
}

/* Grid 2 Cols Utility - Adding this as it was missing */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    background-color: var(--primary-bg);
    /* Tarjeta oscura para contraste sutil */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.security-header {
    text-align: center;
    margin-bottom: 50px;
}

.security-header h2 {
    color: var(--accent-orange);
    /* Naranja solicitado */
    font-size: 3em;
    margin-bottom: 15px;
    line-height: 1.1;
}

.security-header p {
    color: #FFFFFF;
    /* Blanco solicitado */
    font-size: 1.8em;
    font-weight: 400;
}

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

.card-image-container {
    padding: 40px;
    background-color: #f5f5f7;
    /* Fondo claro para la imagen, similar a la referencia */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.card-img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
}

.card-subtitle {
    display: block;
    color: var(--accent-orange);
    font-size: 1.2rem;
    /* Tamaño mediano equilibrado */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.info-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Acquisition Section */
.acquisition-section {
    background-color: #FFFFFF;
    /* Fondo blanco para coincidir con la imagen */
    text-align: center;
}

.acquisition-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acquisition-image-container {
    margin-bottom: 40px;
    width: 100%;
}

.acquisition-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    /* Limitar altura para que no domine demasiado */
    object-fit: contain;
}

.acquisition-text h3 {
    font-size: 2em;
    /* Título mediano */
    margin-bottom: 25px;
    color: #1A1A1C;
    /* Texto oscuro para fondo blanco */
}

.acquisition-text p {
    font-size: 1.05em;
    color: #3A3A3C;
    /* Gris oscuro para texto */
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    /* Opcional: justificado para bloques largos de texto */
    text-align-last: center;
    /* Centrar la última línea si se justifica */
}

/* Features Grid */
.acquisition-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

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

.feature-img {
    height: 60px;
    /* Ajustar según el tamaño real de los iconos */
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.feature-title {
    font-weight: var(--font-weight-bold);
    color: #1A1A1C;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.feature-desc {
    font-size: 0.9em;
    color: #3A3A3C;
    line-height: 1.5;
}

/* Apple Services Button */
.apple-services-btn {
    background-color: var(--accent-orange);
    color: white;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.apple-services-btn:hover {
    background-color: #e65c00;
    /* Un poco más oscuro al hover */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .acquisition-text p {
        text-align: left;
        /* En móvil mejor alineado a la izquierda */
        text-align-last: left;
    }

    .acquisition-features-grid {
        grid-template-columns: 1fr;
        /* Apilar en móvil */
        gap: 40px;
    }
}


/* Standards Section */
.standards-section {
    background-color: #F5F5F7;
    /* Gris claro Apple */
    overflow: hidden;
    /* Para contener imágenes si se salen */
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.standards-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* Espacio entre imágenes */
    height: auto;
    padding: 40px 0;
}

.std-img {
    object-fit: contain;
    transition: transform 0.3s ease;
}

.img-large {
    width: 360px;
    /* Triple del tamaño de la pequeña */
    height: auto;
    max-height: 360px;
}

.img-small {
    width: 120px;
    /* Base para la proporción 1:3 */
    height: auto;
    max-height: 120px;
}

.std-img:hover {
    transform: scale(1.05);
}

.badge-ios {
    display: inline-block;
    background-color: #FF2D55;
    /* Color rosa/rojo Apple para iOS */
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.standards-content h2 {
    font-size: 2.5em;
    color: #1D1D1F;
    /* Negro suave Apple */
    margin-bottom: 20px;
    line-height: 1.1;
}

.standards-content p {
    font-size: 1.1em;
    color: #1D1D1F;
    /* CORRECCIÓN: Texto más negro/oscuro */
    line-height: 1.6;
}

/* Configure Mac Section */
.configure-mac-section {
    background-color: #FFFFFF;
    /* Fondo blanco */
}

.configure-mac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.configure-mac-content h2 {
    font-size: 2.5em;
    color: #1D1D1F;
    /* Negro suave Apple */
    margin-bottom: 20px;
    line-height: 1.1;
}

.configure-mac-content p {
    font-size: 1em;
    /* Fuente más pequeñita */
    color: #000000;
    /* Negro puro como solicitado */
    line-height: 1.6;
}

.configure-mac-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imac-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .configure-mac-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .configure-mac-grid .configure-mac-content {
        order: 1;
        /* Texto primero en móvil */
    }

    .configure-mac-grid .configure-mac-image {
        order: 2;
    }
}

/* Employee Access Section */
.employee-access-section {
    background-color: #d6d6d6;
    /* Gris extraído de la imagen iphone.png */
}

.employee-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.employee-access-content h2 {
    font-size: 2.5em;
    color: #1D1D1F;
    /* Negro suave Apple */
    margin-bottom: 20px;
    line-height: 1.1;
}

.employee-access-content p {
    font-size: 1em;
    /* Fuente pequeña */
    color: #000000;
    /* Negro puro */
    line-height: 1.6;
}

/* --- Service Modes Section --- */
.service-modes-section {
    padding: 80px 0;
    background-color: var(--tertiary-bg);
    /* Alternating sequence */
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mode-card {
    background: #1c1c1e;
    /* Dark Apple Gray */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Darker shadow for depth */
    transition: transform 0.3s ease;
    color: #f5f5f7;
    /* Light text base */
    border: 1px solid #333;
    /* Subtle border for definition */
}

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

.mode-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* White text for dark bg */
    font-weight: 700;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.mode-features li {
    margin-bottom: 10px;
    color: #E0E0E0;
    /* Light gray for readability on dark  */
    font-size: 1.1rem;
    font-weight: 400;
}

.mode-features li::marker {
    color: var(--accent-green);
    /* Green checkmarks still pop */
    font-weight: bold;
}

/* --- Success Stories Section --- */
.success-stories-section {
    padding: 80px 0;
    background-color: var(--secondary-bg);
    /* Alternating sequence */
}

.success-stories-container {
    background: radial-gradient(circle at top right, rgba(255, 123, 51, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 113, 227, 0.05), transparent 40%);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.video-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 123, 51, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 123, 51, 0.1);
}

.video-card:hover::before {
    opacity: 1;
}

.video-thumbnail {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

/* Story Badges */
.story-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.story-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 255, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
    transition: all 0.4s ease;
    z-index: 5;
}

.video-card:hover .play-button {
    background: #fff;
    color: var(--accent-orange);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.video-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.video-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {

    .modes-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .mode-card {
        padding: 30px;
    }
}

.employee-access-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    /* Aumentado 80% aprox (de 450px) */
    object-fit: contain;
    transform: scale(1.2);
    /* Un extra de zoom para asegurar impacto */
}

@media (max-width: 900px) {
    .employee-access-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

/* Contact Parallax Section */
.contact-parallax-section {
    background-image: url('./images/computadoras.png');
    background-attachment: fixed;
    /* Efecto Parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    /* Altura suficiente para el efecto */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* Capa oscura para legibilidad */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.parallax-content h2 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    font-size: 1.5em;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .contact-parallax-section {
        background-attachment: scroll;
        /* Desactivar parallax en móviles por rendimiento/compatibilidad */
    }
}

@media (max-width: 900px) {
    .standards-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .standards-images {
        height: auto;
        /* Allow height to adjust */
        flex-wrap: wrap;
        /* Allow wrapping if needed */
        padding: 20px 0;
    }

    .img-large {
        width: 100%;
        /* Full width on mobile */
        max-width: 280px;
        /* Limit max width */
        height: auto;
    }

    .img-small {
        width: 30%;
        /* Proportional width */
        max-width: 100px;
        height: auto;
    }
}

.next-month-link {
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 0.9em;
}

/* Right Panel (Light) */
.modal-right-panel {
    width: 60%;
    padding: 40px;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
}

.modal-header-right {
    text-align: center;
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.7em;
    color: #888;
}

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

.step-circle {
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-bottom: 5px;
}

.step.active .step-circle {
    border-color: var(--accent-orange);
    background-color: #fff;
}

.step.active .step-label {
    color: #333;
    font-weight: bold;
}

.step-line {
    width: 100px;
    height: 1px;
    background-color: #ddd;
    margin: 0 10px 15px;
}

.logo-modal .logo-brand {
    font-size: 2em;
    color: #000 !important;
}

.duration-selector h4 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.duration-options {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
}

.duration-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background-color: #fff;
    cursor: pointer;
    border-right: 1px solid #ddd;
    font-size: 0.9em;
    transition: background-color 0.2s;
}

.duration-btn:last-child {
    border-right: none;
}

.duration-btn.active {
    background-color: #dbeafe;
    /* Light blueish gray */
    color: #333;
    font-weight: 500;
}

.availability-message {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.availability-message h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.availability-message p {
    color: #666;
    margin-bottom: 10px;
}

.email-link {
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .modal-container {
        flex-direction: column;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-left-panel,
    .modal-right-panel {
        width: 100%;
    }

    .calendar-alert {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }
}

/* --- Stacked Services Section --- */
.services-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* No gap needed as rows have padding/bg */
    margin-top: 40px;
}

.service-row {
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    border-radius: 20px;
    /* Optional: rounded corners for each block */
    margin-bottom: 30px;
    /* Space between blocks */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Alternating Backgrounds */
.service-row:nth-child(even) {
    background-color: #F5F5F7;
    /* Apple Light Gray */
}

.service-image {
    flex: 1;
    height: 400px;
    /* Fixed height for consistency */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fix for illustration/logo type images */
.service-image img.contain-img {
    object-fit: cover;
    object-position: top;
    /* Show top content of image */
    padding: 0;
    background-color: transparent;
}

.service-content {
    flex: 1;
    padding: 40px 60px;
}

.service-content h3 {
    font-size: 2.5rem;
    color: #000000;
    /* Default dark for white cards */
    margin-bottom: 10px;
    font-weight: 700;
}

.service-content h4 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-content p {
    font-size: 1.1rem;
    color: #444;
    /* Dark gray for white cards */
    margin-bottom: 30px;
    line-height: 1.6;
}

/* FORCED WHITE TEXT CONTEXT (for dark cards) */
.text-white h3,
.text-white h2,
.text-white p,
.text-white li,
.text-white strong,
.reparaciones-page .service-content h3,
.reparaciones-page .service-content p,
.reparaciones-page .service-content li,
.reparaciones-page .service-content strong {
    color: #FFFFFF !important;
}

/* Secondary forced light gray for readability */
.text-white p,
.reparaciones-page .service-content p {
    color: #E0E0E6 !important;
}

.service-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-icons span {
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-white .service-icons span,
.reparaciones-page .service-icons span,
.opencore-section .service-icons span,
.configure-mac-section .service-icons span {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* Responsive for Stacked Services */
@media (max-width: 900px) {
    .service-row {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 250px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 2rem;
    }
}

/* --- FAQ Section (Build V2.0.8) --- */
.faq-section {
    background-color: transparent;
    /* No more white background */
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
    /* CRITICAL: Remove white bg */
    border: none;
    padding: 20px 10px;
    text-align: left;
    cursor: pointer;
    outline: none;
    color: #fff;
    /* Ensure text is visible on dark */
    transition: background 0.2s ease;
    border-radius: 8px;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #f5f5f7;
    margin: 0;
    letter-spacing: -0.01em;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--accent-orange);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 10px;
}

.faq-answer p {
    color: #a1a1a6;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    /* Increased for longer answers */
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 20px;
    }
}

/* --- Mobile / iPhone Optimization (Urgent) --- */
@media (max-width: 480px) {

    /* Larger Touch Targets for iPhone */
    .cta-button {
        padding: 16px 32px !important;
        font-size: 1.1rem !important;
        width: 100%;
        display: block;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    /* Better Spacing */
    .section-padded {
        padding: 50px 0 !important;
    }

    /* Typography Adjustments */
    .hero-content-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    /* Adjust Calendar Modal for Mobile */
    .modal-container {
        height: 90vh;
        overflow-y: scroll;
    }
}



/* =========================================
   SEO Footer Styles (Refined Directory)
   ========================================= */
.seo-footer-block {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #000;
    /* Match main footer */
    padding-top: 20px;
    padding-bottom: 40px;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
    /* Subtle separation for copyright */
}

.seo-column h4 {
    color: #888;
    /* Muted header like main footer */
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-column ul li {
    margin-bottom: 8px;
    /* Tighter spacing */
}

.seo-column ul li a {
    color: #666;
    /* Muted link color */
    text-decoration: none;
    font-size: 0.8rem;
    /* Smaller, cleaner font */
    transition: color 0.2s ease;
    display: block;
    cursor: default;
    /* No hand pointer */
}

.seo-column ul li a:hover {
    color: #888;
    /* Slight color change on hover only */
    text-decoration: none;
    /* No underline */
    transform: none;
}

.disclaimer-text {
    margin-top: 25px;
    font-size: 0.65rem;
    color: #444;
    text-align: left;
    /* Aligned left usually helps readability in footers */
}

@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 cols on mobile for density */
        gap: 20px;
        text-align: left;
    }

    .disclaimer-text {
        text-align: center;
    }
}


/* Software Licenses Section - ULTRA MODERN GLASS & NEON */
.software-section {
    background: radial-gradient(circle at 50% 0%, #1a1a1e 0%, #0d1117 100%);
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.modern-software-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 30px;
    padding: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.modern-software-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Specific Glow Accents */
.modern-software-card.antivirus::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.4), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.modern-software-card.office::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.4), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.modern-software-card.windows::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.modern-software-card.others::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.4), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.modern-software-card:hover::before {
    opacity: 1;
}

.card-top {
    padding: 25px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-top i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations for Software Logos */
@keyframes float-svg {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.modern-software-card .card-top svg {
    transition: all 0.4s ease;
}

.modern-software-card:hover .card-top svg {
    animation: float-svg 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px currentColor) !important;
}

.modern-software-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.brand-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF4500;
    /* Orange Accents */
    margin-bottom: 10px;
    display: block;
}

.card-mid {
    padding: 20px 25px;
    flex-grow: 1;
}

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

.software-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.soft-name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.soft-price {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.card-bottom {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 30px 30px;
}

.modern-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.modern-btn.primary {
    background: #FF4500;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

.modern-btn.whatsapp-green {
    background: #28D146;
    color: white;
    box-shadow: 0 10px 20px rgba(40, 209, 70, 0.3);
}

.modern-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.price-value.highlight-green {
    color: #34c759;
    text-shadow: 0 0 10px rgba(52, 199, 89, 0.3);
}

.price-value.highlight-gold {
    color: #ffd60a;
    text-shadow: 0 0 10px rgba(255, 214, 10, 0.3);
}

.price-value.highlight-red {
    color: #ff3b30;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* =========================================================================
   UX / CRO GLOBAL STYLES (TIRO DE GRACIA)
   ========================================================================= */



/* Accordions (details / summary) Mobile First */
details.modern-accordion {
    background: rgba(30, 30, 32, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

details.modern-accordion summary {
    padding: 18px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    /* remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.modern-accordion summary::-webkit-details-marker {
    display: none;
}

details.modern-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

details.modern-accordion[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}

details.modern-accordion .accordion-content {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

details.modern-accordion[open] {
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}



/* Futuristic WhatsApp Button for Header */
.neon-green {
    background: rgba(37, 211, 102, 0.1) !important;
    color: #25D366 !important;
    border: 1px solid #25D366 !important;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4), inset 0 0 5px rgba(37, 211, 102, 0.2) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700 !important;
    transition: all 0.3s ease-in-out !important;
    border-radius: 8px !important;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.neon-green:hover {
    background: rgba(37, 211, 102, 0.25) !important;
    color: #25D366 !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.9), inset 0 0 15px rgba(37, 211, 102, 0.5) !important;
    border-color: #25D366 !important;
    transform: translateY(-2px) scale(1.03);
}

.neon-green svg {
    fill: currentColor;
}

/* Accordions in light sections */
.light-section details.modern-accordion {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-section details.modern-accordion summary {
    color: #000000;
}

.light-section details.modern-accordion .accordion-content {
    color: #333333;
}

@media (min-width: 769px) {
    .mobile-only-gear {
        display: none !important;
    }
}

/* --- NEW CLIENT LOGO CAROUSEL --- */
.client-trust-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
    border-top: 1px solid #f0f0f2;
    border-bottom: 1px solid #f0f0f2;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.trust-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1d1d1f;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    padding: 0 20px;
}

.trust-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: #515154;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.trust-cta-hook {
    margin-top: 50px;
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #1d1d1f;
    font-weight: 600;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-cta-hook strong {
    color: var(--primary-color);
}

.new-marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    overflow: hidden;
    padding: 50px 0 30px 0;
    margin-top: 50px;
}

.new-marquee-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll-rl 50s linear infinite;
    will-change: transform;
}

@keyframes scroll-rl {
    0% {
        transform: translate3d(0, 0, 0);
    }

    /* Precisely 11 cards * (150px width + 30px total margin) = 1980px */
    100% {
        transform: translate3d(-1980px, 0, 0);
    }
}

.client-logo-card {
    flex: 0 0 auto;
    width: 150px;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.client-logo-card img {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    margin-bottom: 10px;
    transition: 0.3s;
}

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

.client-name-label {
    font-size: 0.7rem;
    color: #a1a1a6;
    /* Apple Silver/Gray */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 5px;
}

/* =========================================================================
   iPhone Premium Overrides (max-width: 480px)
   ========================================================================= */
@media screen and (max-width: 480px) {

    /* 1. Body & HTML bounds to prevent overflowing */
    html,
    body {
        overflow-x: clip !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 15px !important;
    }

    /* 2. Hero Section Adjustments */
    .hero-section-authority {
        padding: 40px 0 !important;
    }

    .hero-split-content {
        gap: 20px !important;
    }

    .hero-image-container img {
        border-radius: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    h1 {
        font-size: clamp(1.6rem, 7vw, 2rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
        letter-spacing: -0.02em !important;
    }

    .hero-content-text p {
        font-size: 1.05rem !important;
        margin-bottom: 25px !important;
        padding: 0 5px !important;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .hero-actions .cta-button {
        width: 100% !important;
    }

    .hero-banner-promo {
        font-size: 0.8rem !important;
        padding: 8px 16px !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
    }

    .hero-banner-promo span {
        font-size: 0.75rem !important;
        padding-right: 10px !important;
        margin-right: 10px !important;
    }

    /* 3. Certification Badge Group */
    .cert-apple-logo {
        font-size: 2.5em !important;
        margin-right: 15px !important;
    }

    .cert-text-lines {
        font-size: 0.85em !important;
    }

    /* 4. Buttons (CTAs) Make them full width on iPhone */
    .hero-actions {
        padding: 0 !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 1.05rem !important;
        border-radius: 50px !important;
        /* Apple pill shape */
    }

    /* 5. Trust Section (Carousel) */
    .trust-title {
        font-size: 1.7rem !important;
        padding: 0 10px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .trust-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }

    .trust-cta-hook {
        font-size: 1.1rem !important;
        padding: 0 15px !important;
    }

    .client-logo-card img {
        height: 35px !important;
        max-width: 100px !important;
    }

    .client-logo-card {
        width: 110px !important;
        margin: 0 10px !important;
    }

    /* 6. Solutions Grid (Servicios) */
    .section-padded.solution-grid-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .solution-grid-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.15 !important;
        padding: 0 5px !important;
    }

    .solution-grid-section p {
        font-size: 1rem !important;
    }

    .certification-badge-container {
        padding: 25px 15px !important;
        flex-direction: column !important;
    }

    .certification-badge-container h3 {
        font-size: 1.3rem !important;
    }

    .certification-badge-container a {
        padding: 14px 20px !important;
        width: 100% !important;
        justify-content: center !important;
        margin-bottom: 10px !important;
    }

    .certification-badge-container div[style*="gap: 20px"] {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    /* 7. Image inside service rows */
    .service-row {
        padding: 30px 0 !important;
        margin-bottom: 15px !important;
    }

    .service-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .service-content h4 {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .service-content p {
        font-size: 0.95rem !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .service-icons {
        justify-content: center !important;
    }

    .service-content a.cta-button {
        margin: 0 auto;
        display: flex !important;
        text-align: center;
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* 8. Success Stories */
    .success-stories-section {
        padding: 40px 0 !important;
    }

    .success-stories-container h2 {
        font-size: 1.7rem !important;
        padding: 0 10px !important;
        line-height: 1.2 !important;
    }

    .success-stories-container p {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    .video-card {
        padding: 15px !important;
    }

    .video-card h4 {
        font-size: 1.2rem !important;
    }

    /* 9. Header specific fixes for mobile edge cases */
    .logo-brand {
        font-size: 1.15rem !important;
        /* Slightly smaller logo text for small iPhones */
    }

    /* 10. Reviews pill */
    .google-review-pill {
        padding: 4px 10px !important;
        font-size: 0.8rem !important;
    }

    /* FAQ Section */
    .faq-section {
        padding: 40px 0 !important;
    }

    .faq-question h3 {
        font-size: 1.1rem !important;
        padding-right: 30px !important;
        line-height: 1.3 !important;
    }

    .faq-answer p {
        font-size: 0.95rem !important;
    }

    /* Hide redundant absolute text completely on smallest displays to prevent scrolling bugs */
    p[style*="absolute"] {
        display: none !important;
    }
}
/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.floating-wa-btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-wa-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Refined Certification Badges */
.certification-badge-container {
    background: #fbfbfd;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid #e5e5e7;
}

.cert-badge {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
}

.cert-badge-dark {
    background: #48484a; /* Gris Apple Premium */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cert-badge-dark:hover {
    transform: translateY(-2px);
    background: #2d2d2f;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 107, 0, 0.4);
}

.cert-badge-orange {
    background: linear-gradient(180deg, #ff7b29 0%, #ff5c00 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(255, 92, 0, 0.2);
}

.cert-badge-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 92, 0, 0.4);
    filter: brightness(1.05);
}

.cert-badge-blue {
    background: linear-gradient(180deg, #007aff 0%, #0056b3 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

.cert-badge-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4);
    filter: brightness(1.05);
}

.cert-badge-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-badge-glass:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cert-badge-gold {
    background: linear-gradient(180deg, #d4af37 0%, #b8860b 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
}

.cert-badge-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
    filter: brightness(1.1);
}

.cert-badge-icon {
    margin-right: 14px;
    display: flex;
    align-items: center;
}

.cert-badge-text {
    text-align: left;
}

.cert-badge-title {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.cert-badge-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 1px;
    font-weight: 400;
}

.cert-badge-dark .cert-badge-title { color: #ff6b00; }
.cert-badge-dark .cert-badge-subtitle { color: rgba(255, 255, 255, 0.7); }
.cert-badge-orange .cert-badge-title { color: #fff; }
.cert-badge-orange .cert-badge-subtitle { color: rgba(255, 255, 255, 0.9); }
.cert-badge-blue .cert-badge-title { color: #fff; }
.cert-badge-blue .cert-badge-subtitle { color: rgba(255, 255, 255, 0.9); }
.cert-badge-gold .cert-badge-title { color: #fff; }
.cert-badge-gold .cert-badge-subtitle { color: rgba(255, 255, 255, 0.95); }
.cert-badge-glass .cert-badge-title { color: #1d1d1f; }
.cert-badge-glass .cert-badge-subtitle { color: #86868b; }

/* Emergency Ticker Styles */
.emergency-ticker {
    background: linear-gradient(90deg, #ff6b00, #ff3d00);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emergency-ticker a {
    color: #fff;
    text-decoration: underline;
    margin-left: 10px;
}

/* body padding managed via fixed header offset at top of file */

/* ===========================
   MOBILE / iPHONE FIXES
   Comprehensive overrides for screens <= 480px
   =========================== */

/* Fix horizontal overflow without breaking position: sticky */
html, body {
    overflow-x: clip;
    -webkit-overflow-scrolling: touch;
}

/* Safe area insets for iPhone with notch/Dynamic Island */
.main-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

@media (max-width: 480px) {

    /* Hero Section */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .hero-content,
    .hero-content-text {
        text-align: center !important;
        padding: 0 16px !important;
    }

    .hero-banner-promo {
        font-size: 0.75rem;
        padding: 6px 12px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero image: don't overflow on iPhone */
    .hero-image img,
    .hero-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }

    /* Header / Nav */
    .logo-img {
        height: 40px !important;
    }

    .logo a.logo-link {
        padding: 8px 16px !important;
    }

    .header-scrolled .logo-img {
        height: 28px !important;
    }

    .main-header .container {
        padding: 0 16px !important;
    }

    /* Service Sections */
    .service-row {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .service-image,
    .service-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .service-content {
        padding: 0 16px !important;
    }

    /* CTA Buttons */
    .cta-button,
    .btn-primary,
    .btn-whatsapp {
        width: 100% !important;
        text-align: center !important;
        font-size: 0.95rem !important;
        padding: 14px 20px !important;
    }

    /* Coverage Section */
    .coverage-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 16px;
    }

    .coverage-title {
        font-size: 1.6rem !important;
        padding: 0 16px;
    }

    .coverage-footer {
        font-size: 1rem !important;
        padding: 0 16px !important;
    }

    /* Why macWave (Trust) Section */
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 16px;
    }

    .why-macwave-section h2 {
        font-size: 1.6rem !important;
        padding: 0 16px;
    }

    /* Comparative Section */
    .comparative-container {
        padding: 24px 16px !important;
        margin: 20px 16px !important;
        width: auto !important;
    }

    .comparative-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Section Padding */
    .section-padded {
        padding: 60px 0 !important;
    }

    /* Certification Badges */
    .cert-badge,
    .cert-badge-blue,
    .cert-badge-glass {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Contact Form */
    .form-grid,
    .contact-form .form-grid {
        grid-template-columns: 1fr !important;
    }

    /* Pricing / Packages */
    .pricing-grid,
    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    /* Modal */
    .modal-content {
        width: 95vw !important;
        max-height: 90vh !important;
        overflow-y: auto;
        padding: 20px 16px !important;
    }

    /* Marquee / Ticker */
    .emergency-ticker {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}

/* iPhone-specific optimizations */
@supports (-webkit-touch-callout: none) {
  /* iPhone Safari specific styles */
  .cta-button,
  .floating-wa-btn {
    -webkit-tap-highlight-color: rgba(255, 102, 0, 0.3);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  
  /* iPhone WhatsApp buttons - más pequeños */
  .floating-wa-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 0.8rem !important;
  }
  
  .floating-wa-btn svg {
    width: 22px !important;
    height: 22px !important;
  }
  
  .cta-wa-button,
  .cta-button.primary {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    max-width: 200px !important;
  }
  
  /* Fix iPhone viewport issues */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Optimize scrolling on iPhone */
  .main-content {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}

/* iPhone notch and safe area support */
@supports (padding: max(0px)) {
  .header-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-top: max(1rem, env(safe-area-inset-top));
  }
  
  .floating-wa-btn {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }
}

/* iPhone Pro Max optimizations */
@media only screen 
  and (device-width: 428px) 
  and (device-height: 926px) 
  and (-webkit-device-pixel-ratio: 3) {
  
  .hero-title {
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
  }
  
  .cta-section {
    padding: 60px 20px !important;
  }
  
  .service-row {
    padding: 20px !important;
  }
}

/* iPhone 12/13/14 optimizations */
@media only screen 
  and (device-width: 390px) 
  and (device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3) {
  
  .hero-title {
    font-size: 2.6rem !important;
  }
  
  .nav-link {
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
  }
}

/* iPhone SE optimizations */
@media only screen 
  and (device-width: 375px) 
  and (device-height: 667px) 
  and (-webkit-device-pixel-ratio: 2) {
  
  .hero-title {
    font-size: 2.2rem !important;
  }
  
  .header-actions .cta-button {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }
}

/* iPhone Pro / Plus (390-430px range -- same grid adjustments as above) */
@media (max-width: 430px) {
    .trust-grid,
    .coverage-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Landscape iPhone (short height, wide) */
@media (max-height: 500px) and (orientation: landscape) {
    .main-header {
        padding: 10px 0 !important;
    }

    h1 {
        font-size: 1.6rem !important;
    }

    .section-padded {
        padding: 40px 0 !important;
    }
}

/* ============================================================
   ESTILOS DE TIPOGRAFÍA CALIGRÁFICA (BRUSH STYLE)
   Diseñado para el fondo negro (Modo Apple Dark)
   ============================================================ */
.brush-typography {
    font-family: 'Caveat Brush', cursive !important;
    color: #ffffff;
    line-height: 1.1;
    font-weight: 400;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brush-typography .text-line {
    display: block;
    margin-bottom: 0.15em;
}

.brush-typography .main-text {
    font-size: 1.25em; /* Ajuste para que destaque la primera línea */
}

.brush-typography .highlight-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 0.1em;
}

.brush-typography .highlight-bg {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 0%; /* Animación de crecimiento */
    height: 75%;
    background-color: #FFB900; /* #FFB900 (Apple Yellow) Sólido para que resalte en negro */
    transform: translate(-50%, -50%) rotate(-1deg) skew(-2deg);
    z-index: -1;
    border-radius: 8px 60px 10px 80px;
    animation: growHighlightBrush 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) 0.8s forwards;
}

.brush-typography .question-text {
    font-size: 0.85em; /* Ligeramente más pequeña para equilibrar */
}

.brush-typography .tagline {
    font-size: 1.1em;
    margin-top: 15px;
}

.brush-typography .underline-wrapper {
    position: relative;
    display: inline-block;
}

.brush-typography .underline-svg {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: -1;
}

.brush-typography .underline-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke: #009CDF; /* #009CDF (Apple Blue) oficial */
    animation: drawUnderlineBrush 1s ease-out 1.5s forwards;
}

/* Animaciones */
@keyframes growHighlightBrush {
    to { width: 105%; }
}

@keyframes drawUnderlineBrush {
    to { stroke-dashoffset: 0; }
}

/* Variantes de Color (Apple Vintage Palette) */
.brush-typography.color-green { color: #5EBD3E; }
.brush-typography.color-yellow { color: #FFB900; }
.brush-typography.color-orange { color: #F78200; }
.brush-typography.color-red { color: #E23838; }
.brush-typography.color-purple { color: #973999; }
.brush-typography.color-blue { color: #009CDF; }

.brush-typography .highlight-bg.bg-green  { background-color: #5EBD3E; }
.brush-typography .highlight-bg.bg-yellow { background-color: #FFB900; }
.brush-typography .highlight-bg.bg-orange { background-color: #F78200; }
.brush-typography .highlight-bg.bg-red    { background-color: #E23838; }
.brush-typography .highlight-bg.bg-purple { background-color: #973999; }
.brush-typography .highlight-bg.bg-blue   { background-color: #009CDF; }

.brush-typography .underline-path.stroke-green  { stroke: #5EBD3E; }
.brush-typography .underline-path.stroke-yellow { stroke: #FFB900; }
.brush-typography .underline-path.stroke-orange { stroke: #F78200; }
.brush-typography .underline-path.stroke-red    { stroke: #E23838; }
.brush-typography .underline-path.stroke-purple { stroke: #973999; }
.brush-typography .underline-path.stroke-blue   { stroke: #009CDF; }

/* Para fondos claros (Light Mode) */
.brush-typography.light-mode {
    color: #121e31;
    text-shadow: none;
}
.brush-typography.light-mode .highlight-bg {
    opacity: 1; /* Sólido como pidió el usuario */
}

/* Ajustes finales para el modo responsivo de la nueva tipografía */
@media (max-width: 768px) {
    .brush-typography {
        align-items: center !important;
        text-align: center !important;
    }
}

/* ============================================================
   DECORACIONES CALIGRÁFICAS (CHISPAS Y FLECHAS)
   ============================================================ */
.brush-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

/* Chispa / Spark SVG */
.decoration-spark {
    width: 40px;
    height: 40px;
}

/* Flecha / Arrow SVG */
.decoration-arrow {
    width: 60px;
    height: 40px;
}

/* Variantes de Color para Decoraciones */
.brush-decoration.color-green  { color: #5EBD3E; fill: #5EBD3E; stroke: #5EBD3E; }
.brush-decoration.color-yellow { color: #FFB900; fill: #FFB900; stroke: #FFB900; }
.brush-decoration.color-orange { color: #F78200; fill: #F78200; stroke: #F78200; }
.brush-decoration.color-red    { color: #E23838; fill: #E23838; stroke: #E23838; }
.brush-decoration.color-purple { color: #973999; fill: #973999; stroke: #973999; }
.brush-decoration.color-blue   { color: #009CDF; fill: #009CDF; stroke: #009CDF; }

/* Animación de aparición */
.brush-decoration {
    transform: scale(0);
    animation: popInDecoration 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popInDecoration {
    to { transform: scale(1); }
}

/* Posiciones específicas para que parezca "random" */
.pos-top-left     { top: -20px; left: -30px; transform: rotate(-15deg); }
.pos-top-right    { top: -15px; right: -40px; transform: rotate(10deg); }
.pos-bottom-left  { bottom: -25px; left: -20px; transform: rotate(-5deg); }
.pos-bottom-right { bottom: -10px; right: -30px; transform: rotate(20deg); }

/* Flecha curva específica */
.arrow-curved { transform: rotate(-10deg); }

/* Decoración Sonrisa / Smile */
.decoration-smile {
    width: 60px;
    height: 60px;
}

/* ACSP AUTHORITY BLOCK */
.acsp-authority-block {
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 60px 20px;
}
.acsp-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(212, 175, 55, 0.03);
    transition: transform 0.3s ease;
}
.acsp-container:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}
.acsp-badge {
    text-align: center;
    color: #d4af37;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 40px;
    flex-shrink: 0;
}
.acsp-text h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.acsp-text p {
    color: #d4af37;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}
.acsp-text .acsp-sub {
    color: #a0a0a0;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}
@media(max-width: 768px) {
    .acsp-container { flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px; }
    .acsp-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 25px; width: 100%; }
}

/* ==========================================================================
   CLONED MOCKUP THEME SYSTEM (Namespaced to avoid subpage style pollution)
   ========================================================================== */

/* Cloned Top Bar */
.cloned-topbar {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10001;
    position: relative;
}

.cloned-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cloned-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cloned-topbar-left svg {
    color: #FF6600;
}

.cloned-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cloned-topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.cloned-topbar-item:hover {
    color: #FF6600;
}

.cloned-topbar-item.whatsapp-link svg {
    color: #30D158;
}

/* Cloned Header */
/* Cloned Header */
.cloned-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pseudo-elemento para el fondo líquido (Previene el Jitter/Reflow de textos y enlaces) */
.cloned-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-bottom: 1px solid #e5e5ea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    z-index: -1;
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   ESTILOS PREMIUM DE CABECERA SCROLLED (Efecto Vidrio Flotante)
   ============================================================ */
.cloned-header.header-scrolled {
    top: 15px !important;
    padding: 10px 0 !important;
    background-color: transparent !important;
}

.cloned-header.header-scrolled::before {
    width: calc(100% - 40px);
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 1px rgba(0, 0, 0, 0.02);
}

/* Micro-interacciones de Escala en Scroll */
.cloned-header.header-scrolled .cloned-header-cta {
    padding: 10px 22px !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.15) !important;
}

.cloned-header.header-scrolled .cloned-logo-brand {
    font-size: 1.65rem !important;
}

.cloned-header.header-scrolled .cloned-logo-divider {
    height: 1.5px !important;
    margin: 2px 0 !important;
}

.cloned-header.header-scrolled .cloned-logo-sub {
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
}

.cloned-header.header-scrolled .cloned-logo-link svg {
    width: 48px !important;
    height: 26px !important;
}

/* Adaptación Responsiva de la Isla Flotante */
@media (max-width: 768px) {
    .cloned-header.header-scrolled {
        top: 10px !important;
        padding: 8px 0 !important;
    }
    
    .cloned-header.header-scrolled::before {
        width: calc(100% - 24px);
        border-radius: 16px;
    }
    
    .cloned-header.header-scrolled .cloned-logo-brand {
        font-size: 1.45rem !important;
    }
    
    .cloned-header.header-scrolled .cloned-logo-link svg {
        width: 42px !important;
        height: 22px !important;
    }
}

.cloned-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo structure */
.cloned-logo-container {
    display: flex;
    align-items: center;
}

/* Override logo-link for Cloned Header to have transparent background and dark text */
.cloned-header .logo a.logo-link {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.cloned-header .logo-brand {
    color: #1d1d1f !important;
}

.cloned-header .logo-subtext {
    color: #FF5500 !important;
}

.cloned-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.cloned-logo-text-block {
    display: flex;
    flex-direction: column;
}

.cloned-logo-brand {
    font-size: 1.85rem;
    font-weight: 900;
    color: #1d1d1f;
    line-height: 1;
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
}

.cloned-logo-brand span {
    font-weight: 300;
    color: #555555;
    margin-left: 5px;
}

.cloned-logo-divider {
    width: 28px;
    height: 2px;
    background-color: #1d1d1f;
    margin: 3px 0;
}

.cloned-logo-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Cloned Navigation */
.cloned-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.cloned-nav-link {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.cloned-nav-link:hover,
.cloned-nav-link.active {
    color: #FF6600;
}

.cloned-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6600;
    transition: width 0.3s;
}

.cloned-nav-link:hover::after,
.cloned-nav-link.active::after {
    width: 100%;
}

.cloned-header-cta {
    background-color: #FF6600;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.cloned-header-cta:hover {
    background-color: #ff7b33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Cloned Slider Section */
.cloned-slider-section {
    background-color: #FFFFFF;
    padding: 50px 0 30px;
    position: relative;
}

.cloned-slider-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.cloned-slider-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-right: 20px;
}

.cloned-slider-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-align: left;
}

.cloned-slider-heading span.orange-text {
    color: #FF6600;
}

.cloned-slider-desc {
    font-size: 1.1rem;
    color: #444446;
    line-height: 1.65;
}

.cloned-slider-desc span.orange-highlight {
    color: #FF6600;
    font-weight: 600;
}

/* Feature checklist */
.cloned-checklist {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
}

.cloned-checklist-item {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cloned-checklist-icon-wrap {
    color: #FF6600;
    flex-shrink: 0;
    margin-top: 2px;
}

.cloned-checklist-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cloned-checklist-title {
    font-size: 1rem;
    font-weight: 800;
    color: #FF6600;
}

.cloned-checklist-text {
    font-size: 0.85rem;
    color: #555558;
    line-height: 1.4;
}

/* Slider Right Container */
.cloned-slider-right {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    aspect-ratio: 1.45;
    background-color: #ffffff;
    border: 1px solid #e5e5ea;
    cursor: zoom-in;
}

.cloned-slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.cloned-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.cloned-slide.active {
    opacity: 1;
    z-index: 2;
}

.cloned-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.cloned-slider-right:hover .cloned-slide.active img {
    transform: scale(1.02);
}

/* ============================================================
   LIGHTBOX OVERLAY
   ============================================================ */
.slider-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lightboxFadeIn 0.25s ease;
}

.slider-lightbox.open {
    display: flex;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.slider-lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxScaleIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxScaleIn {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.slider-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    object-fit: contain;
    display: block;
}

.slider-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 100000;
}

.slider-lightbox-close:hover {
    background: rgba(255, 85, 0, 0.7);
    transform: scale(1.1);
}

.slider-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s;
    z-index: 100000;
}

.slider-lightbox-nav:hover {
    background: rgba(255, 85, 0, 0.7);
    transform: translateY(-50%) scale(1.08);
}

.slider-lightbox-prev { left: 20px; }
.slider-lightbox-next { right: 20px; }

.slider-lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 100000;
}

/* Slider Arrows */
.cloned-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0,0,0,0.05);
    color: #333333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cloned-slider-arrow:hover {
    background-color: #ffffff;
    color: #FF6600;
    transform: translateY(-50%) scale(1.08);
}

.cloned-slider-arrow.arrow-left {
    left: 15px;
}

.cloned-slider-arrow.arrow-right {
    right: 15px;
}

/* Slider Dots */
.cloned-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 12px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.cloned-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.cloned-slider-dot.active {
    background-color: #FF6600;
    transform: scale(1.2);
}

/* Cloned Steps Bar Section */
.cloned-steps-section {
    background-color: #FFFFFF;
    padding: 20px 0 40px;
}

.cloned-steps-container {
    background-color: #FFFFFF;
    border: 1px solid #e5e5ea;
    border-radius: 16px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.cloned-steps-wrapper-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    justify-content: space-between;
    max-width: 75%;
}

.cloned-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cloned-step-icon-wrap {
    color: #1d1d1f;
    flex-shrink: 0;
}

.cloned-step-item.whatsapp-step .cloned-step-icon-wrap {
    color: #30D158;
}

.cloned-step-text-wrap {
    display: flex;
    flex-direction: column;
}

.cloned-step-title {
    font-size: 0.95rem;
    font-weight: 900;
    color: #FF6600;
    text-transform: uppercase;
    line-height: 1.2;
}

.cloned-step-desc {
    font-size: 0.8rem;
    font-weight: 500;
    color: #555558;
    line-height: 1.2;
}

.cloned-step-arrow {
    color: #FF6600;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Free Service CTA Button */
.cloned-free-cta {
    background-color: #FF6600;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
    white-space: nowrap;
}

.cloned-free-cta:hover {
    background-color: #ff7b33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

.cloned-free-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.cloned-free-cta-sub {
    font-size: 0.65rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Cloned Apple Cert Badge */
.cloned-apple-cert {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid #e5e5ea;
    padding-left: 20px;
    color: #1d1d1f;
    min-width: 170px;
}

.cloned-apple-cert-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.cloned-apple-cert-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: #555558;
    line-height: 1.25;
}

.cloned-apple-cert-text strong {
    color: #1d1d1f;
    font-weight: 800;
}

/* Cloned Services Section */
.cloned-services-section {
    background-color: #F5F5F7;
    padding: 70px 0 85px;
    border-top: 1px solid #e5e5ea;
    border-bottom: 1px solid #e5e5ea;
}

.cloned-services-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: #FF6600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 10px;
}

.cloned-services-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.8px;
}

.cloned-services-sub {
    font-size: 1.05rem;
    color: #555558;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
    line-height: 1.5;
}

.cloned-services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cloned-service-card {
    background-color: #FFFFFF;
    border: 1px solid #e5e5ea;
    border-radius: 16px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.cloned-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 102, 0, 0.35);
}

.cloned-service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #FF6600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF6600;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.cloned-service-card:hover .cloned-service-icon-box {
    background-color: #FF6600;
    color: #FFFFFF;
}

.cloned-service-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1d1d1f;
    line-height: 1.25;
}

.cloned-service-text {
    font-size: 0.9rem;
    color: #555558;
    line-height: 1.5;
}

/* Responsive Styles for Mockup */
@media (max-width: 1100px) {
    .cloned-steps-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .cloned-steps-wrapper-inline {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 30px;
    }
    .cloned-apple-cert {
        border-left: none;
        border-top: 1px solid #e5e5ea;
        padding-left: 0;
        padding-top: 15px;
        justify-content: center;
    }
    .cloned-free-cta {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .cloned-services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cloned-slider-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cloned-slider-left {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .cloned-topbar-right {
        justify-content: center;
        width: 100%;
    }
    .cloned-topbar-left {
        justify-content: center;
        width: 100%;
    }
    .cloned-nav {
        display: none; /* We will use standard mobile navigation, or hidden for simplicity */
    }
    .cloned-checklist {
        flex-direction: column;
        gap: 15px;
    }
    .cloned-steps-wrapper-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cloned-step-arrow {
        display: none;
    }
    .cloned-services-row {
        grid-template-columns: 1fr;
    }
    .cloned-slider-heading {
        font-size: 2.2rem;
    }
}

