/**
 * NetOS Theme - Homepage Specific Styles
 * Section: Global & Reviews
 *
 * --- V17 (THE "CLEAN CRYSTAL" HYBRID) ---
 * Optimized, Deduplicated & Perfectly Paced
 */

/* ===================================================================
 * 1. GLOBAL VARIABLES & BASE STYLES
 * =================================================================== */
 :root {
    --primary-color: #ff0033;
    --panel-bg: rgba(12, 12, 24, 0.7);
    --text-color: #ffffff;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-soft: rgba(255, 0, 51, 0.3);
    --glow-intense: rgba(255, 0, 51, 0.7);
    --inner-glow: rgba(255, 0, 51, 0.15);
    --glass-panel-bg: rgba(12, 12, 24, 0.7);
    --glass-panel-blur: blur(25px);
    --glass-panel-border: rgba(255, 255, 255, 0.1);
}

/* ===================================================================
 * 2. GLOBAL HOMEPAGE STYLES & VERTICAL RHYTHM
 * =================================================================== */
.homepage-cyber .cyber-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .homepage-cyber .cyber-container {
        padding: 0 60px; /* Massive, luxurious breathing room on the sides */
    }
}

@media (min-width: 1300px) {
    .homepage-cyber .cyber-container {
        padding: 0 20px; /* Locks it in once the screen gets super huge */
    }
}

/* * The Master Section Spacing 
 * This replaces all the individual padding: 60px rules!
 */
.homepage-cyber section {
    padding: 80px 0; /* Universal Desktop Padding */
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.homepage-cyber section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================================
 * 3. ELEGANT CYBER LUXE TITLE
 * =================================================================== */
.section-header-cyber {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 10;
}

.section-header-cyber .cyber-glitch-text {
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
    line-height: 1.1;
    color: var(--text-color);
    display: inline-block;
    padding: 20px 38px;
    border-radius: 16px;
    background: var(--panel-bg);
    backdrop-filter: blur(25px) contrast(1.2);
    -webkit-backdrop-filter: blur(25px) contrast(1.2);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.6),
                 inset 0 1px 0 rgba(255, 255, 255, 0.12),
                 inset 0 -1px 0 rgba(0, 0, 0, 0.15),
                 0 0 22px var(--inner-glow);
    text-shadow: 0 0 10px var(--glow-soft),
                 0 0 22px var(--glow-intense);
    animation: luxe-pulse 6s ease-in-out infinite alternate;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header-cyber .cyber-glitch-text:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.7),
                 inset 0 1px 0 rgba(255, 255, 255, 0.18),
                 inset 0 -1px 0 rgba(0, 0, 0, 0.2),
                 0 0 36px rgba(255, 0, 51, 0.35);
    text-shadow: 0 0 14px rgba(255, 0, 51, 0.8),
                 0 0 32px rgba(255, 0, 51, 0.6);
}

.section-header-cyber .cyber-underline {
    display: block;
    width: 56%;
    max-width: 400px;
    height: 2.5px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.6), transparent);
    border-radius: 2px;
    filter: drop-shadow(0 0 3px rgba(255, 0, 51, 0.4));
    position: relative;
    overflow: hidden;
}

.section-header-cyber .cyber-underline::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.5;
    transform: translateX(-100%);
    animation: scanline 3.5s ease-out infinite;
}

.section-header-cyber .section-subtitle {
    margin-top: 16px;
    font-size: 0.95rem;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Saira', 'Rajdhani', sans-serif;
    opacity: 0.9;
}

/* ===================================================================
 * 4. REVIEWS SECTION
 * =================================================================== */
 .reviews-container {
    background: var(--panel-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* ✨ THE FULLSCREEN BREAKOUT MAGIC ✨ */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0; /* Removed for edge-to-edge perfection */
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    
    padding: 50px 20px;
    margin-top: 40px; /* Space between title and the box */
    
    position: relative;
    z-index: 5;
    box-shadow: inset 0 0 20px rgba(255, 0, 51, 0.1),
                 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: review-pulse 8s ease-in-out infinite alternate;
}

.reviews-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0; /* Match the edge-to-edge look */
    pointer-events: none;
    background: linear-gradient(45deg,
                 rgba(255, 0, 51, 0.1) 0%,
                 rgba(0, 255, 255, 0.1) 50%,
                 rgba(255, 0, 51, 0.1) 100%);
    filter: blur(10px);
    opacity: 0.7;
    z-index: -1;
}

.reviews-container .trustindex-widget {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Keeps the actual review cards centered so they don't stretch forever on massive screens */
    max-width: 1400px; 
    margin: 0 auto;
}

.reviews-container .trustindex-widget .review-card {
    background: rgba(20, 20, 40, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
    min-width: 250px;
}

.reviews-container .trustindex-widget .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 51, 0.2);
    border-color: rgba(255, 0, 51, 0.3);
}

/* ===================================================================
 * 5. HOMEPAGE FILTERED SHELF SECTION
 * =================================================================== */
.cyber-home-shelf-section {
    margin: 0 20px;
}

.cyber-home-shelf-section .section-header-cyber {
    margin-bottom: 25px;
}

.cyber-home-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: end;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.filter-group label {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.cyber-mini-select {
    background: rgba(20, 20, 40, 0.8);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cyber-mini-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-soft);
}

