:root {
    --medic-blue: #0ea5e9;
    --medic-light: #f1f5f9;
    --medic-blue-light: #e0f2fe;
    --medic-dark: #1e293b;
    --medic-accent: #cbd5e1;
    --medic-primary: #0284c7;
    --glass-bg: rgba(224, 242, 254, 0.7);
    --glass-border: rgba(14, 165, 233, 0.1);
    --neon-glow: 0 0 15px rgba(37, 99, 235, 0.1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-tech: 'Share Tech Mono', monospace;
}

body {
    background: var(--medic-light);
    color: var(--medic-dark);
    font-family: var(--font-main);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--medic-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--medic-primary);
    border-radius: 4px;
}

/* Utilities */
.text-neon {
    color: var(--medic-blue);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

.status-badge {
    font-family: var(--font-tech);
    color: var(--medic-blue);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 0 10px rgba(14, 165, 233, 0.1);
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-bg {
    position: absolute;
    top: 58%;
    /* Bajamos el video para que la cara de la enfermera no quede tapada */
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.8;
    filter: brightness(1.1) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(224, 242, 254, 0.4), rgba(241, 245, 249, 0.85));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 400;
    color: #475569;
    letter-spacing: -0.3px;
    margin-bottom: 3rem;
    display: block;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONSULTANCY BANNER ===== */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eyebrowReveal {
    from {
        opacity: 0;
        letter-spacing: 6px;
    }

    to {
        opacity: 1;
        letter-spacing: 3px;
    }
}

@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.consultancy-banner {
    background: #fff;
    padding: 100px 0 0;
    overflow: hidden;
}

.consultancy-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
}

.consultancy-content {
    flex: 1;
    max-width: 700px;
}

.consultancy-media {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultancy-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--medic-blue);
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0;
    animation: eyebrowReveal 1s ease forwards;
    animation-delay: 0.2s;
}

.consultancy-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--medic-dark);
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@keyframes slideInLeftFade {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ct-line {
    display: block;
    opacity: 0;
    animation: slideInLeftFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-fill-mode: both;
}

.ct-line--1 {
    animation-delay: 0.3s;
}

.ct-line--2 {
    animation-delay: 0.5s;
}

.ct-line--3 {
    animation-delay: 0.7s;
}

.ct-highlight {
    font-style: normal;
    background: linear-gradient(90deg,
            var(--medic-blue) 0%,
            #38bdf8 40%,
            var(--medic-primary) 60%,
            var(--medic-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeftFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) both,
        shimmerText 4s linear 1s infinite;
}

.ct-highlight--alt {
    background: linear-gradient(90deg,
            #0284c7 0%,
            #0ea5e9 35%,
            #38bdf8 60%,
            #0284c7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeftFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both,
        shimmerText 3.5s linear 1.2s infinite;
}



.consultancy-sub {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    max-width: 600px;
    margin: 0;
    opacity: 0;
    animation: slideInLeftFade 0.8s ease 1s both;
}

/* Decorative Visual */
@keyframes decorRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes decorPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.consultancy-visual-decor {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultancy-visual-decor .consultancy-bear-img {
    width: 340px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2)) drop-shadow(0 5px 10px rgba(14, 165, 233, 0.3));
    animation: partnerFloat 5s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    mask-image: linear-gradient(to bottom, black 70%, transparent 98%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 98%);
}

.decor-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(14, 165, 233, 0.2);
    border-radius: 50%;
    animation: decorRotate 20s linear infinite;
}

.decor-pulse {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: decorPulse 4s ease-in-out infinite;
}

/* Trust logos strip */
.trust-strip {
    margin-top: 60px;
    border-top: 1px solid rgba(14, 165, 233, 0.08);
    padding: 25px 0 0;
}

.trust-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.trust-logos-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-logos-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.trust-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    border-right: 1px solid rgba(14, 165, 233, 0.08);
    white-space: nowrap;
    transition: all 0.3s;
}

.trust-logo-item i {
    color: var(--medic-blue);
    font-size: 1.1rem;
}

.trust-logo-item:hover {
    color: var(--medic-blue);
    background: rgba(14, 165, 233, 0.03);
}

/* Responsive consultancy */
@media (max-width: 1100px) {
    .consultancy-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 40px;
    }

    .consultancy-content {
        max-width: 100%;
    }

    .consultancy-sub {
        margin: 0 auto;
    }

    .consultancy-media {
        display: none;
    }
}

