﻿:root {
    --ink: #0a0f1e;
    --ink2: #2a3050;
    --muted: #6b7280;
    --accent: #0052cc;
    --accent2: #00c896;
    --light: #f4f6fc;
    --white: #ffffff;
    --border: rgba(10,15,30,0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    padding-top: 0 !important;
    font-size: 16px;
    line-height: 1.65em;
}

/* ── NAV STRUCT & ACTIONS WRAPPER ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 68px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.5px;
}

    .nav-logo span {
        color: var(--accent);
    }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
        text-decoration: none;
        letter-spacing: 0.2px;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--ink);
        }

/* ── DROPDOWN SUBMENU ENGINE ── */
.nav-dropdown-wrapper {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-caret {
    font-size: 9px;
    color: var(--muted);
    transition: transform 0.2s;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10,15,30,0.08);
    width: 200px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1010;
}

    .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: var(--white);
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
    }

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrapper:hover .dropdown-caret {
    transform: rotate(180deg);
    color: var(--ink);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 400;
    transition: background 0.15s, color 0.15s;
}

    .nav-dropdown-menu li a:hover {
        background: var(--light);
        color: var(--accent);
    }

/* ── ACTIONS & BUTTONS ── */
.nav-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    background: var(--ink);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

    .nav-cta:hover {
        background: var(--accent);
        transform: translateY(-1px);
    }

.nav-login-btn {
    background: transparent;
    color: var(--ink) !important;
    border: 1px solid var(--border);
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

    .nav-login-btn:hover {
        background: var(--light);
        border-color: rgba(10,15,30,0.2);
    }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5vw 80px;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(0,82,204,0.25) 0%, transparent 65%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -15%;
        left: 15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 65%);
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,150,0.12);
    border: 1px solid rgba(0,200,150,0.2);
    color: var(--accent2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent2);
    border-radius: 50%;
}

.hero-text h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* ── BUTTON COMPONENT ── */
.btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.btn-primary {
    background: var(--accent);
    color: var(--white) !important;
    border: none;
}

    .btn-primary:hover {
        background: #0041a3;
        transform: translateY(-1px);
    }

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.1);
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.15);
    }

.btn-ghost {
    background: transparent;
    color: var(--accent) !important;
    border: 1px solid var(--accent);
}

    .btn-ghost:hover {
        background: rgba(0,82,204,0.05);
    }

