:root {
    /* Premium Color Palette */
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #60A5FA;
    --secondary-color: #10B981;
    --secondary-dark: #059669;
    --accent-color: #F59E0B;

    /* Neutral Tones */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray-dark: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-lighter: #F8FAFC;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    --gradient-cards: linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-shine: linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.3) 50%, transparent 75%);

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);

    --blur-backdrop: blur(16px);
    --border-light: 1px solid rgba(255, 255, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #F1F5F9;
    /* Mesh Gradient Background */
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 0.05) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 0.05) 0, transparent 50%);
    background-attachment: fixed;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Premium Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--blur-backdrop);
    -webkit-backdrop-filter: var(--blur-backdrop);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* PRO Hero Section (Redesigned World Class) */
.hero-corporate {
    position: relative;
    padding: 10rem 0 8rem;
    overflow: hidden;
    background: transparent;
    perspective: 1500px;
    display: flex;
    /* Better vertical alignment */
    align-items: center;
    min-height: 90vh;
    /* Full viewport height feeling */
}

.hero-bg-corporate {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    /* Stronger Mesh Gradient */
    background:
        radial-gradient(at 10% 10%, rgba(37, 99, 235, 0.12) 0px, transparent 50%),
        radial-gradient(at 90% 10%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(79, 70, 229, 0.08) 0px, transparent 50%),
        radial-gradient(at 10% 90%, rgba(245, 158, 11, 0.05) 0px, transparent 50%);
    filter: blur(80px);
    z-index: -1;
    animation: meshFlow 20s ease infinite alternate;
}

@keyframes meshFlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.hero-content-corporate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* LEFT COL: Text Content */
.hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    /* Explicit left align */
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
    border: 1px solid rgba(37, 99, 235, 0.2);
    position: relative;
    /* Ensure z-index works */
    z-index: 10;
    backdrop-filter: blur(5px);
}

.hero-title-corporate {
    font-size: clamp(3rem, 5vw, 4.5rem);
    /* Responsive Typography */
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -0.03em;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 25%, #10B981 50%, #2563EB 75%, #4F46E5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.1em;
    display: inline-block;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 90%;
    margin: 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.btn-outline-hero {
    background: white;
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--gray-light);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #F8FAFC;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* RIGHT COL: 3D Visual */
.hero-visual-col {
    position: relative;
    height: 600px;
    /* Allocate space */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.glass-composition {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* Smooth JS tilt */
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

/* Glass Cards Generic */
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* Main Center Card */
.card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 220px;
    height: 220px;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.25);
}

.glass-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.glass-info {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.glass-info strong {
    font-size: 1.25rem;
    color: var(--dark);
}

.glass-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Floating Satellites */
.card-float {
    padding: 1rem 1.5rem;
    gap: 0.75rem;
    border-radius: 3rem;
    font-weight: 700;
    color: var(--dark-light);
    font-size: 0.95rem;
}

.card-float i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Specific Positions & Float Animations */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0) translateZ(var(--z-depth));
    }

    50% {
        transform: translateY(-15px) translateZ(var(--z-depth));
    }
}

.card-1 {
    top: 10%;
    right: 0%;
    --z-depth: 40px;
    animation: floatY 6s ease-in-out infinite;
    transform: translateZ(40px);
}

.card-2 {
    bottom: 15%;
    right: -10%;
    --z-depth: 60px;
    animation: floatY 7s ease-in-out 1s infinite;
    transform: translateZ(60px);
}

.card-3 {
    bottom: 5%;
    left: -10%;
    --z-depth: 30px;
    animation: floatY 8s ease-in-out 0.5s infinite;
    transform: translateZ(30px);
}

