/* f:\RSYSTEMS WEB\css\styles.css */
:root {
    --bg-dark: #070709;
    --bg-panel: rgba(14, 16, 23, 0.65);
    --neon-blue: #00f3ff;
    --cyan-accent: #00d2ff;
    --text-main: #f0f4f8;
    --text-muted: #8b9bb4;
    --glass-border: rgba(0, 243, 255, 0.15);
    --whatsapp-green: #25d366;
    --instagram-pink: #e1306c;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #030816; /* Deep cyber blue-black */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 243, 255, 0.08), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(0, 114, 255, 0.06), transparent 30%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =========================================
   CANVAS DE CIRCUITOS ELECTRÓNICOS ANIMADOS
========================================= */
#cyberCircuitsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

h1, h2, h3, .hero-title {
    font-family: 'Outfit', sans-serif;
}

/* =========================================
   REGLA ESTRICTA: Header Ultradelgado (Slim)
   Simetría Matemática: padding superior e inferior idénticos (0.75rem)
========================================= */
.main-header {
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================
   LOGO REDONDO Y SELLO CIBERNÉTICO
========================================= */
.brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
}

.logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 3px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2), transparent 70%);
    border: 1.5px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 243, 255, 0.3);
    animation: cyber-rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes cyber-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-wrapper:hover {
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.8), inset 0 0 12px rgba(0, 243, 255, 0.3);
    transform: scale(1.08);
}

.brand-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.8));
    transition: transform 0.3s ease;
}

.brand-title-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-left: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 12px var(--neon-blue);
}

/* =========================================
   ICONOS SOCIALES HEADER (INSTAGRAM & WHATSAPP)
========================================= */
.header-social-links {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-left: 0.5rem;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14, 16, 23, 0.8);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.social-icon-btn svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-icon-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: var(--whatsapp-green);
    color: var(--whatsapp-green);
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px) scale(1.08);
}

.social-icon-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.18);
    border-color: var(--instagram-pink);
    color: var(--instagram-pink);
    box-shadow: 0 0 16px rgba(225, 48, 108, 0.6);
    transform: translateY(-2px) scale(1.08);
}

/* =========================================
   SLA LIVE TICKER & METRIC BARS
========================================= */
.sla-live-ticker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--neon-blue);
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.live-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00ff66;
    box-shadow: 0 0 10px #00ff66;
    animation: live-pulse 1.8s infinite;
}

@keyframes live-pulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0.4; transform: scale(0.9); }
}

/* =========================================
   Botones (Micro-animaciones & Glow)
========================================= */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.1), 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-primary:hover, .glow-effect:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--cyan-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(0, 243, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transform: translateY(-2px);
}

/* =========================================
   Hero Section & LogoRectangulo Imagen
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 7rem;
    padding-bottom: 4rem;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3.5rem 3rem;
    background: rgba(14, 16, 23, 0.55);
}

/* Imagen LogoRectangulo en Hero */
.hero-logo-img {
    max-width: 480px;
    width: 85%;
    height: auto;
    margin: 1rem auto 2rem auto;
    display: block;
    filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.7));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.hero-logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 35px rgba(0, 243, 255, 0.95));
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.8rem;
    letter-spacing: 1px;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    perspective: 1000px;
    transform: rotateX(60deg) translateY(-100px) scale(2.5);
    opacity: 0.4;
    animation: cyber-scan 20s linear infinite;
    pointer-events: none;
}

@keyframes cyber-scan {
    0% { transform: rotateX(60deg) translateY(-200px) scale(2.5); }
    100% { transform: rotateX(60deg) translateY(0px) scale(2.5); }
}

/* =========================================
   CONTADORES DE MÉTRICAS B2B BANNER
========================================= */
.metrics-banner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(7, 9, 14, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   SECCIÓN MISIÓN Y VISIÓN (PARAGUAY & REGIONAL B2B)
========================================= */
.mision-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2.5rem;
}

.mv-card {
    position: relative;
    overflow: hidden;
    padding: 3.2rem 2.5rem;
    border-top: 2px solid var(--neon-blue);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--neon-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================================
   Contenedores Generales (Simetría)
========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    letter-spacing: 2px;
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
}

/* =========================================
   Glassmorphism Panels
========================================= */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 3rem 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.5);
}

/* =========================================
   Servicios
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.service-card {
    text-align: center;
}

.card-icon {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* =========================================
   MATRIZ DE ARQUITECTURA TÉCNICA (BENCHMARK)
========================================= */
.architecture-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-box {
    background: rgba(5, 7, 12, 0.8);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--neon-blue);
    padding: 1.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.spec-box:hover {
    border-left-color: var(--cyan-accent);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transform: translateX(4px);
}

.spec-box h4 {
    font-size: 1.1rem;
    color: var(--neon-blue);
    margin-bottom: 0.6rem;
    letter-spacing: 0.8px;
}

.spec-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   SECCIÓN DE CONTACTO B2B
========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.contact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(7, 10, 16, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.2);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

/* =========================================
   SLA Section
========================================= */
.sla-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sla-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0,243,255,0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.sla-content {
    max-width: 900px;
    margin: 0 auto;
}

.sla-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   Footer
========================================= */
.main-footer {
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 5, 7, 0.95);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    padding: 4rem 0 2.5rem 0;
}

.footer-logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 1.5px solid var(--neon-blue);
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 18px rgba(0, 243, 255, 0.9));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links h3, .footer-contact h3 {
    color: var(--neon-blue);
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a, .footer-contact p {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    padding: 2.2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* =========================================
   LIGHTBOX MODAL DE ZOOM DE LOGOTIPO
========================================= */
.logo-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.35s ease;
}

.logo-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 8, 22, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    background: rgba(10, 14, 23, 0.88);
    border: 1px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.35), inset 0 0 20px rgba(0, 243, 255, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    background: rgba(7, 7, 9, 0.95);
    border-bottom: 1px solid var(--glass-border);
}

.modal-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.modal-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.control-btn {
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--neon-blue);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.control-btn:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-blue);
}

.close-btn {
    border-color: rgba(255, 45, 85, 0.4);
    color: #ff2d55;
}

.close-btn:hover {
    background: #ff2d55;
    color: #fff;
    box-shadow: 0 0 15px #ff2d55;
}

.zoom-level-badge {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 50px;
    text-align: center;
}

.modal-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    user-select: none;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.04), transparent 70%);
}

#modalZoomImage {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.15s ease-out;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.5));
    will-change: transform;
}

.modal-instructions {
    text-align: center;
    padding: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(5, 7, 10, 0.95);
    border-top: 1px solid var(--glass-border);
    letter-spacing: 0.5px;
}

/* =========================================
   Formularios y Cotizador
========================================= */
.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(5, 7, 10, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.25);
    background: rgba(10, 12, 16, 0.95);
}

select.form-control {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300f3ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

select.form-control option {
    background: var(--bg-dark);
    color: var(--text-main);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 3rem;
    text-align: center;
}

.page-header {
    padding-top: 9rem;
    padding-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    .main-header {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }
    .hero-logo-img {
        max-width: 320px;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .modal-container {
        width: 95%;
        height: 90vh;
    }
}
