/* ==========================================================================
   Variables Globales y Reset
   ========================================================================== */
   :root {
    --primary: rgb(12, 144, 252);
    --primary-light: rgba(36, 160, 253, 1);
    --primary-10: rgba(12, 144, 252, 0.1);
    --dark: #050505;
    --darker: #000000;
    --light: #ffffff;
    --gray-light: #f4f4f5;
    --gray-dark: #18181b;
    --gray: #9ca3af;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-disabled: #6b7280;
    --blue: #2563eb;
    --blue-light: rgba(59, 130, 246, 0.2);
    --red: #ef4444;
    --yellow: #eab308;
    --green: #22c55e;
    
    --font-main: 'Montserrat', sans-serif;
    
    --shadow-glow: 0 0 20px rgba(12, 144, 252, 0.5);
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Utilidades Globales
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.relative { position: relative; }
.absolute { position: absolute; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--light); }
.text-gray { color: var(--gray); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.bold { font-weight: bold; }
.uppercase { text-transform: uppercase; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.bg-dark { background-color: var(--dark); }
.bg-darker { background-color: var(--darker); }
.bg-gray-dark { background-color: var(--gray-dark); }
.bg-primary { background-color: var(--primary); }

.flex { display: flex; }
.flex-wrap { display: flex; flex-wrap: wrap; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }

.border-t { border-top: 1px solid var(--gray-800); }
.border-gray { border: 1px solid var(--gray-800); }

.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Efectos Especiales */
.glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--darker) !important;
}
.glass .logo, .glass .nav-desktop a, .glass .menu-btn { color: var(--darker) !important; }

.glass-dark {
    background: rgba(24, 24, 27, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient-blue {
    background: linear-gradient(135deg, rgb(12, 144, 252) 0%, rgba(36, 160, 253, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Navegación
   ========================================================================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    transition: all 0.3s;
    padding: 1rem 0;
}
.navbar-container {
    display: flex;
    justify-content: space-between; /* Empuja el logo a un lado y el resto al otro */
    align-items: center;
    width: 100%;
}

/* Para que los enlaces del menú también cambien de color al bajar */
.glass .nav-desktop a {
    color: #000000;
}

/* Suavizar el cambio de color de los enlaces */
.nav-desktop a {
    transition: color 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.05em;
}

#logo-img {
    display: block;
    opacity: 1;
}

.nav-desktop { display: none; }
.nav-desktop a {
    font-weight: 500;
    font-size: 0.875rem;
    color: #d1d5db;
    transition: color 0.3s;
}
.nav-desktop a:hover { color: var(--primary); ; color: #06affd; }

.glass {
    background-color: rgba(255, 255, 255, 0.9) !important; /* Fondo blanco con transparencia */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Color cuando la barra es blanca (glass) */
.glass .nav-desktop a {
    color: #000000 !important; /* Fuerza el negro sobre el gris inicial */
    transition: color 0.3s ease;
}

/* El Hover: Esto asegura que el azul gane siempre */
.glass .nav-desktop a:hover {
    color: #06affd !important; /* Tu azul de 'Precios' */
}

#logo-text {
    transition: color 0.3s ease; /* Para que el texto cambie suave */
    color: white; /* Color inicial */
}

#logo-img {
    transition: all 0.1s ease;
}


.menu-btn {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
}
.mobile-menu {
    background-color: var(--gray-dark);
    border-top: 1px solid var(--gray-800);
}
.hidden { display: none; }
.nav-mobile {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
}
.nav-mobile a {
    font-weight: 500;
    transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--primary); }

/* ==========================================================================
   Botones
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}
.btn-primary:hover {
    background-color: var(--primary-light);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-700);
    color: var(--light);
}
.btn-outline:hover {
    border-color: var(--light);
    background-color: rgba(255, 255, 255, 0.05);
}
.btn-outline-full {
    display: block;
    text-align: center;
    border: 1px solid var(--gray-700);
    color: var(--light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-outline-full:hover {
    border-color: var(--light);
}
.btn-light {
    background-color: var(--light);
    color: var(--darker);
}
.btn-light:hover {
    background-color: #e5e7eb;
}
.btn-dark {
    background-color: var(--darker);
    color: var(--light);
}
.btn-dark:hover {
    background-color: #111827;
}
.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(12, 144, 252, 0.4);
}
.btn-hover-scale:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Sección Hero
   ========================================================================== */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; }
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    border-radius: 50%;
    width: 24rem;
    height: 24rem;
}
.hero-blob-1 { top: 25%; left: -12rem; }
.hero-blob-2 { bottom: 0; right: 0; opacity: 0.2; }

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.hero-content { text-align: center; padding-top: 2.5rem; }
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}
.badge-glass {
    border: 1px solid var(--gray-800);
    background-color: rgba(17, 24, 39, 0.5);
    color: var(--primary);
    backdrop-filter: blur(4px);
}
.badge-success {
    background-color: rgba(12, 144, 252, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    font-weight: 300;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Mockup */
.hero-mockup { width: 100%; }
.mockup-wrapper {
    padding: 0.5rem;
    border-radius: 1rem;
    transform: rotate(2deg);
    transition: transform 0.5s;
}
.card-hover-rotate:hover { transform: rotate(0); }
.mockup-inner {
    background-color: var(--dark);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--gray-800);
}
.mockup-header {
    background-color: var(--gray-dark);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-800);
}
.dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.bg-red { background-color: var(--red); }
.bg-yellow { background-color: var(--yellow); }
.bg-green { background-color: var(--green); }