/* ── VISUAL ENGINE CARD ── */
.tech-card {
    background: var(--ink2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

    .tech-card .card-header {
        background: rgba(0,0,0,0.2);
        padding: 12px 18px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

.card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .card-dot.red {
        background: #ff5f56;
    }

    .card-dot.yellow {
        background: #ffbd2e;
    }

    .card-dot.green {
        background: #27c93f;
    }

.card-title {
    font-family: monospace;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    margin-left: 10px;
}

.tech-card pre {
    padding: 24px;
    margin: 0;
    background: transparent;
    border: none;
}

.tech-card code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #a9b2c3;
}

.code-k {
    color: #f07178;
}

.code-c {
    color: #676e95;
    font-style: italic;
}

.code-s {
    color: #c3e88d;
}

/* ── SERVICES ── */
.services {
    padding: 120px 5vw;
    background: var(--light);
}

.services-header {
    max-width: 600px;
    margin-bottom: 64px;
}

    .services-header h2 {
        font-family: 'Syne', sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 16px;
    }

    .services-header p {
        font-size: 16px;
        color: var(--muted);
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(10,15,30,0.05);
    }

.service-icon {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── SHOWCASE & MAP COMPONENT ── */
.product-showcase {
    padding: 120px 5vw;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gis-container {
    background: var(--light);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.gis-map {
    height: 380px;
    background: #e5ecf6;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.map-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,82,204,0.2);
}

.gis-hud {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10,15,30,0.85);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--white);
    font-size: 12px;
}

.product-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.product-subtitle {
    font-size: 16px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
}

.product-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .product-features li {
        font-size: 14px;
        font-weight: 500;
        color: var(--ink);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .product-features li span {
            color: var(--accent2);
            font-weight: bold;
        }

/* ── CTA ── */
.bottom-cta {
    padding: 0 5vw 120px;
    background: var(--white);
}

.cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--ink);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-card h2 {
        font-family: 'Syne', sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 16px;
    }

    .cta-card p {
        font-size: 16px;
        color: rgba(255,255,255,0.7);
        max-width: 600px;
        margin: 0 auto 36px;
    }

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ── FOOTER STRUCT ── */
footer {
    background: var(--light);
    border-top: 1px solid var(--border);
    padding: 80px 5vw 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .footer-tagline {
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.5;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

    .footer-col ul a {
        font-size: 14px;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-col ul a:hover {
            color: var(--accent);
        }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
}
/* ── METRIC / STAT CARDS ── */

.stats {
    background: var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-radius: 20px;
    overflow: hidden;
}

.stat-item {
    padding: 48px 36px;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-big {
    font-family: 'Syne', sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

    .stat-big sup {
        font-size: 28px;
        letter-spacing: 0;
    }

.stat-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}


/* --- Infraestructura Base de Páginas --- */
.main-body-wrapper {
    padding-top: 68px;
}

/* --- Contenedor Cartográfico y Paneles Genéricos --- */
#map {
    height: 450px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.console-card, .contact-console-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.contact-console-card {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Estilización Unificada de Formularios Técnicos --- */
.form-group {
    margin-bottom: 20px;
}

.contact-console-card .form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 14px;
    color: var(--ink);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-console-card .form-control {
    padding: 10px 12px;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 1px var(--accent);
}

.form-control:disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-control {
    resize: none;
    font-family: inherit;
}

/* --- Componentes de Carga de Ficheros (CSV) --- */
.upload-zone {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 35px;
    transition: border-color 0.2s;
}

    .upload-zone:hover {
        border-color: var(--accent);
    }

/* --- Interfaces de Navegación por Pestañas (Tabs) --- */
.nav-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.nav-item {
    margin-bottom: -1px;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

    .nav-link.active {
        color: var(--accent);
        border-bottom-color: var(--accent);
    }

/* --- Homogeneización Autocomplete jQuery UI --- */
.ui-autocomplete {
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
    font-family: inherit !important;
    z-index: 1050 !important;
}

.ui-menu-item-wrapper.ui-state-active {
    background-color: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    margin: 0 !important;
}

/* --- Elementos de Soporte, Texto y Botoneras --- */
.char-counter {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    float: right;
    margin-top: -22px;
}

.legal-notice {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

    .legal-notice a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
    }

        .legal-notice a:hover {
            text-decoration: underline;
        }

.btn-submit-contact {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    width: auto;
    display: inline-block;
}

    .btn-submit-contact:disabled {
        background: #cbd5e1;
        color: #94a3b8;
        cursor: not-allowed;
    }

/* --- Cuadrículas Dinámicas e Infraestructura de Secciones (About) --- */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.pilar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .pilar-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    }

    .pilar-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 15px;
    }

    .pilar-card p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.5;
        margin: 0;
    }

.solution-media img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.solution-details h2 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
}

.solution-details strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.solution-details ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.solution-details li {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 6px;
    line-height: 1.5;
}

.action-flex {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.btn-sol-primary {
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

.btn-sol-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-block;
}

.btn-sol-primary:hover {
    background: #0041a3;
}

.btn-sol-secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* --- Panel de Control / Consola de Administración --- */
.admin-dashboard-section {
    padding: 40px 0;
    background: #f8fafc;
    min-height: calc(100vh - 68px);
    box-sizing: border-box;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
    box-sizing: border-box;
}

.admin-sections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.admin-module-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .admin-module-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }

.module-card-header {
    padding: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .module-card-header h2 {
        font-family: 'Syne', sans-serif;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        margin: 0;
        letter-spacing: 0.5px;
    }

.header-core {
    background: #1e293b;
    border-bottom: 2px solid var(--accent);
}

.header-fiberpath {
    background: #0f172a;
    border-bottom: 2px solid var(--accent2);
}

.header-gis {
    background: #0f172a;
    border-bottom: 2px solid #3b82f6;
}

.header-comms {
    background: #1e293b;
    border-bottom: 2px solid #10b981;
}

.header-content {
    background: #1e293b;
    border-bottom: 2px solid #f59e0b;
}

.module-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

.module-action-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

    .module-action-list li {
        border-bottom: 1px solid #f1f5f9;
    }

        .module-action-list li:last-child {
            border-bottom: none;
        }

.admin-action-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

    .admin-action-link:hover {
        background: #f8fafc;
        color: var(--accent);
    }

    .admin-action-link .link-arrow {
        font-size: 12px;
        color: #94a3b8;
        transition: transform 0.15s;
    }

    .admin-action-link:hover .link-arrow {
        color: var(--accent);
        transform: translateX(3px);
    }

@media (min-width: 768px) {
    .form-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .span-full-width {
        grid-column: span 2;
    }
}
/* RESPONSIVE QUERIES */
@media(max-width: 900px) {
    .hero-grid, .product-grid, .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    nav .nav-links {
        display: none;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