.cyber-mini-select:hover {
    background: rgba(30, 30, 60, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.cyber-reset-btn.mini {
    background: rgba(255, 0, 51, 0.2);
    color: white;
    border: 1px solid rgba(255, 0, 51, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
}

.cyber-reset-btn.mini:hover {
    background: rgba(255, 0, 51, 0.3);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-soft);
}

/* ===================================================================
 * 6. HOMEPAGE SHELF GRID & PRODUCT CARDS
 * =================================================================== */
.cyber-home-shelf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cyber-home-product-card {
    background: var(--glass-panel-bg);
    backdrop-filter: var(--glass-panel-blur);
    -webkit-backdrop-filter: var(--glass-panel-blur);
    border: 1px solid var(--glass-panel-border);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: cardSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

.cyber-home-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--badge-glow, var(--primary-color));
    box-shadow: 0 10px 25px rgba(255, 0, 51, 0.2);
    filter: brightness(1.05);
}

.cyber-home-product-card .product-image {
    padding: 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    flex-shrink: 0;
    position: relative;
}

.cyber-home-product-card .product-image img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
    margin: 0 auto;
}

.cyber-home-product-card .product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.cyber-home-product-card .home-product-title a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

.cyber-home-product-card .home-product-title a:hover {
    color: var(--badge-glow, var(--primary-color));
}

.cyber-home-product-card .product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

.cyber-home-product-card .spec-item {
    background: rgba(255,255,255,0.05);
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.cyber-home-product-card .product-price {
    color: var(--badge-glow, var(--primary-color));
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px 0;
    font-family: var(--font-display, 'Rajdhani', sans-serif);
}

.cyber-home-product-card .product-actions {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    margin-top: auto;
    width: 100%;
    padding: 0 15px 15px;
}

.cyber-home-product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.cyber-home-product-card .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--badge-glow, var(--primary-color));
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: auto;
    font-family: var(--font-display, 'Rajdhani', sans-serif);
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    width: 100%;
    box-sizing: border-box;
    transform: scale(0.95);
    opacity: 0.8;
}

.cyber-home-product-card:hover .whatsapp-btn {
    transform: scale(1);
    opacity: 1;
    background: var(--badge-glow, var(--primary-color));
    color: black;
    box-shadow: 0 5px 15px var(--badge-glow, rgba(255, 0, 51, 0.3));
    transform: translateY(-2px);
}

.cyber-home-product-card .out-of-stock {
    position: static;
    background: rgba(0,0,0,0.7);
    color: #ff6b6b;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 15px 15px;
}

.cyber-home-product-card .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px var(--badge-glow, rgba(255, 0, 51, 0.6));
    z-index: 10;
    pointer-events: none;
    font-family: 'Oswald', sans-serif;
}

.cyber-home-product-card h3 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: inherit;
}

.cyber-home-product-card h3 a {
    color: inherit;
    text-decoration: none;
}

/* ===== HOMEPAGE SHELF RESULTS COUNT ===== */
.results-count {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 20px;
    margin: 40px auto 0;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ===================================================================
 * 7. ANIMATIONS
 * =================================================================== */
@keyframes cardSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes luxe-pulse {
    0%   { text-shadow: 0 0 8px var(--glow-soft), 0 0 18px var(--glow-intense); box-shadow: 0 10px 36px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 20px var(--inner-glow); }
    100% { text-shadow: 0 0 12px var(--glow-soft), 0 0 26px var(--glow-intense); box-shadow: 0 10px 36px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.16), 0 0 28px rgba(255,0,51,0.25); }
}