.mockup-body { padding: 1.5rem; }
.mockup-row { display: flex; align-items: center; }
.space-between { justify-content: space-between; }
.skeleton-bar { height: 1.5rem; background-color: var(--gray-800); border-radius: 0.25rem; }
.w-32 { width: 8rem; }
.skeleton-lines { display: flex; flex-direction: column; gap: 1rem; }
.skeleton-line { height: 1rem; background-color: var(--gray-800); border-radius: 0.25rem; }
.w-5-6 { width: 83.333%; }
.w-4-6 { width: 66.666%; }
.w-16 { width: 4rem; }
.w-10 { width: 2.5rem; }
.h-3 { height: 0.75rem; }

.mockup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mockup-card {
    height: 6rem;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(31, 41, 55, 0.5);
}
.box-gradient { background: linear-gradient(to bottom right, var(--gray-800), #111827); }
.icon-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.bg-primary-light { background-color: rgba(12, 144, 252, 0.2); }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-section { padding: 3rem 0; border-top: 1px solid var(--gray-800); border-bottom: 1px solid var(--gray-800); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; text-align: center; }
.stat-number { font-size: 1.875rem; font-weight: 700; color: var(--light); margin-bottom: 0.5rem; }
.stat-label { color: var(--gray); font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ==========================================================================
   Grids Generales
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-5 { display: grid; grid-template-columns: 1fr; gap: 2rem; }

/* ==========================================================================
   Servicios
   ========================================================================== */
.subtitle { font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.875rem; }
.title { font-size: 2.25rem; font-weight: 700; line-height: 1.2; }
.description { font-size: 1.125rem; }

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-800);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dark-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(12, 144, 252, 0.15);
    border-color: rgba(12, 144, 252, 0.5);
}
.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #111827;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}
.service-card:hover .service-icon { background-color: rgba(12, 144, 252, 0.2); }
.service-title { font-size: 1.25rem; font-weight: 700; color: var(--light); }
.service-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.625; }
.feature-list { font-size: 0.875rem; color: var(--gray); }
.feature-list li { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.link-arrow i { font-size: 0.875rem; transition: transform 0.3s; }
.service-card:hover .link-arrow { color: var(--light); }
.service-card:hover .link-arrow i { transform: translateX(4px); }

/* ==========================================================================
   Proceso
   ========================================================================== */
.process-line { display: none; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background-color: var(--gray-800); transform: translateY(-50%); z-index: 0; }
.process-card { padding: 1.5rem; border-radius: 0.75rem; border: 1px solid var(--gray-800); position: relative; transition: border-color 0.3s; }
.process-card:hover { border-color: var(--primary); }
.step-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--light);
    transition: background-color 0.3s;
}
.group-hover-primary { transition: background-color 0.3s; }
.process-card:hover .group-hover-primary { background-color: var(--primary); }
.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; margin-top: 1rem; }
.step-desc { font-size: 0.875rem; color: var(--gray); }

/* ==========================================================================
   Portafolio
   ========================================================================== */