@media (max-width: 768px) {
    .consultancy-banner {
        padding: 60px 20px 0;
    }

    .consultancy-title {
        font-size: 2.2rem;
        letter-spacing: -1.5px;
    }

    .trust-logo-item {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

/* Scrollytelling Section */
.scrolly-container {
    display: flex;
    position: relative;
    z-index: 10;
    background: var(--medic-light);
}

.scrolly-text {
    width: 50%;
    padding: 3rem 2.5rem 3rem 4rem;
    color: var(--medic-dark);
}

.scrolly-visuals {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 2rem;
}

.step {
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.3;
    transition: opacity 0.5s;
    border-left: 2px solid rgba(30, 41, 59, 0.1);
    padding-left: 2rem;
}

.step.active {
    opacity: 1;
    border-left: 2px solid var(--medic-blue);
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--medic-dark);
}

.step p {
    color: #64748b;
    text-align: justify !important;
    text-justify: inter-word;
    font-size: 1.3rem;
    line-height: 1.7;
}

.visual-card {
    position: absolute;
    width: 88%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 4 / 3;
    background: var(--medic-blue-light);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.visual-card img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.visual-card.active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Partners Branding Section */
@keyframes fadeInUpPartners {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes partnerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.partners-branding-section {
    background: #fff;
    padding: 80px 0 80px;
    border-top: 1px solid rgba(14, 165, 233, 0.08);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.partners-branding-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partners-title {
    font-size: 1.15rem;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    font-family: 'Share Tech Mono', monospace;
    opacity: 0;
    animation: fadeInUpPartners 0.8s ease forwards;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInUpPartners 0.8s ease forwards, partnerFloat 5s ease-in-out infinite;
}

.partner-item:nth-child(1) {
    animation-delay: 0.3s, 0s;
}

.partner-item:nth-child(2) {
    animation-delay: 0.5s, 0.5s;
}

.partner-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(15, 23, 42, 0.05));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item:hover img {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.2));
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 40px;
    }

    .partner-item img {
        height: 60px;
    }

    .partners-title {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
}

/* Tech Modules Marquee */
.modules-section {
    padding: 20px 0;
    background: var(--medic-blue-light);
    overflow: hidden;
}

/* Faded edges effect */
.marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 68s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Individual module card */
.module-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(14, 165, 233, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(14, 165, 233, 0.15);
    border-color: var(--medic-blue);
}

.module-card-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--medic-blue-light);
}

.module-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.module-card:hover .module-card-img img {
    transform: scale(1.06);
}

.module-card:hover .module-card-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--medic-primary);
}

.module-card-body {
    padding: 1.1rem 1.3rem 1.4rem;
}

.module-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--medic-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.module-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--medic-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.module-card-body p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Keep swiper-container for any other uses */
.swiper-container {
    width: 100%;
}

.swiper-slide {
    background: var(--medic-light);
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.swiper-slide-active {
    border-color: rgba(14, 165, 233, 0.1);
}

.module-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.module-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--medic-light), transparent);
}

.module-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-content {
    padding: 1.4rem 1.6rem 1.6rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.module-content p {
    text-align: left;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-top: 0.5rem;
}



.module-icon {
    font-size: 3rem;
    color: var(--medic-blue);
    margin-bottom: 2rem;
}

/* Floating Elements */
.floating-dna {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Navbar High Tech */
.navbar-tech {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    padding: 0.6rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    background: rgba(15, 32, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.05);
    transition: all 0.4s ease;
    margin-top: 10px;
    border-radius: 15px;
}

.navbar-tech.scrolled {
    width: 98%;
    margin-top: 0;
    border-radius: 0;
    padding: 0.8rem 3rem;
    background: #0f2044;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.nav-link-tech {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link-tech:hover {
    color: var(--medic-blue);
    text-shadow: 0 0 8px var(--medic-blue);
}

.btn-tech-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-family: var(--font-tech);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
    margin-left: 2rem;
}

.btn-tech-nav:hover {
    background: #fff;
    color: var(--medic-primary);
    /* Cambio a azul para contraste sobre fondo blanco */
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

/* Primary Tech Button (Hero/CTA) */
.btn-tech {
    background: var(--medic-blue);
    color: #fff !important;
    padding: 1.1rem 3rem;
    border-radius: 12px;
    font-family: var(--font-tech);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.btn-tech:hover {
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.5);
    background: var(--medic-primary);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 50px 60px;
    background: var(--medic-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(14, 165, 233, 0.07);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--medic-blue);
    font-family: var(--font-tech);
    letter-spacing: -1px;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== FEATURES GRID SECTION ===== */
.features-section {
    padding: 60px;
    background: #fff;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--medic-dark);
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}

.features-header p {
    color: #64748b;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    background: var(--medic-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--medic-blue);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--medic-blue);
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--medic-dark);
    margin-bottom: 8px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 50px 150px;
    background: linear-gradient(135deg, var(--medic-dark) 0%, #0f2044 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    max-width: 550px;
    line-height: 1.2;
}

.cta-banner h2 span {
    color: var(--medic-blue);
}

.cta-banner a {
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--medic-dark);
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .navbar-tech {
        padding: 0.6rem 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 3000;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link-tech {
        margin: 1.5rem 0;
        font-size: 1.2rem;
    }

    .btn-tech-nav {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Scrollytelling Responsive */
    .scrolly-container {
        flex-direction: column-reverse;
    }

    .scrolly-text {
        width: 100%;
        padding: 2rem;
    }

    .scrolly-visuals {
        width: 100%;
        height: 50vh;
        position: relative;
        top: auto;
    }

    .step {
        height: auto;
        margin-bottom: 4rem;
        padding-left: 1.5rem;
        opacity: 1;
        /* Always visible on mobile for better scroll experience */
    }

    .step h3 {
        font-size: 2rem;
    }

    .visual-card {
        height: 80%;
        width: 90%;
    }

    /* Modules Grid Responsive */
    .modules-section {
        padding: 30px 20px;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Stats Responsive */
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Features Responsive */
    .features-section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-header h2 {
        font-size: 2rem;
    }

    /* CTA Banner Responsive */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .swiper-slide {
        width: 85%;
        height: auto;
        min-height: 550px;
    }

    .module-content {
        padding: 1.5rem;
    }

    .module-content h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .btn-tech {
        width: 100%;
        padding: 1rem;
    }
}