@keyframes scanline {
    0%   { transform: translateX(-100%); opacity: 0; }
    50%  { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes review-pulse {
    0%   { box-shadow: inset 0 0 20px rgba(255, 0, 51, 0.1), 0 8px 32px rgba(0, 0, 0, 0.4); }
    100% { box-shadow: inset 0 0 20px rgba(255, 0, 51, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5); }
}

/* ===================================================================
 * 8. HOMEPAGE SHELF PAGINATION
 * =================================================================== */
.home-pagination-wrapper {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.home-pagination-wrapper .cyber-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px;
}

.home-pagination-wrapper .page-number,
.home-pagination-wrapper .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    background: rgba(30, 30, 45, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Rajdhani', 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-pagination-wrapper .page-number {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.home-pagination-wrapper .page-number:hover:not(.current):not(:disabled) {
    border-color: var(--primary-color);
    color: white;
    background: rgba(255, 0, 51, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 51, 0.2);
}

.home-pagination-wrapper .page-number.current {
    background: linear-gradient(135deg, var(--primary-color), rgba(255, 0, 51, 0.7));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: default;
    font-weight: 700;
    animation: pagination-pulse 2s ease-in-out infinite;
}

.home-pagination-wrapper .page-number:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(20, 20, 30, 0.5);
}

.home-pagination-wrapper .dots {
    background: transparent;
    border: none;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
    font-size: 1.2rem;
    padding: 0 5px;
}

@keyframes pagination-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 51, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50%      { box-shadow: 0 0 25px rgba(255, 0, 51, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

.home-pagination-wrapper .page-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.home-pagination-wrapper .page-number:active::before {
    width: 100px;
    height: 100px;
}

.home-pagination-wrapper.loading {
    opacity: 0.5;
    pointer-events: none;
}

.home-pagination-wrapper.loading .page-number {
    cursor: wait;
}

/* ===================================================================
 * 9. SERVICE CARD (FLIPPABLE)
 * =================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    perspective: 1000px; 
    position: relative;
    width: 100%;
    height: 380px; 
    cursor: pointer;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    display: flex; 
    flex-direction: column;
    background: var(--glass-panel-bg);
    backdrop-filter: var(--glass-panel-blur);
    -webkit-backdrop-filter: var(--glass-panel-blur);
    border: 1px solid var(--glass-panel-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px var(--inner-glow);
}

.card-back {
    transform: rotateY(180deg);
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 51, 51, 0.85), rgba(0, 20, 20, 0.95));
    border-color: var(--primary-color);
    text-align: left;
}

.card-back .back-content { width: 100%; color: var(--text-color); }
.card-back h3 { margin-bottom: 10px; color: var(--primary-color); }
.card-back ul { list-style: none; padding: 0; margin: 15px 0; }
.card-back li { font-size: 0.9rem; line-height: 1.6; font-family: 'Saira', sans-serif; color: rgba(255, 255, 255, 0.8); }
.card-back li i { color: #00ffcc; margin-right: 8px; }

.card-back .cyber-button-mini {
    display: inline-block;
    padding: 8px 15px;
    margin-top: 15px;
    background: var(--primary-color);
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.card-back .cyber-button-mini:hover {
    background: #fff;
    box-shadow: 0 0 15px var(--glow-intense);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-panel-border);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-front:hover .service-image {
    transform: scale(1.05);
}

.service-info {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-align: center;
    flex-grow: 1;
}

.service-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: var(--text-color);
}

.service-info .service-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card:hover .service-info h3,
.service-card:hover .service-info .service-subtitle {
    color: white;
    text-shadow: 0 0 8px var(--glow-intense);
}

/* ===================================================================
 * 10. SOPORTE PYMES SECTION
 * =================================================================== */
.pymes-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.pymes-card-panel {
    flex: 1;
    background: var(--glass-panel-bg);
    backdrop-filter: var(--glass-panel-blur);
    border: 1px solid var(--glass-panel-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pymes-card-panel h3.cyber-glitch-text-small {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.pymes-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.pymes-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.pymes-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
    text-shadow: 0 0 10px var(--glow-soft);
}

.pymes-feature h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

.pymes-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 3px 0 0 0;
}

.pymes-image-section {
    flex: 1;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-panel-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pymes-placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cyber-button.pymes-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    background: var(--primary-color);
    color: black;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.cyber-button.pymes-cta:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-intense);
    transform: translateY(-2px) scale(1.01);
}

/* ===================================================================
 * 11. WHY CHOOSE US SECTION
 * =================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-card {
    background: var(--panel-bg);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 30px;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateX(5px);
    border-left-color: #00ffcc;
    box-shadow: 0 4px 20px rgba(255, 0, 51, 0.2);
}

.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 51, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px var(--glow-soft);
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.why-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ===================================================================
 * 12. VIDEO GALLERY / EXPERTISE SECTION
 * =================================================================== */
.cyber-expertise-section {
    background: rgba(0, 0, 0, 0.2);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background: #0a0a14;
    border: 2px solid rgba(0, 170, 255, 0.3);
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    border-color: rgba(0, 170, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 3rem;
    color: #ff0033;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 0, 51, 0.6));
}

.video-thumbnail:hover .play-overlay { background: rgba(0, 0, 0, 0.6); }
.video-thumbnail:hover .play-overlay i { font-size: 3.5rem; opacity: 1; filter: drop-shadow(0 0 20px rgba(255, 0, 51, 0.9)); }

.video-info { padding: 15px; }
.video-info h3 { font-weight: 700; font-size: 1.1rem; color: #00aaff; margin: 0 0 5px 0; }
.video-info p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); line-height: 1.4; margin: 0; }

/* ===================================================================
 * 13. ETHEREAL GLASS VIDEO MODAL
 * =================================================================== */
#video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

#video-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1;
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: 90vw;
    max-width: 900px;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: etherealAppear 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 0;
}

.video-modal-close:hover {
    background: rgba(255, 0, 51, 0.3);
    border-color: rgba(255, 0, 51, 0.8);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.8);
}

.video-embed-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes etherealAppear {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* ===================================================================
 * 14. LOCATIONS & SCHEDULES SECTION
 * =================================================================== */
.locations-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.location-card {
    background: var(--panel-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
}

.location-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0 0 15px 0;
    text-shadow: 0 0 5px var(--glow-soft);
}

.location-map-placeholder {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid var(--glass-border);
}

.location-map-placeholder iframe { display: block; }
.location-details p { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; margin: 5px 0; display: flex; align-items: center; }
.location-details i { color: #00ffcc; margin-right: 10px; font-size: 1.1rem; }
.location-details a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; }
.location-details a:hover { color: white; }

.location-schedule {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.location-schedule h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-table-inline { width: 100%; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; border-collapse: collapse; }
.schedule-table-inline td { padding: 4px 0; }
.schedule-table-inline td:last-child { text-align: right; color: white; font-weight: 500; }

/* ===================================================================
 * 15. SIMPLE SCHEDULE TABLE SECTION
 * =================================================================== */
.schedule-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.schedule-card {
    background: rgba(20, 20, 40, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px 30px;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.day-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.open { background: rgba(0, 255, 0, 0.2); color: #00ff00; border: 1px solid #00ff00; }
.status-badge.closed { background: rgba(255, 0, 51, 0.2); color: var(--primary-color); border: 1px solid var(--primary-color); }
.time-slot { font-size: 1.3rem; font-family: 'Orbitron', sans-serif; color: var(--primary-color); font-weight: 500; }
.current-status { text-align: center; margin-top: 40px; }

/* MERGED STATUS INDICATOR CLASSES */
.status-indicator {
    display: inline-flex;
    align-items: center;
    background: var(--panel-bg);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--inner-glow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.status-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.status-indicator.open {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.status-indicator.open::before {
    content: '●';
    margin-right: 10px;
    font-size: 1.2rem;
    animation: blinkGreen 1.5s infinite;
}

.status-indicator.closed {
    background: rgba(255, 0, 51, 0.15);
    color: #ff0033;
    border-color: #ff0033;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
}

.status-indicator.closed::before {
    content: '●';
    margin-right: 10px;
    font-size: 1.2rem;
    animation: blinkRed 2s infinite;
}

@keyframes blinkGreen {
    0%, 100% { text-shadow: 0 0 5px #00ff88; opacity: 1; }
    50%      { text-shadow: 0 0 20px #00ff88; opacity: 0.5; }
}

@keyframes blinkRed {
    0%, 100% { text-shadow: 0 0 5px #ff0033; opacity: 1; }
    50%      { text-shadow: 0 0 20px #ff0033; opacity: 0.5; }
}

/* ===================================================================
 * 16. GAMING BAJO IMPORTACIÓN
 * =================================================================== */
.gi-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    padding: 0 8px;
}

.gi-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gi-trust-pill i {
    font-size: 0.82rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--glow-soft);
    flex-shrink: 0;
}

.gi-trust-pill:hover {
    border-color: rgba(255, 0, 51, 0.35);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 0, 51, 0.15);
    transform: translateY(-2px);
}

.gi-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.gi-product-card {
    background: var(--glass-panel-bg);
    backdrop-filter: var(--glass-panel-blur);
    -webkit-backdrop-filter: var(--glass-panel-blur);
    border: 1px solid var(--glass-panel-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                0 0 20px var(--inner-glow);
}

.gi-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 51, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.12),
                0 0 32px rgba(255, 0, 51, 0.2);
}

@media (min-width: 992px) {
    .gi-product-card {
        display: grid;
        grid-template-columns: 45% 55%;
        align-items: stretch;
    }
}

.gi-card-media {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-panel-border);
    position: relative;
}

@media (min-width: 992px) {
    .gi-card-media {
        border-bottom: none;
        border-right: 1px solid var(--glass-panel-border);
    }
}

.gi-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00ff88;
    backdrop-filter: blur(10px);
}

.gi-pulse {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 6px #00ff88;
    flex-shrink: 0;
    animation: gi-blink 2s ease-in-out infinite;
}

.gi-card-stage {
    position: relative;
    width: 100%;
    height: auto; 
    min-height: 350px;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-grow: 1;
}

@media (min-width: 992px) {
    .gi-card-stage { min-height: 450px; }
}

.gi-card-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.gi-card-glow--blue {
    width: 300px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0, 140, 255, 0.08) 0%, transparent 70%);
    animation: gi-glow-breathe 5s ease-in-out infinite alternate;
}

@keyframes gi-glow-breathe {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

.gi-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gi-card-placeholder i { font-size: 3rem; color: rgba(255, 255, 255, 0.05); }

/* MERGED HERO IMAGE FIX */
.gi-card-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 32px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(0, 170, 255, 0.3));
    animation: gi-bounce-glow 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-play-state: paused;
}

.gi-card-img.gi-loaded {
    opacity: 1;
    animation-play-state: running;
}

/* SINGLE KEYFRAME FOR BOUNCE GLOW */
@keyframes gi-bounce-glow {
    0%, 100% { 
        transform: translateY(0px); 
        filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(0, 170, 255, 0.3));
    }
    50% { 
        transform: translateY(-12px);
        filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 45px rgba(0, 170, 255, 0.8)); 
    }
}

.gi-card-thumbs {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    z-index: 5;
}

.gi-card-thumb {
    width: 52px;
    height: 36px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: border-color 0.25s ease;
    flex-shrink: 0;
}

.gi-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.55;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gi-card-thumb:hover { border-color: rgba(255, 255, 255, 0.25); }
.gi-card-thumb:hover img { opacity: 0.85; transform: scale(1.06); }
.gi-card-thumb.is-active { border-color: var(--primary-color); box-shadow: 0 0 8px var(--glow-soft); }
.gi-card-thumb.is-active img { opacity: 1; }

.gi-card-thumb.is-active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 4px var(--primary-color);
}