.portfolio-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-800);
}
.portfolio-img-wrapper { height: 16rem; overflow: hidden; }
.bg-gradient-t { background: linear-gradient(to top, var(--gray-dark), transparent); position: absolute; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.portfolio-card:hover .portfolio-img { transform: scale(1.05); }
.portfolio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio-content { padding: 2rem; }
.portfolio-title { font-size: 1.5rem; font-weight: 700; }
.detail-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.detail-text { font-size: 0.875rem; }
.stat-main { display: block; font-size: 1.125rem; font-weight: 700; }
.stat-sub { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.icon-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.icon-link i { transform: rotate(-45deg); }
.icon-link:hover { background-color: var(--primary); }

.link-bottom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 0.25rem;
    font-weight: 600;
    transition: color 0.3s;
}
.link-bottom:hover { color: var(--primary); }

/* ==========================================================================
   Por Qué Elegirnos
   ========================================================================== */
.bg-gradient-side {
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, #111827, transparent);
}
.feature-card { padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--gray-800); }
.icon-circle.bg-primary-10 { width: 3rem; height: 3rem; font-size: 1.25rem; }
.feature-title { font-size: 1.125rem; font-weight: 700; }
.feature-desc { font-size: 0.875rem; }

/* ==========================================================================
   Precios
   ========================================================================== */
.pricing-card { padding: 2rem; border-radius: 1rem; }
.pricing-card.highlighted { background-color: #111827; border: 2px solid var(--primary); }
.badge-popular { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--light); }
.pricing-title { font-size: 1.25rem; font-weight: 700; }
.pricing-desc { font-size: 0.875rem; }
.price-text { font-size: 2.25rem; font-weight: 700; }
.pricing-features { font-size: 0.875rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; }

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-bg-pattern { opacity: 0.1; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 32px 32px; }
.cta-title { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.025em; }
.cta-desc { font-size: 1.25rem; color: #dbeafe; font-weight: 500; max-width: 42rem; margin-left: auto;
    margin-right: auto;}

/* ==========================================================================
   Contacto
   ========================================================================== */
.icon-box { width: 4rem; height: 3rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.link-hover { color: var(--gray); transition: color 0.3s; }
.link-hover:hover { color: var(--primary); }
.secure-box { padding: 1.5rem; border-radius: 0.75rem; }

.contact-form { padding: 2rem; border-radius: 1rem; margin-left: 10px}
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: #d1d5db; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background-color: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--light);
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-700); }
.form-group select { appearance: none; -webkit-appearance: none; }
.select-icon { position: absolute; right: 1rem; bottom: 1rem; pointer-events: none; }
.btn-submit { padding: 1rem; border-radius: 0.5rem; border: none; font-size: 1rem; }
.btn-submit:hover { box-shadow: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.social-links a { width: 2.5rem; height: 2.5rem; border-radius: 50%; background-color: #111827; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: all 0.3s; }
.social-links a:hover { color: var(--light); background-color: var(--primary); }
.footer-title { font-weight: 700; color: var(--light); margin-bottom: 1.5rem; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--gray); }
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: var(--gray); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact i { margin-top: 0.25rem; }
.footer-contact a:hover { color: var(--light); }
.footer-legal a { transition: color 0.3s; }
.footer-legal a:hover { color: var(--light); }
/* ==========================================================================
   Media Queries (Responsividad)
   ========================================================================== */
/* Pantallas Medianas (md) */
@media (min-width: 768px) {
    .nav-desktop { display: flex; align-items: center; gap: 2rem; }
    .menu-btn { display: none; }
    
    .hero-title { font-size: 4.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-buttons { flex-direction: row; justify-content: flex-start; }
    
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-grid > div:not(:first-child) { border-left: 1px solid var(--gray-800); }
    
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    
    .flex-between { flex-direction: row; align-items: flex-end; }
    
    .cta-title { font-size: 3.75rem; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: row; }
}

/* Pantallas Grandes (lg) */
@media (min-width: 1024px) {
    .hero-container { flex-direction: row; gap: 3rem; }
    .hero-content { text-align: left; width: 50%; padding-top: 0; }
    .hero-subtitle { margin-left: 0; margin-right: 0; }
    .hero-mockup { width: 50%; }
    
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-5 { grid-template-columns: repeat(5, 1fr); }
    
    .process-line { display: block; }
    
    .flex-wrap { flex-wrap: nowrap; }
    .w-half-lg { width: 50%; }
    
    .mt-offset { margin-top: 2rem; }
    .highlighted { transform: translateY(-1rem); }
    
    .lg-7-12 { width: 58.333333%; }
    .contact-info { width: 41.666667%; }
    
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}