.card-4 {
    top: 20%;
    left: -20%;
    --z-depth: 50px;
    animation: floatY 9s ease-in-out 2s infinite;
    transform: translateZ(50px);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-corporate {
        padding: 8rem 0 4rem;
        height: auto;
        min-height: auto;
    }

    .hero-content-corporate {
        grid-template-columns: 1fr;
        /* Stack */
        gap: 3rem;
        text-align: center;
        /* Center on mobile */
    }

    .hero-text-col {
        align-items: center;
        /* Center content */
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
        width: 100%;
    }

    .hero-visual-col {
        height: 400px;
        order: 1;
        /* Visual below on mobile usually better if hero text is key */
    }

    .glass-composition {
        transform: scale(0.8);
        /* Scale down for mobile */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Shared Section Styling with Glassmorphism */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Cards - 3D Glass */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--blur-backdrop);
    -webkit-backdrop-filter: var(--blur-backdrop);
    padding: 3.5rem;
    border-radius: 2rem;
    border: var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.about-card:hover::before {
    transform: translateX(100%);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.about-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.about-card:hover .about-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-color);
}

.about-card:hover .about-icon i {
    -webkit-text-fill-color: var(--white);
}

.about-icon i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

.about-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 800;
}

.about-card p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Services Revamp */
.services-section {
    padding: 8rem 0;
    background: transparent;
    /* Rely on body mesh */
}

.service-category {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--blur-backdrop);
    border-radius: 2.5rem;
    padding: 4rem;
    margin-bottom: 5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: 0.4s;
}

.service-category:hover {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.8);
}

.service-header {
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-header i {
    font-size: 3rem;
    color: var(--primary-color);
    filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.3));
}

.service-header h3 {
    font-size: 2.25rem;
    font-weight: 800;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bento Grid System for Asistencias */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.bento-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-light);
    z-index: 2;
}

/* Feature Cards Spanning */
@media (min-width: 768px) {
    .card-featured {
        grid-column: span 2;
        grid-row: span 2;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 240, 255, 0.8) 100%);
    }

    .card-wide {
        grid-column: span 2;
    }
}

.card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    transition: 0.4s;
    pointer-events: none;
    color: var(--primary-dark);
}

.bento-card:hover .card-bg-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.1;
}

.card-header-bento {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-header-bento i {
    font-size: 1.75rem;
    color: var(--primary-color);
    background: white;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-header-bento h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.bento-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.bento-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.4;
}

.bento-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.bento-card:hover .bento-list li {
    color: var(--dark);
}

/* Installations Premium Styles */
.installations-section {
    padding: 8rem 0;
    position: relative;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-light);
    margin-bottom: 2rem;
}

.icon-box-lg {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.tech-infrastructure-panel {
    background: var(--dark);
    border-radius: 2rem;
    padding: 3rem;
    margin-top: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tech-infrastructure-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.panel-header i {
    color: var(--primary-light);
}

.infra-grid-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.infra-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.infra-pill:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Quality Timeline (Horizontal) */
.quality-section {
    padding: 8rem 0;
    overflow-x: hidden;
}

.quality-timeline-container {
    position: relative;
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E2E8F0;
    border-radius: 4px;
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    text-align: center;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 5px #F1F5F9;
    /* White halo */
    transition: all 0.3s ease;
}

.step-final .step-marker {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    margin-top: -5px;
    /* Adjust alignment for larger size */
}

.step-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-lighter);
    width: 100%;
    transition: all 0.3s ease;
}

.step-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.step-card h4 {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 700;
}

.timeline-step:hover .step-marker {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1);
    border-color: var(--secondary-color);
}

.timeline-step:hover .step-card {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.highlight {
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
    border-color: var(--primary-light);
}

/* Responsive Timeline */
@media (max-width: 900px) {
    .quality-timeline-container {
        flex-direction: column;
        gap: 2rem;
        padding-left: 2rem;
    }

    .timeline-line {
        width: 4px;
        height: 100%;
        top: 0;
        left: 24px;
        /* Align with markers */
    }

    .timeline-step {
        flex-direction: row;
        width: 100%;
        text-align: left;
        gap: 1.5rem;
    }

    .step-marker {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-final .step-marker {
        margin-top: 0;
    }

    .step-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }

    .step-card i {
        margin-bottom: 0;
    }
}

/* Pricing Premium Styles */
.pricing-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.pricing-card-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card-glass.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 249, 255, 0.8) 100%);
    border: 2px solid var(--primary-light);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.pricing-card-glass:hover {
    transform: translateY(-10px);
    background: white;
}