.gi-card-body { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.gi-card-eyebrow { display: flex; align-items: center; gap: 8px; }
.gi-card-brand { font-family: 'Orbitron', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.3); }
.gi-card-sep { color: rgba(255, 255, 255, 0.15); }
.gi-card-model { font-family: 'Rajdhani', monospace; font-size: 0.6rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.2); }

.gi-card-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.gi-card-name-sub { font-family: 'Orbitron', sans-serif; font-weight: 300; font-size: 0.38em; color: rgba(255, 0, 51, 0.7); vertical-align: super; letter-spacing: 1px; margin-left: 4px; }

.gi-card-stats {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.gi-card-stat { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 8px; gap: 2px; text-align: center; transition: background 0.25s ease; }
.gi-card-stat:hover { background: rgba(255, 0, 51, 0.05); }
.gi-card-stat-label-top { font-family: 'Saira', sans-serif; font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-color); opacity: 0.8; margin-bottom: 4px; }
.gi-card-stat-val { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.05rem; color: #ffffff; line-height: 1; letter-spacing: -0.3px; }
.gi-card-stat-val sup { font-size: 0.55em; font-weight: 400; color: var(--primary-color); vertical-align: super; }
.gi-card-stat-lbl { font-family: 'Saira', sans-serif; font-size: 0.6rem; color: rgba(255, 255, 255, 0.35); text-transform: uppercase; letter-spacing: 0.5px; }
.gi-card-stat-div { width: 1px; background: var(--glass-border); flex-shrink: 0; margin: 10px 0; }

.gi-card-specs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--glass-border); border-radius: 10px; overflow: hidden; }
.gi-card-spec { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); transition: background 0.2s ease; }
.gi-card-spec:last-child { border-bottom: none; }
.gi-card-spec:hover { background: rgba(255, 255, 255, 0.02); }
.gi-card-spec--hi { background: rgba(255, 0, 51, 0.03); }
.gi-card-spec--hi:hover { background: rgba(255, 0, 51, 0.06); }
.gi-card-spec > i { width: 14px; text-align: center; font-size: 0.72rem; color: rgba(255, 255, 255, 0.2); flex-shrink: 0; }
.gi-card-spec--hi > i { color: var(--primary-color); text-shadow: 0 0 6px var(--glow-soft); }

.gi-card-spec-key { font-family: 'Rajdhani', sans-serif; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255, 255, 255, 0.3); flex-shrink: 0; width: 110px; }
.gi-card-spec-val { font-family: 'Rajdhani', sans-serif; font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.75); display: flex; align-items: center; flex-wrap: wrap; gap: 5px; margin-left: auto; text-align: right; }
.gi-card-spec--hi .gi-card-spec-val { color: rgba(255, 255, 255, 0.95); }

.gi-badge { font-style: normal; font-family: 'Rajdhani', sans-serif; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 2px 6px; border-radius: 4px; background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); }
.gi-badge--red { background: rgba(255, 0, 51, 0.12); color: rgba(255, 60, 80, 0.9); border-color: rgba(255, 0, 51, 0.25); }
.gi-badge--blue { background: rgba(0, 140, 255, 0.12); color: rgba(0, 170, 255, 0.9); border-color: rgba(0, 140, 255, 0.25); }

.gi-chip { display: inline-flex; align-items: center; gap: 3px; padding: 2px 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); font-family: 'Rajdhani', sans-serif; font-size: 0.68rem; font-weight: 600; color: rgba(255, 255, 255, 0.5); white-space: nowrap; }
.gi-chip i { font-size: 0.58rem; color: var(--primary-color); }