.pricing-card-glass.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header-glass {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    font-size: 2.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.pricing-header-glass h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-cost {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--dark);
}

.pricing-cost .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.pricing-cost .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-cost .period {
    color: var(--gray);
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.pricing-features li i {
    color: var(--secondary-color);
}

.btn-glass-card {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    transition: 0.3s;
}

.btn-glass-card:hover {
    background: var(--primary-color);
    color: white;
}

.btn-glass-featured {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-glass-featured:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

/* Modern Table */
.coverage-section {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 4rem;
}

.coverage-title-modern {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dark);
}

.table-container-modern {
    overflow-x: auto;
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.premium-table th {
    padding: 1.5rem;
    text-align: left;
    background: var(--gray-light);
    color: var(--dark);
    font-weight: 800;
    border-bottom: 2px solid var(--gray-light);
}

.premium-table th.th-featured {
    background: #EFF6FF;
    color: var(--primary-color);
    border-bottom-color: var(--primary-light);
}

.premium-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #F1F5F9;
    color: var(--gray-dark);
}

.premium-table td.td-featured {
    background: #F8FAFC;
    font-weight: 600;
    color: var(--primary-color);
}

.table-group-header td {
    background: var(--dark);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.table-group-header td i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* Additional Bento Grid Styles */
.bento-text {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Glass CTA */
.plans-cta-glass {
    margin-top: 5rem;
    background: var(--gradient-primary);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.plans-cta-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-plans-main {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1.25rem;
    margin-top: 2rem;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-plans-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Clients / Industries */
.clients-section {
    padding: 6rem 0;
    background: #FAFAFA;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    min-width: 140px;
}

.client-card i {
    font-size: 2rem;
    transition: 0.3s;
}

.client-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    color: var(--primary-color);
    border-color: var(--primary-light);
}

/* Premium Contact Section */
.contact-section {
    padding: 8rem 0 10rem;
    background: var(--white);
}

.contact-glass-panel {
    background: var(--dark);
    background-image: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 3rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: white;
}

.contact-content-col {
    padding: 4rem;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.contact-item .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
    margin-bottom: 0.25rem;
}

.contact-item .value {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-social-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-social-col h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.social-grid {
    display: grid;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid transparent;
}

.social-card:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}

.social-card i {
    font-size: 1.5rem;
}

.social-card.twitter:hover {
    color: #1DA1F2;
}

.social-card.instagram:hover {
    color: #E1306C;
}

.social-card.web:hover {
    color: var(--primary-color);
}

/* Modern Footer */
.modern-footer {
    background: #0f172a;
    color: var(--gray-light);
    padding: 4rem 0 8rem;
    /* Extra padding for floating CTA */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand .footer-logo i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-legal {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer & CTA Re-styling */
.fixed-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fixed-cta-btn {
    background: var(--gradient-primary);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
}

.fixed-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

.fixed-cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.fixed-cta-text strong {
    font-size: 0.9rem;
}

.fixed-cta-text span {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Responsive Updates */
@media (max-width: 900px) {
    .contact-glass-panel {
        grid-template-columns: 1fr;
    }

    .contact-social-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 3rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .footer-legal,
    .legal-links {
        text-align: center;
        justify-content: center;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: none;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease forwards;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger Animation for Links */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--dark);
    }

    /* Hide overflow when menu open */
    body.menu-open {
        overflow: hidden;
    }

    /* Service Category Mobile */
    .service-category {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: var(--blur-backdrop);
        border-radius: 2.5rem;
        padding: 1rem;
        margin-bottom: 2rem;
        box-shadow: var(--shadow);
        border: 1px solid rgba(255, 255, 255, 0.4);
        transition: 0.4s;
    }
}

/* Registration Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 10% auto;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.modal-header p {
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.register-form .form-group {
    margin-bottom: 1.5rem;
}

.register-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.register-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.register-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.register-form small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.width-100 {
    width: 100%;
}