.gi-card-cta { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(37, 211, 102, 0.06); border: 1.5px solid rgba(37, 211, 102, 0.2); border-radius: 12px; text-decoration: none; transition: all 0.3s ease; margin-top: 4px; }
.gi-card-cta:hover { background: rgba(37, 211, 102, 0.12); border-color: rgba(37, 211, 102, 0.45); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.12); }
.gi-cta-wa-icon { font-size: 1.6rem; color: #25d366; flex-shrink: 0; }
.gi-cta-text-block { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.gi-cta-text-block strong { font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #ffffff; }
.gi-cta-text-block small { font-family: 'Saira', sans-serif; font-size: 0.68rem; color: rgba(255, 255, 255, 0.35); }
.gi-cta-arrow-icon { color: rgba(37, 211, 102, 0.4); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.3s ease, color 0.3s ease; }
.gi-card-cta:hover .gi-cta-arrow-icon { transform: translateX(5px); color: #25d366; }

.gi-how-wrapper { background: var(--glass-panel-bg); backdrop-filter: var(--glass-panel-blur); -webkit-backdrop-filter: var(--glass-panel-blur); border: 1px solid var(--glass-panel-border); border-radius: 16px; padding: 32px; margin-bottom: 24px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
.gi-how-title { font-family: 'Rajdhani', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: rgba(255, 255, 255, 0.4); margin: 0 0 28px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; }
.gi-how-title i { color: var(--primary-color); font-size: 0.9rem; text-shadow: 0 0 8px var(--glow-soft); }
.gi-how-steps { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; row-gap: 16px; }
.gi-how-step { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform 0.3s ease; }
.gi-how-step:hover { transform: translateY(-4px); }
.gi-how-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }
.gi-how-icon i { font-size: 1.1rem; color: rgba(255, 255, 255, 0.35); transition: all 0.3s ease; }
.gi-how-step:hover .gi-how-icon { background: rgba(255, 0, 51, 0.08); border-color: rgba(255, 0, 51, 0.3); box-shadow: 0 4px 16px rgba(255, 0, 51, 0.15); }
.gi-how-step:hover .gi-how-icon i { color: var(--primary-color); text-shadow: 0 0 8px var(--glow-soft); }
.gi-how-step--final .gi-how-icon { background: rgba(0, 255, 136, 0.06); border-color: rgba(0, 255, 136, 0.2); }
.gi-how-step--final .gi-how-icon i { color: #00ff88; }
.gi-how-step--final:hover .gi-how-icon { background: rgba(0, 255, 136, 0.12); border-color: rgba(0, 255, 136, 0.4); box-shadow: 0 4px 16px rgba(0, 255, 136, 0.15); }
.gi-how-step > span { font-family: 'Rajdhani', sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255, 255, 255, 0.3); text-align: center; max-width: 72px; line-height: 1.3; transition: color 0.3s ease; }
.gi-how-step:hover > span { color: rgba(255, 255, 255, 0.65); }
.gi-how-step--final > span { color: rgba(0, 255, 136, 0.5); }
.gi-how-arrow { padding: 0 10px; padding-bottom: 22px; flex-shrink: 0; }
.gi-how-arrow i { font-size: 0.7rem; color: rgba(255, 255, 255, 0.1); animation: gi-arrow-pulse 2.5s ease-in-out infinite; }
.gi-how-arrow:nth-of-type(2) i { animation-delay: 0s;   }
.gi-how-arrow:nth-of-type(4) i { animation-delay: 0.6s; }
.gi-how-arrow:nth-of-type(6) i { animation-delay: 1.2s; }
.gi-how-arrow:nth-of-type(8) i { animation-delay: 1.8s; }

@keyframes gi-arrow-pulse {
    0%, 100% { color: rgba(255, 255, 255, 0.08); }
    50%      { color: rgba(255, 0, 51, 0.5);    }
}

.gi-coming-panel { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; background: var(--panel-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-left: 3px solid var(--primary-color); border-radius: 12px; flex-wrap: wrap; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
.gi-coming-panel:hover { border-color: rgba(255, 0, 51, 0.4); box-shadow: 0 4px 20px rgba(255, 0, 51, 0.15); }
.gi-coming-left { display: flex; align-items: center; gap: 16px; }
.gi-coming-icon { font-size: 1.8rem; color: var(--primary-color); text-shadow: 0 0 10px var(--glow-soft); flex-shrink: 0; }
.gi-coming-title { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: white; margin: 0 0 4px; }
.gi-coming-sub { font-family: 'Saira', sans-serif; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); margin: 0; line-height: 1.4; }

.gi-coming-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--primary-color); color: black; border-radius: 8px; text-decoration: none; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.8px; transition: all 0.3s ease; white-space: nowrap; flex-shrink: 0; }
.gi-coming-cta i { font-size: 1rem; color: black; }
.gi-coming-cta:hover { background: white; color: var(--primary-color); box-shadow: 0 0 20px var(--glow-intense); transform: translateY(-2px); }
.gi-coming-cta:hover i { color: var(--primary-color); }

/* ===================================================================
 * 17. RESPONSIVE DESIGN (Grouped)
 * =================================================================== */

/* Tablet & Smaller Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .cyber-home-shelf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .gi-product-grid { grid-template-columns: 1fr; }
    .pymes-content-wrapper { flex-direction: column; }
}

/* Mobile Devices */
@media (max-width: 768px) {
    
    /* Global Mobile Spacing */
    .homepage-cyber section { padding: 50px 0; }

    /* Headers */
    .section-header-cyber .cyber-glitch-text { font-size: 1.85rem; padding: 18px 30px; letter-spacing: 2.5px; }
    .section-header-cyber .cyber-underline { width: 68%; height: 2px; }
    .section-header-cyber .section-subtitle { font-size: 0.9rem; letter-spacing: 1.6px; }
    
    /* Layout Adjustments */
    .reviews-container { padding: 20px; margin-top: 20px; }
    .reviews-container .trustindex-widget { gap: 15px; }
    .reviews-container .trustindex-widget .review-card { min-width: 200px; padding: 15px; }
    
    .cyber-home-shelf-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
    .cyber-home-product-card { min-height: 280px; }
    .cyber-home-product-card .product-image img { max-width: 250px; height: 180px; }
    .cyber-home-product-card .home-product-title a { font-size: 0.9rem; min-height: 2.4rem; }
    .cyber-home-product-card .product-price { font-size: 1.1rem; }
    .cyber-home-product-card .spec-item { font-size: 0.65rem; padding: 2px 5px; }
    .cyber-home-product-card .whatsapp-btn { font-size: 0.75rem; padding: 8px 12px; }
    .cyber-home-product-card .product-actions, .cyber-home-product-card .out-of-stock { padding: 0 12px 12px; }

    .home-pagination-wrapper { margin-top: 30px; margin-bottom: 15px; }
    .home-pagination-wrapper .page-number, .home-pagination-wrapper .dots { min-width: 36px; height: 36px; font-size: 0.85rem; }
    .home-pagination-wrapper .cyber-pagination { gap: 6px; padding: 8px; }

    .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .service-card { height: 350px; }
    .service-image-wrapper { height: 65%; }
    .service-info h3 { font-size: 1.1rem; }
    .service-info .service-subtitle { font-size: 0.85rem; }
    .card-back { padding: 15px; }

    .pymes-card-panel { padding: 25px; }
    .pymes-feature i { font-size: 1.6rem; }

    .gi-trust-bar { gap: 8px; }
    .gi-trust-pill { font-size: 0.72rem; padding: 6px 12px; }
    .gi-card-stage { max-width: 100%; height: auto; }
    .gi-card-body { padding: 18px; gap: 14px; }
    .gi-card-name { font-size: 1.8rem; }
    .gi-card-spec-key { width: 90px; }
    .gi-how-wrapper { padding: 24px 16px; }
    .gi-how-arrow { display: none; }
    .gi-how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; justify-items: center; }
    .gi-how-step--final { grid-column: 1 / -1; }
    .gi-coming-panel { flex-direction: column; align-items: flex-start; gap: 16px; }
    .gi-coming-cta { width: 100%; justify-content: center; }
}

/* Small mobile */
@media (max-width: 480px) {
    .home-pagination-wrapper .page-number, .home-pagination-wrapper .dots { min-width: 32px; height: 32px; font-size: 0.8rem; padding: 0 6px; }
    .home-pagination-wrapper .cyber-pagination { gap: 5px; }
    
    .gi-trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 32px; }
    .gi-trust-pill { justify-content: center; font-size: 0.72rem; padding: 8px 10px; border-radius: 8px; white-space: normal; text-align: center; }

    .gi-card-eyebrow { flex-wrap: wrap; row-gap: 4px; }
    .gi-card-brand,
    .gi-card-model { font-size: 0.7rem; letter-spacing: 1.5px; }
    .gi-card-name { font-size: 2.05rem; line-height: 0.96; letter-spacing: -0.6px; }
    .gi-card-name-sub { font-size: 0.28em; margin-left: 6px; }
    
    .gi-card-stats { flex-direction: column; }
    .gi-card-stat-div { width: 50%; height: 1px; margin: 0 auto; }
    .gi-card-stat { flex-direction: row; justify-content: space-between; padding: 12px 16px; text-align: left; gap: 8px; }
    .gi-card-stat-label-top { font-size: 0.65rem; margin-bottom: 0; min-width: 90px; }
    .gi-card-stat-val { font-size: 1.15rem; }
    .gi-card-stat-lbl { text-align: right; font-size: 0.66rem; max-width: 78px; line-height: 1.2; }

    .gi-card-spec {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: start;
        column-gap: 10px;
        row-gap: 4px;
        padding: 12px 14px;
    }

    .gi-card-spec > i {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 18px;
        margin-top: 2px;
    }

    .gi-card-spec-key {
        grid-column: 2;
        width: auto;
        font-size: 0.68rem;
        letter-spacing: 0.9px;
    }

    .gi-card-spec-val {
        grid-column: 2;
        margin-left: 0;
        justify-content: flex-start;
        text-align: left;
        font-size: 1rem;
        line-height: 1.3;
        gap: 6px;
    }

    .gi-badge,
    .gi-chip { font-size: 0.72rem; }

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

/* ===================================================================
 * 18. MOBILE POLISH PASS
 * Senior-level cleanup for density, hierarchy, and spacing.
 * =================================================================== */
@media (max-width: 768px) {
    .homepage-cyber .cyber-container {
        padding: 0 18px;
    }

    .homepage-cyber section {
        padding: 42px 0;
    }

    .section-header-cyber {
        margin-bottom: 34px;
    }

    .section-header-cyber .cyber-glitch-text {
        width: 100%;
        max-width: 100%;
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 1.45rem;
        letter-spacing: 1.4px;
        line-height: 1.08;
    }

    .section-header-cyber .cyber-underline {
        width: 46%;
        margin-top: 12px;
    }

    .section-header-cyber .section-subtitle {
        margin-top: 12px;
        font-size: 0.8rem;
        letter-spacing: 1px;
        line-height: 1.45;
        padding: 0 8px;
    }

    .reviews-container {
        padding: 24px 16px;
        margin-top: 24px;
    }

    .reviews-container .trustindex-widget {
        gap: 12px;
    }

    .reviews-container .trustindex-widget .review-card {
        min-width: 100%;
        max-width: 100%;
        padding: 16px;
    }

    .cyber-home-shelf-section {
        margin: 0;
    }

    .cyber-home-shelf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .cyber-home-product-card {
        min-height: 0;
        border-radius: 14px;
    }

    .cyber-home-product-card .product-image img {
        max-width: 100%;
        height: 150px;
        object-fit: contain;
    }

    .cyber-home-product-card .home-product-title a {
        font-size: 0.9rem;
        line-height: 1.35;
        min-height: auto;
    }

    .cyber-home-product-card .product-price {
        font-size: 1rem;
    }

    .cyber-home-product-card .product-specs {
        gap: 6px;
    }

    .cyber-home-product-card .spec-item {
        font-size: 0.64rem;
        line-height: 1.25;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        height: auto;
        min-height: 320px;
    }

    .service-image-wrapper {
        height: 210px;
    }

    .service-info {
        padding: 18px 16px 20px;
    }

    .service-info h3 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .service-info .service-subtitle {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .card-back {
        padding: 18px 16px;
    }

    .pymes-card-panel {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .pymes-card-panel h3.cyber-glitch-text-small {
        font-size: 1.2rem;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .pymes-features {
        gap: 14px;
    }

    .pymes-feature {
        gap: 12px;
        align-items: flex-start;
    }

    .pymes-feature h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .pymes-feature p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .pymes-placeholder-image {
        min-height: 240px;
        object-fit: cover;
        border-radius: 14px;
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-card {
        border-radius: 14px;
        overflow: hidden;
    }

    .video-info {
        padding: 14px 14px 16px;
    }

    .video-info h3 {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .video-info p {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .locations-wrapper,
    .schedule-table {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .location-card,
    .schedule-card {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .location-title,
    .day-header h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .location-details p,
    .schedule-table-inline,
    .schedule-table-inline td {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .map-container iframe,
    .location-map-placeholder iframe {
        min-height: 220px;
    }

    .time-slot {
        font-size: 1.1rem;
    }

    .status-indicator {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .status-text {
        font-size: 0.88rem;
        letter-spacing: 0.7px;
        text-align: center;
    }

    .gi-card-body {
        padding: 20px 18px;
        gap: 16px;
    }

    .gi-card-name {
        font-size: 1.95rem;
    }

    .gi-card-stats {
        border-radius: 12px;
    }

    .gi-card-stat {
        padding: 14px 12px;
    }

    .gi-card-stat-label-top {
        font-size: 0.62rem;
        letter-spacing: 0.9px;
    }

    .gi-card-stat-val {
        font-size: 1.1rem;
    }

    .gi-card-stat-lbl {
        font-size: 0.64rem;
        line-height: 1.25;
    }

    .gi-card-spec {
        padding: 13px 14px;
    }

    .gi-card-spec-key {
        color: rgba(255, 255, 255, 0.42);
    }

    .gi-card-spec-val {
        font-size: 0.96rem;
        line-height: 1.35;
    }

    .gi-chip,
    .gi-badge {
        min-height: 24px;
        align-items: center;
    }

    .gi-card-cta {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .gi-cta-text-block strong {
        font-size: 0.92rem;
        letter-spacing: 0.7px;
    }

    .gi-cta-text-block small {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .gi-how-wrapper {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .gi-how-title {
        margin-bottom: 22px;
        font-size: 0.72rem;
        letter-spacing: 2px;
    }

    .gi-how-steps {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
        position: relative;
        max-width: 420px;
        margin: 0 auto;
    }

    .gi-how-step {
        position: relative;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        min-height: 72px;
        padding: 14px 14px 14px 78px;
        text-align: left;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
        overflow: visible;
    }

    .gi-how-step > span {
        max-width: none;
        font-size: 0.84rem;
        line-height: 1.3;
        text-align: left;
        color: rgba(255, 255, 255, 0.72);
    }

    .gi-how-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        z-index: 2;
    }

    .gi-how-step::before {
        content: none;
    }

    .gi-how-step::after {
        content: none;
    }

    .gi-how-step:not(:last-child) .gi-how-icon::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -28px;
        width: 2px;
        height: 18px;
        transform: translateX(-50%);
        background: linear-gradient(180deg,
            rgba(255, 0, 51, 0.9) 0%,
            rgba(255, 0, 51, 0.28) 100%);
        box-shadow:
            0 0 8px rgba(255, 0, 51, 0.34),
            0 0 14px rgba(255, 0, 51, 0.14);
        opacity: 1;
        pointer-events: none;
    }

    .gi-how-step--final {
        grid-column: auto;
        background: rgba(0, 255, 136, 0.06);
        border-color: rgba(0, 255, 136, 0.18);
    }

    .gi-how-step--final .gi-how-icon {
        box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.22), 0 0 18px rgba(0, 255, 136, 0.12);
    }

    .gi-how-step--final > span {
        color: rgba(0, 255, 136, 0.88);
    }

    .gi-coming-panel {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .gi-coming-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .gi-coming-sub {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .homepage-cyber .cyber-container {
        padding: 0 14px;
    }

    .section-header-cyber .cyber-glitch-text {
        font-size: 1.28rem;
        padding: 13px 14px;
        letter-spacing: 1px;
    }

    .section-header-cyber .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }

    .cyber-home-shelf-grid {
        grid-template-columns: 1fr;
    }

    .cyber-home-product-card .product-image img {
        height: 164px;
    }

    .service-card {
        min-height: 300px;
    }

    .service-image-wrapper {
        height: 190px;
    }

    .pymes-card-panel,
    .location-card,
    .schedule-card,
    .video-card,
    .gi-how-wrapper,
    .gi-coming-panel {
        border-radius: 12px;
    }

    .gi-card-body {
        padding: 18px 14px;
    }

    .gi-card-name {
        font-size: 1.8rem;
        line-height: 0.98;
    }

    .gi-card-stats {
        gap: 0;
    }

    .gi-card-stat {
        grid-template-columns: 1fr auto;
        padding: 12px 14px;
    }

    .gi-card-stat-label-top {
        min-width: 82px;
        font-size: 0.6rem;
    }

    .gi-card-stat-val {
        font-size: 1.08rem;
    }

    .gi-card-stat-lbl {
        max-width: 86px;
        font-size: 0.62rem;
    }

    .gi-card-spec {
        padding: 12px 12px;
    }

    .gi-card-spec-val {
        font-size: 0.92rem;
    }

    .gi-chip,
    .gi-badge {
        font-size: 0.68rem;
    }

    .gi-how-wrapper {
        padding: 20px 14px;
    }

    .gi-how-title {
        margin-bottom: 18px;
    }

    .gi-how-step {
        min-height: 64px;
        gap: 12px;
        padding: 12px 12px 12px 68px;
    }

    .gi-how-icon {
        left: 12px;
        width: 42px;
        height: 42px;
    }

    .gi-how-step:not(:last-child) .gi-how-icon::after {
        bottom: -27px;
        height: 17px;
    }

    .gi-how-step > span {
        max-width: none;
        font-size: 0.76rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .section-header-cyber .cyber-glitch-text,
    .section-header-cyber .cyber-underline::before,
    .gi-card-glow,
    .gi-pulse,
    .gi-how-arrow i { animation: none !important; }
    .cyber-home-product-card { animation: none; opacity: 1; }
    .gi-card-img { animation: none; opacity: 1; }
}
