input[type="email"], input[type="text"], input[type="number"], select, textarea{
    height: 2.5rem;
    padding: .25rem .5rem;
    border-radius: .25rem;

    color: var(--c-font-500);
    font-weight: 300;
    border: 1.5px solid var(--c-primary-200);
    background-color: var(--c-primary-000);
}

input:focus-visible, select:focus-visible, textarea:focus-visible   {
    outline: var(--c-primary-400) auto 1px;
}

textarea{
    height: auto;
    min-height: 2.5rem;
    resize: vertical;
    padding: .5rem;
}

input, select, textarea{
    width: 100%;
}

select[value=""]{
    color: var(--c-font-400);
}

option{
    color: var(--c-primary-400);
}

input::placeholder, option:disabled{
    color: var(--c-font-400);
}

.input__container{
    text-align: left;
    position: relative;
}

.long{
    grid-column: span 2;
}

.select::after{
    content: '⌄';
    display: block;

    position: absolute;
    right: .5rem;
    bottom:.45rem;

    font-size: 1.75rem;
    color: var(--c-primary-400);
}

.textarea{
    grid-column: 1/-1;
}

.input__label{
    font-size: .8rem;
    margin-bottom: .25rem;
    margin-left: .25rem;
    color: var(--c-primary-400);
}

.required .input__label::after{
    content: '*';
    margin-left: .25rem;
    color: var(--c-accent-400);
}

.title, .subtitle, .testimonial__quote{
    font-family: var(--ff-title);
    line-height: 1.2;
    color: var(--c-primary-500);
}

.subtitle--border{
    border-bottom: 1.5px solid var(--c-primary-150);
    padding-bottom: .5rem;
}

.contrast .title, .contrast .subtitle{
    color: var(--white);
}

.testimonial__quote p{
    color: var(--c-primary-400);
    line-height: 1.3;
}

.testimonial__quote a{
    text-decoration: underline;
}

.testimonial__quote a:hover{
    color: var(--c-primary-600);
}

.testimonial__quote p + p{
    margin-top: 1rem;
}

p + .subtitle, p + .title{
    margin-top: 1.5rem;
}

.title + p{
    margin-top: .5rem;
}

.anchor{
    position: absolute;
    top: -94px;
}

.title{
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--c-primary-400);
}

.subtitle, .testimonial__quote{
    font-size: 1.5rem;
    margin-bottom: .75rem;
}

.title + .subtitle{
    margin-top: .25rem;
}

.note{
    font-size: .8rem;
    line-height: 1.4;
}

.deco{
    display: block;
    width: 5rem;
    height: 4px;
    margin: 1rem 0 2rem;
    background: var(--c-primary-400);
}

.contrast .deco{
    background-color: white;
}

.deco.center{
    margin: 1rem auto 2rem;
}

.container{
    padding: var(--section-padding-block) var(--section-padding-inline);
    margin: 0 auto;
    max-width: var(--max-width);
}

.button.contrast{
    --button-c  : white;
    --button-bkg: var(--c-primary-400);
}

.button{
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--button-c, var(--c-primary-400));

    display: inline-block;
    position: relative;
    padding: .65em 1.75em .55em 1.75em;
    
    border: 1.5px solid var(--button-c, var(--c-primary-400));
    border-radius: .25em;

    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;

    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.button.big{
    font-size: 1rem;
    padding: .75em 2em;
}

.button::before{
    content: '';
    display: block;
    position: absolute;
    inset: -2px;
    
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;

    z-index: -1;
    
    background-color: var(--button-c, var(--c-primary-400));
}

.button:hover::before, .button.solid::before{
    transform: scaleX(1);
    transform-origin: left;
}

.button:hover, .button.solid{
    color: var(--button-bkg, var(--white));
    box-shadow: inset 0 0 0 1px var(--button-c, var(--c-primary-400));
}

.button.solid:hover::before{
    transform: scaleX(0);
    transform-origin: right;
}

.button.solid:hover{
    color: var(--button-c, var(--c-primary-400));
    box-shadow: none;
}

.button.icon{
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
}

header{
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    /* position: fixed;
    inset: 0 0 auto 0;
    z-index: 99; */
}

.contact{
    width: 100%;
    color: white;
    font-weight: 400;
    background-color: var(--c-primary-400);

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    z-index: 2;

    padding: .25rem 1.5rem .2rem;
}

.contact__number {
    transition: opacity .3s ease;
}

.contact__ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact__a{
    color: var(--c-primary-400);
    background-color: white;

    width: 1.25rem;
    height: 1.25rem;
    margin: .2rem;
    border-radius: .25rem;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: opacity .3s ease;
}

.contact__a:hover, .contact__number:hover{
    opacity: .75;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 4rem;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
}

.nav__logo{
    height: 2.5rem;
    transition: all .3s ease;
    display: block;
    flex-shrink: 0;
}

.nav__img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.small .nav__logo{
    height: 2rem;
}

/* Old nav__ul styles - commented out for new modern nav
.nav__ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    margin-left: auto;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;

    margin-right: 1.5rem;
}
*/

.nav__move{
    -webkit-transform: translateX(14.25rem);
        -ms-transform: translateX(14.25rem);
            transform: translateX(14.25rem);
    -webkit-transition: -webkit-transform .3s ease-out .2s;
    transition: -webkit-transform .3s ease-out .2s;
    -o-transition: transform .3s ease-out .2s;
    transition: transform .3s ease-out .2s;
    transition: transform .3s ease-out .2s, -webkit-transform .3s ease-out .2s;
}

.move{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.nav__li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    position: relative;
}

.nav__li--close, .nav__li--cta{
    display: none;
}

.nav__ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav__li {
    margin: 0;
}

.nav__a{
    position: relative;
    padding: 0.5rem 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav__a:hover{
    color: var(--c-primary-400);
}

/* Featured nav item (TIC-RADAR) */
.nav__a--featured {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 0.6rem 1rem !important;
    border-radius: .5rem;
    font-weight: 600;
    color: #2563eb;
    position: relative;
    overflow: hidden;
}

.nav__a--featured::before {
    content: '';
    background-color: #2563eb!important;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    animation: nav-pulse 3s ease-in-out infinite;
}

.nav__a--featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(20deg);
    animation: nav-shimmer 4s ease-in-out infinite;
}

.nav__a--featured:hover {
    color: #2563eb;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.05) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 0.75rem rgba(20, 79, 81, 0.25);
}

.nav__a--featured:hover::before {
    opacity: 1;
}

@keyframes nav-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(20, 79, 81, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(20, 79, 81, 0);
    }
}

@keyframes nav-shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* Badge in nav */
.nav__badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px .5rem rgba(59, 130, 246, 0.3);
    margin-left: 0.5rem;
    animation: badge-glow 2.5s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
    }
}

.nav__badge--inline {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Modern nav CTA */
.nav-cta {
    background: var(--c-primary-400);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: hsl(var(--primary-dark));
    color: white;
}

/* Modern dropdown menu */
.nav__products-dropdown {
    position: relative;
}

.nav__products-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: 100px;
    padding: 0.5rem 0.5rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.nav__chevron {
    transition: transform 0.2s ease;
}

.nav__products-dropdown:hover .nav__chevron {
    transform: rotate(180deg);
}

.nav__products-toggle:hover {
    color: var(--c-primary-400);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    max-width: 90vw;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid hsl(var(--neutral-200));
    padding: 0.5rem;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.nav__products-dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-item {
    display: block;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    color: hsl(var(--neutral-700));
}

.nav__dropdown-item:hover {
    background: hsl(var(--neutral-50));
    color: var(--c-primary-400);
}

/* Featured dropdown item (TIC-RADAR) */
.nav__dropdown-item--featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    animation: dropdown-pulse 3.5s ease-in-out infinite;
}

.nav__dropdown-item--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    transition: width 0.3s ease;
    animation: sidebar-pulse 2s ease-in-out infinite;
}

@keyframes dropdown-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
    50% {
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    }
}

@keyframes sidebar-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Respeto a preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .nav__a--featured::before,
    .nav__a--featured::after,
    .nav__badge,
    .nav__dropdown-item--featured,
    .nav__dropdown-item--featured::before {
        animation: none !important;
    }
}

.nav__dropdown-item--featured:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(2px);
}

.nav__dropdown-item--featured:hover::before {
    width: 6px;
}

.nav__dropdown-item--featured .nav__dropdown-title {
    color: #2563eb;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;

    margin-bottom: .75rem;
}

.nav__dropdown-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.nav__dropdown-desc {
    font-size: 0.8rem;
    color: hsl(var(--neutral-600));
    margin: 0;
}

.nav__dropdown-group {
    padding: 0.5rem 0;
}

.nav__dropdown-group:not(:last-child) {
    border-bottom: 1px solid hsl(var(--neutral-200));
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
}

.nav__dropdown-group-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-primary-500);
    padding: 0.75rem 1rem 0.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, hsl(var(--primary-50)), transparent);
    border-left: 3px solid var(--c-primary-400);
}

.nav__dropdown-item--parent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 100%;
    width: 100%;
}

.nav__dropdown-link {
    flex: 1;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    display: block;
    white-space: normal;
}

.nav__dropdown-link .nav__dropdown-title {
    color: hsl(var(--neutral-700));
    white-space: nowrap;
}

.nav__dropdown-link .nav__dropdown-desc {
    color: hsl(var(--neutral-600));
    white-space: nowrap;
}

.nav__dropdown-item--parent:hover .nav__dropdown-link .nav__dropdown-title {
    color: var(--c-primary-400);
}

.nav__dropdown-item--parent:hover {
    background: hsl(var(--neutral-50));
}

.nav__dropdown-chevron {
    margin-right: 1rem;
    color: hsl(var(--neutral-400));
    flex-shrink: 0;
}

.nav__dropdown-item--parent:hover .nav__dropdown-chevron {
    color: var(--c-primary-400);
}

.nav__dropdown-submenu {
    position: absolute;
    left: calc(100% + 0.25rem);
    top: 0;
    min-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid hsl(var(--neutral-200));
    padding: 0.5rem;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.nav__dropdown-item--parent:hover .nav__dropdown-submenu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav__dropdown-submenu .nav__dropdown-item {
    border-radius: 0.5rem;
}

.nav__dropdown-submenu .nav__dropdown-item:hover {
    background: hsl(var(--neutral-50));
    color: var(--c-primary-400);
}

/* Modern testimonial carousel */
.testimonial-content {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-dot {
    cursor: pointer;
    background-color: var(--c-primary-050)!important;
}

.testimonial-dot:hover{
    background-color: var(--c-primary-100)!important;
}

.testimonial-dot.bg-primary {
    background: var(--c-primary-400) !important;
}

/* Complete modern layout system */
.flex {
    display: flex !important;
}

.flex-col {
    flex-direction: column !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.items-center {
    align-items: center !important;
}

.items-start {
    align-items: flex-start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-12 { gap: 3rem !important; }

.grid {
    display: grid !important;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

#prev-testimonial, #next-testimonial{
    cursor: pointer;
}

/* Container and layout */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: var(--max-width);
    overflow-x: hidden;
    box-sizing: border-box;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* ==== HERO SECTION COMPLETE STYLES ==== */
.hero {
    background: var(--gradient-hero);
    background-image: url('/static/spa/images/bkg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(11 121 121 / 85%) 0%, rgb(12 99 99 / 85%) 50%, rgb(1 63 63 / 90%) 100%);
    z-index: 1;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: flex-start;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: white;
    text-shadow: var(--shadow-lg);
    letter-spacing: -0.02em;
    font-family: var(--ff-title);
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--fw-normal);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn-hero,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-hero {
    background: linear-gradient(135deg, white 0%, #f8fffe 100%);
    color: var(--c-primary-500);
    box-shadow: 0 .5rem 25px rgba(255, 255, 255, 0.3);
    font-weight: 700;
    letter-spacing: 0.025em;
    border: 2px solid rgba(45, 134, 137, 0.1);
}

.btn-hero:hover {
    box-shadow: 0 0.75rem 35px rgba(255, 255, 255, 0.5), 0 0 0 3px rgba(45, 134, 137, 0.1);
    transform: translateY(-4px) scale(1.05);
    color: var(--c-primary-600);
    background: linear-gradient(135deg, white 0%, #f0fcfc 100%);
}

.btn-hero-secondary {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(.5rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    font-weight: 600;
    letter-spacing: 0.025em;
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 .5rem 25px rgba(0, 0, 0, 0.2);
}

/* Trust indicators */
.trust-indicators {
    width: 100%;
    margin-top: 2rem;
    padding: 2rem 1rem .75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item .dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

@media screen and (max-height: 800px) and (min-width: 1000px) {
    .buttons-trust__container{
        display: flex;
        margin: 2rem 0;
        /* flex-wrap: wrap; */
    }

    .hero-buttons{  
        flex-shrink: 0;
        margin: 0;
    }

    .trust-indicators{
        margin: 0 0 0 2rem;
        padding: 0 0 0 2rem;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .trust-items{
        height: 100%;
    }

    .btn-hero, .btn-hero-secondary{
        padding: .75rem 1.25rem;
    }
}

/* Certification Badges Container */
.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    width: 100%;
    margin-top: 1.5rem;
    align-items: center;
}

/* Verifactu Badge */
.verifactu-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    
    padding: .75rem 1.5rem .75rem .75rem;
    display: inline-block;

    min-width: min(400px, 100%);
    /* max-width: 360px; */
}

.ticketbai-badge {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.15) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.verifactu-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.verifactu-icon {
    width: 3rem;
    height: 3rem;
    color: white;
    flex-shrink: 0;
}

.verifactu-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.verifactu-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.verifactu-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Testimonial avatar */
.testimonial-avatar {
    width: 12.5rem !important;
    height: 12.5rem !important;
    border-radius: 50%;
    object-fit: cover;
}

/* Modern Form Styles - Reescrito desde cero */
.demo-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: min(3rem, 5%);
    box-shadow: 0 25px 50px -0.75rem rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
    width: 100%;
}

.modern-form {
    width: 100%;
}

/* Grid simple y directo */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Elementos específicos */
#demo-form .form-field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 0;
    box-sizing: border-box;
}

#demo-form .form-field-full {
    grid-column: span 2;
    min-width: 0;
}

#demo-form .form-privacy {
    grid-column: span 2;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    min-width: 0;
    max-width: 100%;
}

#demo-form .form-captcha {
    grid-column: span 2;
    text-align: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

/* Labels */
#demo-form .form-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

/* Inputs específicos */
#demo-form input,
#demo-form textarea {
    padding: 0.875rem 1rem !important;
    border: 1.5px solid #d9dbe0 !important;
    border-radius: .25rem !important;
    font-size: 1rem !important;
    background: white !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    transition: border-color 0.3s ease !important;
    min-height: 45px !important;
}

/* Base para selects (se sobrescribe abajo) */
#demo-form select {
    border: 1.5px solid #d9dbe0 !important;
    border-radius: .25rem !important;
    font-size: 1rem !important;
    background: white !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    transition: border-color 0.3s ease !important;
}

/* Estilos específicos para selects */
#demo-form select {
    padding: 0 2.8125rem 0 1rem !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'><path stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 1rem !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    height: auto !important;
    min-height: 45px !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
}

/* Opciones del select */
#demo-form select option {
    padding: .5rem 0.75rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

#demo-form input:focus,
#demo-form select:focus,
#demo-form textarea:focus {
    outline: none !important;
    border-color: #2dd4bf !important;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1) !important;
}

#demo-form textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid hsl(var(--neutral-200));
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--c-primary-400);
    box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb), 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-privacy {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.privacy-info {
    margin-bottom: 1rem;
}

.privacy-info p {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.privacy-link {
    color: var(--c-primary-400);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--c-primary-500);
}

.checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.checkbox-input:checked + .checkbox-custom {
    background: #2dd4bf;
    border-color: #2dd4bf;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

#demo-form .form-actions {
    text-align: center;
    margin-top: 32px;
    width: 100%;
    display: block;
    clear: both;
}

.btn-form-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-form-submit .btn-icon {
    width: 20px;
    height: 20px;
    margin-right: .5rem;
}

.form-captcha {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.form-captcha > div,
.form-captcha iframe {
    max-width: 100%;
    transform-origin: 0 0;
}

/* Responsive */
@media (max-width: 700px) {
    .demo-form-container {
        padding: 20px 0.75rem;
        margin: 0;
        border-radius: .5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .form-field-full,
    .form-privacy,
    .form-captcha {
        grid-column: span 1 !important;
    }
    
    #demo-form input,
    #demo-form textarea,
    #demo-form select {
        font-size: 1rem !important;
        padding: 0.75rem 0.875rem !important;
    }
    
    #demo-form select {
        padding: 0.75rem 40px 0.75rem 0.875rem !important;
    }
    
    /* Escalar captcha en móviles si es necesario */
    .form-captcha {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-captcha > div {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

@media (max-width: 380px) {
    .form-captcha > div {
        transform: scale(0.77);
        transform-origin: center center;
    }
}

/* Hero image */
.hero-image {
    position: relative;
    z-index: 10;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-image {
        height: 500px;
        max-height: 60vh;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-strong);
}

@media (min-width: 1024px) {
    .hero-slider {
        height: 100%;
    }
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 1rem;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 1024px) {
    .hero-img {
        object-fit: contain;
    }
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 2;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.hero-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.hero-nav-btn svg {
    color: hsl(var(--neutral-700));
}

.hero-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-placeholder {
    width: 100%;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    box-shadow: var(--shadow-strong);
}

.floating-element {
    position: absolute;
    padding: 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(.5rem);
    font-size: 0.875rem;
    display: none;
    box-shadow: var(--shadow-medium);
}

@media (min-width: 1024px) {
    .floating-element {
        display: block;
    }
}

.floating-element.top-right {
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.floating-element.bottom-left {
    bottom: 0;
    left: 0;
    background: hsl(var(--accent));
    color: white;
}

.floating-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.floating-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* ==== MODERN SECTION STYLES ==== */
.section {
    padding: 4rem 0 6rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.section-gray {
    background: hsl(var(--neutral-50));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--fw-bold);
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: var(--c-font-500);
    position: relative;
}

.section-title.decoration-line::after {
    width: 80px;
    height: 4px;
    margin-top: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--neutral-600));
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;

    hyphens: none;
}

/* ==== PRODUCTS SECTION ==== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 76.5rem) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.card-product {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid hsl(var(--neutral-200));
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.card-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary-soft);
    opacity: 0;
    transition: var(--transition-base);
}

.card-product:hover::before {
    opacity: 0.05;
}

.card-product:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--c-primary-050);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--c-font-500);
}

.product-info h3 {
    font-family: var(--ff-title);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;

    color: hsl(var(--neutral-800));
    hyphens: none;
    /* margin-bottom: 0.5rem; */
}

.product-info p {
    color: hsl(var(--neutral-600));
    margin: 0;
}

.product-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-badge {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-font-500);
    background: var(--c-primary-050);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;

    width: 100%;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 .5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsl(var(--neutral-600));
    margin-bottom: 0.5rem;
}

.product-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: hsl(var(--accent));
    border-radius: 50%;
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .product-actions {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }
}

.btn-cta {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: .5px;
    text-decoration: none;

    color: white;
    background: linear-gradient(135deg, var(--c-primary-400) 0%, var(--c-primary-500) 50%, var(--c-primary-600) 100%);
    
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(45, 134, 137, 0.3);
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    position: relative;
    overflow: hidden;
    padding: 0.75rem 1.5rem;
    
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--c-primary-500) 0%, var(--c-primary-600) 50%, var(--c-primary-400) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 .5rem 25px rgba(45, 134, 137, 0.5);
    color: white;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.card-product .product-actions .btn-cta{
    flex-grow: 1;
}

.product-actions .btn-cta{
    padding: calc(0.75rem + 2px) calc(1.5rem + 2px);
}

.iras-featured, .eu-special{
    padding: min(3rem, 5%);
    border-radius: 0.75rem;
}

.eu-special{
    background: var(--gradient-primary); 
    color: white; 
    padding: min(3rem, 5%);
    border-radius: 0.75rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-primary-lg);
}

.eu-special__badge{
    display: flex; 
    align-items: center; 
    gap: .75rem; 
    margin-bottom: 2rem; 
    flex-wrap: wrap;
}

.eu-special__badge svg{
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;

    fill: none;
}

.eu-special__badge span{
    background: rgba(255,255,255,0.2); 
    padding: 0.5rem 2rem; 
    border-radius: 1.25rem; 
    font-size: .9rem; 
    font-weight: 700; 
    text-transform: uppercase;
}

.eu-special__title{
    font-size: 1.75rem; 
    margin-bottom: 1rem; 
    font-weight: 700;
}

.eu-special__text{
    font-size: 1.1rem; 
    line-height: 1.7; 
    margin-bottom: 1.5rem; 
    opacity: 0.95;
}

.eu-special__info-container{
    display: flex; 
    gap: 2rem; 
    flex-wrap: wrap; 
    justify-content: center;
}

.eu-special__info{
    text-align: center; 
    background: rgba(255,255,255,0.15); 
    padding: 1rem 1.5rem; 
    border-radius: 0.5rem; 
    backdrop-filter: blur(10px);

    flex-basis: 31.5%;
    flex-grow: 1;
}

.eu-special__info-title{
    font-size: .75rem; 
    opacity: 0.9; 
    margin-bottom: .25rem;
}

.eu-special__info-data{
    font-size: 1rem; 
    font-weight: 700;
}

.iras-featured{
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.iras-featured__header{
    margin-bottom: 1rem;
}

.iras-featured__title{
    font-size: 2rem; 
    color: var(--c-primary-500); 
    margin-bottom: .5rem; 
    font-weight: 700;
}

.iras-featured__subtitle{
    font-size: 1.5rem; 
    color: var(--c-font-500); 
    margin-bottom: 1.5rem;
}

.iras-featured .eu-special__badge span{
    display: flex;
    gap: .5rem;
}

.iras-featured .eu-special__badge span:nth-child(1){
    background: var(--c-primary-050);
    color: var(--c-primary-400);
}

.iras-featured .eu-special__badge span:nth-child(2){
    background: var(--c-primary-100);
    color: var(--c-primary-500);
}

.iras-featured .eu-special__badge span:nth-child(3){
    background: var(--c-primary-125);
    color: var(--c-primary-600);
}

.products-grid.products-grid--iras{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;

    width: 100%;
}

.products-grid--iras .card-benefit{
    flex-basis: 31.5%;
}

/* =============== ADVANCED KEYFRAMES & ANIMATIONS =============== */

/* Pulso premium para CTAs */
@keyframes pulse-glow {
    0% {
        box-shadow: var(--shadow-primary);
        transform: scale(1);
    }
    50% {
        box-shadow: var(--shadow-primary-lg), 0 0 0 .5rem rgba(45, 134, 137, 0.1);
        transform: scale(1.02);
    }
    100% {
        box-shadow: var(--shadow-primary);
        transform: scale(1);
    }
}

/* Flotación sutil para elementos */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Brillo que pasa por encima */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Rotación suave infinita */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Aparición con bounce */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide elegante desde abajo */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradiente animado */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-cta:focus, .btn-cta.pulse {
    animation: pulse-glow 2s infinite;
}

/* Efecto especial para botones principales */
.btn-cta.primary-cta {
    font-size: var(--fs-lg);
    padding: var(--space-lg) var(--space-xl);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============== MODERN UTILITY CLASSES =============== */

/* Animaciones */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce-in {
    animation: bounceIn 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out;
}

.animate-shimmer {
    position: relative;
    overflow: hidden;
}

.animate-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Efectos de hover premium */
.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-.5rem);
    box-shadow: var(--shadow-xl);
}

.hover-glow {
    transition: var(--transition-base);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(45, 134, 137, 0.4);
}

.hover-scale {
    transition: var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Fondos y texturas */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-soft {
    background: var(--gradient-primary-soft);
}

.bg-gradient-glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-pattern-dots {
    background-image: radial-gradient(circle, rgba(45, 134, 137, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Efectos de texto */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--fw-bold);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-lg {
    text-shadow: 0 4px .5rem rgba(0, 0, 0, 0.2);
}

/* Bordes y sombras */
.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
    border-radius: var(--radius-lg);
}

.shadow-primary {
    box-shadow: var(--shadow-primary);
}

.shadow-primary-lg {
    box-shadow: var(--shadow-primary-lg);
}

/* Estados interactivos */
.interactive {
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(45, 134, 137, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.interactive:hover::before {
    opacity: 1;
}

.interactive:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Elementos decorativos */
.decoration-line {
    position: relative;
}

.decoration-line::after {
    content: '';
    position: absolute;
    bottom: -.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.decoration-corner {
    position: relative;
}

.decoration-corner::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--c-accent-400);
    border-radius: 50%;
    opacity: 0.8;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--c-primary-200);
    border-radius: 0.5rem;
    color: var(--c-primary-500);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    background: linear-gradient(135deg, white 0%, var(--c-primary-025) 100%);
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--c-primary-050) 0%, white 100%);
    color: var(--c-primary-600);
    border-color: var(--c-primary-400);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 20px rgba(45, 134, 137, 0.15);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 134, 137, 0.1), transparent);
    transition: left 0.4s;
}

.btn-secondary:hover::before {
    left: 100%;
}

/* Cross-platform features */
.features-banner {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--c-primary-400) 0%, var(--c-primary-500) 50%, var(--c-primary-600) 100%);
    border-radius: 1rem;
    padding: min(3rem, 5%);
    color: white;
}

.features-banner-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-banner h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: .25rem;
    font-family: var(--ff-title);
}

.features-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 76.5rem) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ==== TIC-RADAR SECTION ==== */
:root{
    --ff-title: 'Poppins', sans-serif;
    --ff-body: 'Nunito Sans', sans-serif;
    
    /* Design system basado en Imsa-lovable */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --radius-sm: 4px;
    --radius-md: .5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Legacy variables for compatibility */
    --primary: 213 94% 68%;
    --primary-foreground: 0 0% 98%;
    --primary-light: 213 94% 78%;
    --primary-dark: 213 94% 58%;
    --accent: 199 89% 48%;
    --accent-foreground: 0 0% 98%;
    --accent-hover: 199 89% 38%;
    --neutral-50: 210 20% 98%;
    --neutral-100: 210 20% 96%;
    --neutral-200: 210 16% 93%;
    --neutral-300: 210 14% 89%;
    --neutral-600: 210 12% 52%;
    --neutral-700: 210 12% 34%;
    --neutral-800: 210 12% 16%;
    
    --max-width: 1300px;
    --section-padding-block: 4rem;
    --section-padding-inline: 1.5rem;
    --border-radius: var(--radius-md);
}

.tic-radar-feature-content p {
    color: hsl(var(--neutral-600));
    font-size: 0.875rem;
    margin: 0;
}

.tic-radar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tic-radar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.tic-radar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tic-radar-icon {
    width: 2rem;
    height: 2rem;
    color: var(--c-primary-400);
}

.tic-radar-badge {
    color: var(--c-primary-500);
    background: var(--c-primary-050);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.tic-radar-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--neutral-800));
    margin-bottom: 1.5rem;
    font-family: var(--ff-title);
}

.tic-radar-description {
    font-size: 1.125rem;
    color: hsl(var(--neutral-600));
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tic-radar-features {
    margin-bottom: 2rem;
}

.tic-radar-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tic-radar-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--c-primary-400);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.tic-radar-feature-content h4 {
    font-weight: 600;
    color: hsl(var(--neutral-800));
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.tic-radar-feature-content p {
    color: hsl(var(--neutral-600));
    font-size: 0.875rem;
    margin: 0;
}

.tic-radar-seals {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tic-radar-seal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.tic-radar-seal.eu {
    background: var(--c-primary-400);
}

.tic-radar-seal.ico {
    background: var(--c-primary-500);
}

.tic-radar-seal.grant {
    background: var(--c-accent-400);
}

.tic-radar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .tic-radar-actions {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }
}

.tic-radar-visual {
    position: relative;
    overflow: hidden;
}

.tic-radar-card {
    background: linear-gradient(135deg, var(--c-primary-400) 0%, var(--c-primary-500) 50%, var(--c-primary-600) 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
    box-shadow: var(--shadow-medium);
}

@media (min-width: 1024px) {
    .tic-radar-card {
        padding: 3rem;
    }
}

.tic-radar-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tic-radar-stat {
    text-align: center;
}

.tic-radar-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--ff-title);
    color: white;
}

.tic-radar-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.tic-radar-funding {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.tic-radar-funding-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.tic-radar-funding-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tic-radar-funding-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Floating elements for TIC-RADAR */
.tic-radar-floating {
    position: absolute;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    font-size: 0.75rem;
    display: none;
}

@media (min-width: 1024px) {
    .tic-radar-floating {
        display: block;
    }
}

.tic-radar-floating.top-right {
    top: 0;
    right: 0;
    background: var(--c-primary-400);
    color: white;
}

.tic-radar-floating.bottom-left {
    bottom: 0;
    left: 0;
    background: white;
    color: hsl(var(--neutral-800));
}

.tic-radar-floating-title {
    font-weight: 600;
}

/* ==== BENEFITS SECTION ==== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.grid--even{
    grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr));
}

.card-benefit {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid hsl(var(--neutral-200));
    text-align: center;
    transition: all 0.3s ease;
}

.card-benefit:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.benefit-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: var(--c-primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    fill: none;
    width: 2rem;
    height: 2rem;
    color: var(--c-primary-400);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--neutral-800));
    margin-bottom: 1rem;
    font-family: var(--ff-title);
}

.benefit-description {
    color: hsl(var(--neutral-600));
    line-height: 1.6;
    margin: 0;
}

/* Stats section */
.stats-section {
    margin-top: 4.5rem;
    padding-top: 4.5rem;
    border-top: 1px solid hsl(var(--neutral-200));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .stats-grid--four{
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 1.5rem 1.25rem;
}

.stat-number {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--c-primary-400);
    margin-bottom: 0.75rem;
    font-family: var(--ff-title);
    line-height: 1;
}

.stat-label {
    color: hsl(var(--neutral-600));
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }

.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: var(--border-radius);
}

.rounded-2xl {
    border-radius: 1rem;
}

.bg-primary\/10 {
    background-color: hsl(var(--primary) / 0.1);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-accent\/90 {
    background-color: hsl(var(--accent) / 0.9);
}

.text-primary {
    color: var(--c-primary-400);
}

.text-accent {
    color: hsl(var(--accent));
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-t {
    border-top-width: 1px;
}

.border-neutral-200 {
    border-color: hsl(var(--neutral-200));
}

.border-neutral-300 {
    border-color: hsl(var(--neutral-300));
}

.bg-neutral-50 {
    background-color: hsl(var(--neutral-50));
}

.bg-neutral-100 {
    background-color: hsl(var(--neutral-100));
}

.text-neutral-600 {
    color: hsl(var(--neutral-600));
}

.text-neutral-700 {
    color: hsl(var(--neutral-700));
}

.text-neutral-800 {
    color: hsl(var(--neutral-800));
}

.hover\:bg-neutral-50:hover {
    background-color: hsl(var(--neutral-50));
}

.hover\:bg-neutral-400:hover {
    background-color: hsl(var(--neutral-400));
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

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

.text-left {
    text-align: left;
}

.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-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.p-3 { padding: 0.75rem; }
.p-8 { padding: 2rem; }

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

.shadow-strong {
    box-shadow: var(--shadow-strong);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.leading-relaxed {
    line-height: 1.625;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.italic {
    font-style: italic;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

.cursor-pointer {
    cursor: pointer;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.overflow-hidden {
    overflow: hidden;
}

.max-w-4xl {
    max-width: 56rem;
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: var(--max-width);
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-green-600 {
    background-color: #16a34a;
}

.text-white {
    color: white;
}

.opacity-60 {
    opacity: 0.6;
}

.flex-1 {
    flex: 1 1 0%;
}

a.nav__a::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--c-primary-100);
    
    -webkit-transform: scaleX(0);
    
        -ms-transform: scaleX(0);
    
            transform: scaleX(0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

a.nav__a:hover::before{
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
}

span.nav__a .chevron{
    display: none;
    width: .75em;
    height: .75em;
    margin-left: .5em;
}

.nav__button{
    margin-left: 1.5rem;
}

#nav__cta{
    transform: translateY(-150%);
    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform .3s ease-out;
}

#nav__cta.show{
    transform: translateY(0);
}

.nav__burger{
    display: none;

    margin-left: auto;
    color: var(--c-primary-400);
    cursor: pointer;
    padding: .25rem;
    border-radius: .25rem;
}

.nav__ul + .nav__button{
    display: none;
}

.nav__burger:hover{
    background-color: var(--c-primary-100);
}

.nav__burger svg{
    width: 1.5rem;
    height: 1.5rem;
}

.nav__sec-ul{
    position: absolute;
    top: 100%;
    left: calc(50% - 150px);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem;

    border-radius: .25rem;
    width: 300px;
    max-width: 300px;

    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.nav__li:hover .nav__sec-ul{
    opacity: 1;
    pointer-events: auto;
}

.nav__sec-li .nav__a{
    margin: 0;
}

header + *{
    margin-top: 60px!important;
}

.hero{
    position: relative;
    z-index: 0;
    min-height: 100vh;
    flex-direction: column;
    /* height: 100vh; */
}

.slider{
    position: relative;

    width: 100%;
    height: 100%;
    overflow: hidden;
    flex-grow: 1;

    background-color: var(--c-primary-400);
    background: linear-gradient(90deg, #144f51 15%, #144f511b 100%);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider__ul{
    position: absolute;
    left: -100%;
    
    width: var(--slider-width, 500%);
    height: 100%;
    display: grid;
    grid-template-columns: repeat(var(--slider-count, 5), 1fr);
    grid-template-rows: 100%;
    max-width: none!important;

}

.slider__ul.shifting {
    /* transition: all 1s ease-in-out; */
    transition: left 1.5s ease-in-out;
}

.slider__li{
    width: 100%;
    overflow: hidden;
}

.slider__img{
    position: relative;
    height: 100%;
}

.slider__arrow{
    opacity: 0;
    position: absolute;

    top: calc( 50% - 4rem );
    z-index: 2;

    width: 2rem;
    height: 8rem;

    color: white;
    background-color: rgba(255, 255, 255, 0.15);

    transition: all .2s ease;
    cursor: pointer;
}

.slider:hover .slider__arrow{
    opacity: 1;
}

.slider__arrow:hover{
    width: 3rem;
    background-color: rgba(255, 255, 255, 0.35);
}

.slider__arrow.left{
    left: 0;
    border-radius: 0 .25rem .25rem 0;
}

.slider__arrow.left:hover{
    padding-left: 1rem;
}

.slider__arrow.right{
    right: 0;
    border-radius: .25rem 0 0 .25rem;
}

.slider__arrow.right:hover{
    padding-right: 1rem;
}

.slider__info{
    position: relative;
    z-index: 1;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    padding: 5% 10%;
    max-width: 1500px;
    width: 100%;
    height: 100%;

    color: white;
    /* background: linear-gradient(90deg, #032d2e66 0%, #125d5f20 80%, #125d5f00 100%); */
}

.buttons-trust__container{
    width: 100%;
}

.slider__title{
    font-family: var(--ff-title);
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.1;
    hyphens: none;
}

.slider__subtitle{
    margin-top: 1.75rem;
    font-size: 2rem;
    line-height: 1.3;
}

.slider__text{
    font-weight: 300;
    font-size: 1.25rem;
    margin-top: 2rem;
}

.slider__button{
    margin-top: 5rem;
}

.hero__continue{
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    color: white;
    pointer-events: none;
}

.hero__button{
    font-size: .8rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    cursor: pointer;
    pointer-events: auto;
}

.hero__deco{
    display: inline-block;
    width: 1px;
    height: 3rem;
    margin-top: .5rem;

    background-color: white;
    transition: all .3s ease;
}

.hero__button:hover .hero__deco{
    height: 3.5rem;
}

.services{
    background-color: var(--c-primary-000);
}

.services__wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 2rem;

    border-radius: .5rem;

    margin-top: 3rem;
}

.services__svg{
    height: 50px;
    margin-bottom: 1rem;
    color: var(--c-primary-400);
}

.services__item{
    padding: 2rem;
    border: 1px solid hsl(var(--neutral-200));
    box-shadow: var(--shadow-soft);
    border-radius: var(--border-radius);
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services__item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

/* Modern product grid styles */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    overflow: visible;
}

@media (min-width: 76.5rem) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid hsl(var(--neutral-200));
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.product-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.product-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--neutral-800));
    margin-bottom: 0.5rem;
    font-family: var(--ff-title);
}

.product-card p {
    font-size: 0.875rem;
    color: hsl(var(--neutral-600));
    margin: 0;
}

.services__item p{
    padding: 0 1rem;
}

.services__programs{
    border-top: 2px solid var(--c-primary-100);
    margin-top: 3rem;

    display: grid;
    grid-template-columns: repeat(var(--program-count, 2), 1fr);
}
.services__program{
    padding: 1rem;
}

.services__program + .services__program{
    border-left: 2px solid var(--c-primary-100);
}

.services__program img {
    width: 200px;
    height: 100px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.testimonial{
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/static/spa/images/bkg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-container {
    position: relative;
    z-index: 1;
}

.clients{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.clients__client{
    display: flex;
    justify-content: flex-start;
    align-items: center;

    text-align: left;
    padding: 1rem;
    background-color: var(--c-primary-300);
    
    border: 1.5px solid var(--c-primary-300);
    border-bottom: none;
    border-radius: .5rem .5rem 0 0;

    cursor: pointer;
    transition: all .3s ease;
}

.clients__client:hover{
    background-color: var(--c-primary-200);
}

.clients__client.active{
    border-color: var(--c-primary-100);
    background-color: var(--c-primary-200);
}

.clients__info{
    margin: 0 0 0 1.5rem;
}

.clients__name{
    margin: 0;
}

.clients__credential{
    opacity: .75;
}

.clients__img-container{
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;

    border-radius: 50%;
    overflow: hidden;
}

.testimonial__wrapper{
    position: relative;
    background-color: white;
    border-radius: 0 0 .5rem .5rem;
    overflow: hidden;
}

.testimonial__quote{
    text-align: left;
}

.testimonial__deco{
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.testimonial__deco.left{
    left: 3rem;
    top: 1rem;
}

.testimonial__deco.right{
    right: 3rem;
    bottom: 1rem;
}

.testimonial__deco svg{
    height: 8rem;
    color: var(--c-primary-050);
}

.testimonial__ul{
    position: relative;
    z-index: 1;
    margin: 0 auto;
    left: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 300%;

    transition: left 1.25s ease-in-out;
}

.testimonial__li{
    padding: 4rem 10%;
}

.testimonial__quote span{
    display: block;
    margin-top: 1rem;
}

p.testimonial__name{
    color: var(--c-font-400);
    text-align: left;
    margin-top: 2rem;
}

.cta{
    position: relative;
}

.cta .button{
    margin: 0 auto;
}

#demo-form{
    display: grid;
    gap: 1rem;
}

#demo-form .button{
    margin-top: 2rem;
}

.demo-form__full-width{
    grid-column: 1/-1; 
    text-align: left;

    font-size: .8rem;
    color: var(--c-primary-400);
}

footer{
    font-size: .9rem;
    color: hsl(var(--neutral-100));
    background: hsl(var(--neutral-800));
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer__columns{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 5%;
}

.footer__title{
    font-family: var(--ff-title);
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1.5px solid var(--c-primary-500);
    padding-bottom: .5rem;
}

.footer__ul{
    margin-top: 1rem;
}

.footer__li + .footer__li{
    margin-top: .5rem;
}

.footer__logo img{
    max-width: 300px;
    filter: brightness(0) invert(1);
    opacity: .75;
}

.footer__link{
    display: inline;
}

.footer__a:hover, .footer__link:hover{
    color: white;
}

.footer__form{
    position: relative;
    z-index: 1;

    margin-top: 3rem;
}

.footer__form-wrapper{
    display: flex;
}

.footer__form input{
    color: white;
    border: 1.5px solid var(--c-font-100);
    flex-grow: 1;
    margin-right: .5rem;
    background-color: transparent;
}

.footer__form input::placeholder{
    color: var(--c-font-100);
}

.footer__form .button{
    --button-c: var(--c-font-100);
    --button-bkg: var(--c-primary-600);
}

footer .contact__ul{
    margin-top: 2rem;
    justify-content: flex-start;
}

footer .contact__a{
    opacity: .5;
}

.copy{
    text-align: center;
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.copy__ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.copy__li{
    margin: 0 .5rem;
}

.copy__a{
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copy__button{
    display: inline;
    font-weight: 300;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    margin: .75rem 0 .25rem;
    cursor: pointer;
}

.copy__a:hover, .copy__button:hover{
    color: white;
}

.checkbox__label{
    flex-grow: 1;
    margin-top: 1rem;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
}

.checkbox{
    opacity: 0;
    pointer-events: none;
    position: absolute;
    height: 1rem;
    width: 1rem;
    margin-top: 0.3rem;
}

.checkbox__styled{
    display: inline-block;

    width: 1rem;
    height: 1rem;
    margin-right: .25rem;

    border: 1.5px solid var(--c-primary-400);
    border-radius: .25rem;
    margin-bottom: -.2em;
}

.checkbox:checked + .checkbox__styled{
    box-shadow: inset 0 0 0 .2rem white,  inset 0 0 0 1rem var(--c-primary-400);
}

.checkbox__text{
    font-size: 1rem;
    color: var(--c-font-400);
}

.news{
    background-color: var(--c-primary-025);
}

.news__container{
    padding: var(--section-padding-block) 0;
    max-width: var(--max-width);
    margin: 0 auto;

    position: relative;
    z-index: 1;
}

.news__wrapper{
    overflow: auto;
}

.news .deco{
    margin-bottom: 1rem;
}

.news__ul{
    padding-top: 0;
    padding-bottom: 0;
    padding: 1rem var(--section-padding-inline);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 1rem;

    text-align: left;
}

.news__column{
    border-radius: .5rem;
    background-color: white;
    -webkit-box-shadow: 0 0 20px 0 #144a4c17;
            box-shadow: 0 0 20px 0 #144a4c17;
    overflow: hidden;
    border: 1px solid var(--c-primary-025);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;

    
    border: 1px solid var(--c-primary-050);
    transition: all .3s ease;
}

.news__column:hover {
    transform: translateY(-.5rem);
    -webkit-box-shadow: 0 .5rem 20px 0 #144a4c17;
            box-shadow: 0 .5rem 20px 0 #144a4c17;
}

.news__img img{
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
    height: 200px;

    border-bottom: 1px solid var(--c-primary-050);
}

.news__info{
    padding: 1.5rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.news__ul .subtitle{
    margin-top: .5rem;
    white-space: normal;
    font-weight: bold;
}

.news__a{
    margin: 0 1.5rem 1.5rem;
    color: var(--c-primary-200);
}

.news__a svg{
    display: inline;
    height: .5em;
    vertical-align: middle;
    width: auto;
    margin-left: .5em;
    fill: currentColor;

    -webkit-transition: all .3s ease;

    -o-transition: all .3s ease;

    transition: all .3s ease;
}

.news__column:hover .news__a svg{
    margin-left: .75em;
}

.new-detail__info + .title{
    margin: 0;
}

.new-detail__share .subtitle{
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-primary-100);
}

.new-detail__ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-detail__li{
    width: 2.5rem;
    height: 2.5rem;
    opacity: .75;

    color: var(--c-primary-400);

    transition: opacity .3s ease;
}  

.new-detail__li:hover{
    opacity: 1;
}

.new-detail__li + .new-detail__li {
    margin-left: 1rem;
}

.new-detail__img{
    max-height: 650px;
}

.news__button{
    margin-top: 2rem;
}

.text-container{
    margin: 0 auto;
    max-width: calc( var(--max-width) / 1.5 );
}

.text-container figure + p{
    margin-top: 2rem;
}

.text-container p + p{
    margin-top: 1rem;
}

.text-container ul, .text-container ol{
    padding: 1rem 0 1rem 2rem;
}

.text-container ul li{
    list-style: circle;
}

.text-container ol li{
    list-style: decimal;
}

.text-container li + li{
    margin-top: .5rem;
}

.text-container ul a, .text-container ol a{
    display: inline;
}

.first-container{
    margin-top: 5.5rem;
}

.error{
    min-height: 80vh;
    background-color: var(--c-primary-025);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.error__svg, .demo-success__svg{
    --svg-size: 4rem;

    width: var(--svg-size);
    height: var(--svg-size);

    margin: 0 auto 2rem;
    color: var(--c-primary-200);
}

.demo-success__svg{
    --svg-size: 6rem;
}

.error .subtitle{
    margin-top: 0;
}

.error span{
    max-width: 500px;
    margin: 0 auto;
}

.success{
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.errorlist{
    text-align: left;
}

.success > .errorlist{
    border-bottom: 1.5px solid var(--c-font-100);
}

.cookie-banner__container{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}

.cookie-banner__container.inactive{
    display: none;
}

.cookie-banner{
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;

    position: relative;
    bottom: 0;
    right: 0;

    width: 100%;
    max-width: 770px;
    max-height: 100vh;
    overflow-y: auto;

    background-color: white;
    border-radius: .25rem 0 0 0;
    border-top: 1px solid var(--c-primary-400);
    border-left: 1px solid var(--c-primary-400);
    box-shadow: 0 0 20px 0 #144a4c4b;
    z-index: 100;

    transition: transform .75s ease, opacity .75s ease;
}

.cookie-banner.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__text-container{
    padding: 2rem;
}

.cookie-banner p + p{
    margin-top: .5rem;
}

.cookie-banner__buttons{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.cookie-banner__button{
    flex-grow: 1;
    flex-shrink: 0;
    padding: 1rem;

    color: var(--c-primary-400);
    border-top: 1px solid var(--c-primary-100);
    border-bottom: 1px solid var(--c-primary-100);
    background-color: white;
    
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;

    overflow: hidden;

    cursor: pointer;
    transition: all .3s ease;
}

.cookie-banner__button:hover{
    background-color: var(--c-primary-050);
}

.configure #config{
    background-color: var(--c-primary-050);
}

.cookie-banner__button.solid{
    color: white;
    background-color: var(--c-primary-400);
    border-top: 1px solid var(--c-primary-400);
    border-bottom: 1px solid var(--c-primary-400);
}

.cookie-banner__button.solid:hover{
    background-color: var(--c-primary-500);
}


.cookie-banner__accordion{
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows .5s ease;
}

.configure .cookie-banner__accordion{
    grid-template-rows: 1fr;
}

.cookie-banner__accordion-body{
    min-height: 0;
}

.cookie-banner__configs{
    overflow: auto;
}

.cookie-banner__config p{
    padding: 1rem 2rem;
}

.cookie-banner__config + .cookie-banner__config{
    border-top: 1px solid var(--c-primary-100);
}

.cookie-banner input{
    display: none;
}

.cookie-banner__label{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;

    cursor: pointer;
}

.cookie-banner__label:hover{
    background-color: var(--c-primary-000);
}

.cookie-banner__checkbox{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 4rem;
    height: auto;
    flex-shrink: 0;

    color: var(--c-primary-150);
    background-color: var(--c-primary-000);
    border-right: 1px solid var(--c-primary-100);
}

.cookie-banner__label:hover .cookie-banner__checkbox{
    color: var(--c-primary-150);
    background-color: var(--c-primary-025);
}

.cookie-banner__label input:checked + .cookie-banner__checkbox{
    color: var(--c-primary-400);
    background-color: var(--c-primary-050);
}

.cookie-banner__checkbox svg{
    width: 1.25rem;
}

.cookie-banner__label .checked, .cookie-banner__label input:checked + .cookie-banner__checkbox .unchecked{
    display: none;
}

.cookie-banner__label input:checked + .cookie-banner__checkbox .checked{
    display: block;
}

.cookie-banner__checkbox-text{
    padding: 1rem 2rem;
}

.help-desk{
    margin-top: 6rem;
    background-color: var(--c-primary-000);
}

.help-desk > p{
    margin-bottom: 3rem;
}

.help-desk__links{
    max-width: calc(var(--max-width) / 2.5);
    margin: 0 auto;
}

.help-desk__li + .help-desk__li{
    margin-top: 1rem;
}

.help-desk__a{
    color: var(--c-primary-400);
    border: 1.5px solid var(--c-primary-150);
    box-shadow: 0 0 40px 0 #1e717406;
    background-color: white;
    border-radius: .25em;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    padding: .5rem;
    transition: margin .3s ease, background-color .3s ease;
}

.help-desk__a:hover{
    background-color: var(--c-primary-025);
    margin: 0 -.5rem;
}

.help-desk__icon{
    width: 3.5rem;
    height: 3.5rem;
    padding: .5rem;

    flex-shrink: 0;

    color: white;
    background-color: var(--c-primary-400);
    margin-right: 1rem;
    border-radius: .25em;
}

.help-desk__download{
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    margin-right: 1rem;

    opacity: 0;
    transition: opacity .3s ease;
}

.help-desk__a:hover .help-desk__download{
    opacity: 1;
}

.help-desk__info{
    font-weight: 500;
    margin-right: auto;
    text-align: left;
}

.help-desk__info span{
    display: block;
    font-size: .8rem;
    font-weight: 300;
    color: var(--c-font-400);
}

.page-hero{
    max-width: 1000px; 
    margin: 0 auto; 
    text-align: center;
}

.page-hero__logo-container{
    display: flex; 
    justify-content: center; 

    max-width: min( 100px, 100% );
    margin: 0 auto 1.5rem;
}

.page-hero__logo{
    width: 100%; 
    height: 100%; 
    object-fit: contain;
}

.page-hero__badges{
    display: flex; 
    gap: .75rem; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-bottom: 1.5rem;
}

.page-hero__badge{
    display: inline-flex; 
    align-items: center; 
    gap: .5rem; 
    background: rgba(255,255,255,0.2); 
    color: white; 
    padding: .5rem 1rem; 
    border-radius: 1.25rem; 
    font-size: 0.875rem; 
    font-weight: 600; 
    backdrop-filter: blur(10px);
}

.page-hero__title{
    font-size: clamp(2.5rem, 6vw, 4rem); 
    font-weight: 700; 

    margin-bottom: .75rem;
    margin-top: 3rem;
    hyphens: none;
}

.page-hero__subtitle{
    font-size: clamp(1.2rem, 3vw, 1.8rem); 
    opacity: .95;
    hyphens: none;
}

.page-hero__text{
    font-size: clamp(1rem, 2vw, 1.2rem); 
    margin: 0 auto 3rem;
    opacity: 0.9;
    width: 60%;
    hyphens: none;
}


/* Responsive Media Queries */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:text-left {
        text-align: left;
    }
}

@media (min-width: 76.5rem) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .lg\:p-12 {
        padding: 3rem;
    }
    
    .lg\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .lg\:block {
        display: block;
    }
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
    }
    
    .slider {
        height: 100%;
    }
    
    .slider__info {
        padding: 0 5%;
    }
    
    .slider__title {
        font-size: 3.5rem;
    }
    
    .slider__subtitle {
        font-size: 1.5rem;
    }
    
    .certification-badges {
        gap: 0.85rem;
    }
    
    .verifactu-badge {
        min-width: 240px;
        max-width: 350px;
    }
    
    .text-hero {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .text-hero-sub {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    .grid.lg\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav__dropdown-menu {
        position: relative;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: none;
        background: hsl(var(--neutral-50));
    }
    
    .nav__products-dropdown:hover .nav__dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 700px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    .container, .section, main, header, footer {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .hero {
        min-height: auto;
        padding: 0;
        margin-top: 0 !important;
        display: block;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .hero .container {
        padding-top: 100px;
        padding-bottom: 3rem;
        width: 100%;
    }
    
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1.5rem;
        max-width: 100%;
        overflow: hidden;
        height: 300px;
        flex-shrink: 0;
    }
    
    .hero-nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero-slider-dots {
        bottom: 1rem;
    }
    
    .hero-dot {
        width: 0.6rem;
        height: 0.6rem;
    }
    
    .hero-slider {
        max-width: 100%;
        height: 100%;
    }
    
    .hero-slide {
        height: 100%;
    }
    
    .hero-img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .trust-indicators {
        margin-top: 1rem;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .verifactu-badge {
        margin-top: 1rem;
    }
    
    .verifactu-content {
        padding: 0.75rem;
    }
    
    .verifactu-title {
        font-size: 0.85rem;
    }
    
    .verifactu-subtitle {
        font-size: 0.75rem;
    }
    
    .section {
        padding: 3rem 0 4rem;
    }
    
    .text-section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .card-product,
    .card-benefit,
    .card-testimonial {
        padding: 1.5rem;
    }
    
    .grid.md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .grid.md\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .flex.flex-col.sm\:flex-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .testimonial-content {
        min-height: 250px;
    }
    
    .text-xl.lg\:text-2xl {
        font-size: 1.125rem;
        line-height: 1.625;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #demo .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .slider {
        height: 100%;
    }
    
    .text-hero {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .text-hero-sub {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section {
        padding: 2rem 0 3rem;
    }
    
    .grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bg-gradient-primary.rounded-2xl.p-8 {
        padding: 1.5rem;
    }
    
    .text-3xl.lg\:text-4xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .text-2xl.lg\:text-3xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .space-y-6 > * + * {
        margin-top: 1rem;
    }
    
    .gap-8 {
        gap: 1rem;
    }
    
    .mb-16 {
        margin-bottom: 2rem;
    }
    
    .mt-16 {
        margin-top: 2rem;
    }
    
    .hidden.lg\:block {
        display: none !important;
    }
}

@media screen and (max-width: 1500px) {
    .news__ul--no-slider{
        grid-template-columns: repeat(3, 1fr);
    }

    .news__ul--slider{
        width: calc(((var(--news-count) / 2) * 100%) - ( var(--section-padding-inline) * 2 ));
        grid-template-columns: repeat(var(--news-count), 1fr);
    }

    .cookie-banner{
        border-left: none;
        border-radius: 0;
    }
}

@media screen and (max-width: 1150px) {
    .news__ul--no-slider{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
}

@media screen and (max-width: 770px) {
    .news__ul--no-slider{
        grid-template-columns: 1fr;
        gap: 2rem 1rem;
    }

    .news__ul--slider{
        width: calc( (var(--news-count) * 100%)  - ( var(--section-padding-inline) * var(--news-count) ) );
    }

    .help-desk__a:hover{
        margin: 0;
    }    

    .help-desk__download{
        display: none;
    }
}

@media screen and ( max-width: 1000px ), screen and ( max-width: 900px ) and ( orientation: landscape ){
    .footer__columns{
        grid-template-columns: repeat(2, 1fr);
    }

    #demo-form{
        grid-template-columns: repeat(2, 1fr);
    }

    .long{
        grid-column: span 1;
    }

    .clients{
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(auto-fit, minmax(min(235px, 100%), 1fr));
        gap: .5rem;
        order: 1;
    }

    .clients__client{
        border: 1.5px solid var(--c-primary-300);
        border-radius: .5rem;
        padding: .5rem;
    }

    .clients__img-container{
        width: 3rem;
        height: 3rem;
    }

    .clients__info{
        margin-left: .5rem;
    }

    .testimonial__wrapper{
        margin-bottom: 1rem;
        border-radius: .5rem;
    }
}

@media screen and ( max-width: 770px ), screen and ( max-width: 900px ) and ( orientation: landscape ), (pointer:coarse) {
    .title{
        font-size: 2rem;
    }
    
    .subtitle, .testimonial__quote{
        font-size: 1.25rem;
    }

    .cookie-banner{
        border-top: none;
        border-radius: 0;
        
    }

    .nav{
        position: fixed;
        padding: 0 1rem;
        gap: 0.5rem;
        width: 100%;
        top: 2rem;
        left: 0;
    }
    
    .nav__logo {
        max-width: 150px;
    }

    .nav__ul{
        position: fixed;
        right: 0;
        top: 0;
        z-index: 10;

        overflow: auto;

        margin: 0;
        min-width: 280px;
        max-width: 90vw;

        gap: 0;

        height: 100vh;
        -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
                transform: translateX(100%);

        -webkit-box-pack: start;

            -ms-flex-pack: start;

                justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        color: white;
        background-color: var(--c-primary-400);
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -o-transition: transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    }

    .nav__ul.open{
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
    }

    .nav__li--close{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        justify-content: flex-end;
        /* height: 3.75rem; */
        padding: .25rem .5rem;
    }

    .nav__li--close button{
        background: transparent;
        border: none;
        color: white;
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__li--close svg{
        width: 1.5rem;
        height: 1.5rem;
    }

    .nav__li--cta{
        display: block;
        text-transform: uppercase;

    }

    .nav__li{
        width: 100%;
        border-bottom: 1.5px solid var(--c-primary-200);
        justify-content: flex-start;
    }

    .nav__li:first-child{
        border-top: 1.5px solid var(--c-primary-200);
    }

    .nav__a{
        margin: 0;
        padding: 1rem 2rem;
        color: white !important;
        display: block;
    }
    
    .nav__a--featured {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.05) 100%);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        margin: 0.5rem 1rem;
        padding: 1rem 1.5rem !important;
        border-radius: .5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;

        color: #2563eb;
    }
    
    .nav__badge--inline {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        padding: 0.3rem 0.6rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .nav__products-toggle {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 1rem 2rem;
        text-align: left;
        color: white !important;
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        font-family: inherit;
    }
    
    .nav__products-toggle .nav__chevron {
        width: 1rem;
        display: block;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
        fill: white;
    }
    
    .nav__products-toggle[aria-expanded="true"] .nav__chevron {
        transform: rotate(180deg);
    }

    .nav__dropdown-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;

        opacity: 1;
        visibility: visible;
        transform: translate(0)!important;
    }

    .nav__dropdown-menu.open {
        max-height: 10000px;
    }

    .nav__dropdown-item {
        padding: 1rem;
        padding-left: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        color: white !important;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    .nav__dropdown-item--parent{
        padding: 0;
    }
    
    .nav__dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .nav__dropdown-title {
        color: white !important;
        font-size: 1rem;
        margin-bottom: 0.25rem;
        font-weight: 500;
    }

    .nav__dropdown-desc {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .nav__dropdown-group {
        padding: 0;
    }

    .nav__dropdown-group:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .nav__dropdown-group-title {
        color: white !important;
        background: rgba(255, 255, 255, 0.15);
        padding: 0.75rem 2rem;
        padding-left: 2rem;
        margin-bottom: 0;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        border-left: 3px solid rgba(255, 255, 255, 0.5);
        border-radius: 0;
    }

    .nav__dropdown-item--parent {
        flex-direction: column;
        align-items: stretch;
        background: transparent;
    }

    .nav__dropdown-link {
        padding: 1rem 2rem;
        padding-left: 3rem;
        color: white !important;
    }

    .nav__dropdown-item--parent:hover {
        background: transparent;
    }

    .nav__dropdown-chevron {
        display: none;
    }

    .nav__dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border: none;
        padding: 0;
        border-left: 2px solid rgba(255, 255, 255, 0.3);
        margin-left: 3rem;

        pointer-events: auto;

        padding-bottom: 01px;
        margin-bottom: .5rem;
    }

    .nav__dropdown-submenu .nav__dropdown-item {
        padding-left: 1rem;
        background: transparent;
    }
    
    .nav__dropdown-item--featured {
        background:#fffffff2!important;
        border: none;
        margin: 0.5rem;
        border-radius: .5rem;
    }
    
    .nav__dropdown-item--featured::before {
        background: transparent;
    }

    .nav__dropdown-item--featured .nav__dropdown-title, .nav__dropdown-item--featured .nav__dropdown-desc{
        color: #2563eb !important;
    }

    .nav__products-dropdown {
        width: 100%;
    }

    .nav__ul .nav__li--demo{
        display: none;
        pointer-events: none;
    }

    .nav__button{
        display: none;
    }

    .nav__burger{
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-right: 0.5rem;
        margin-left: auto;
        padding: 0.5rem;
        background: transparent;
        border: none;
        color: var(--c-primary-400);
        cursor: pointer;
        z-index: 10;
        transform: translateX(0) !important;
        position: relative;
        flex-shrink: 0;
    }
    
    .nav__burger svg {
        width: 1.5rem;
        height: 1.5rem;
        fill: var(--c-primary-400);
    }
    
    .nav-cta {
        display: none;
    }
}

@media screen and ( max-width: 650px ) {
    .footer__columns{
        grid-template-columns: 1fr;
    }

    #demo-form{
        grid-template-columns: 1fr;
    }
}

@media screen and ( max-width: 500px ){
    .nav{
        justify-content: space-between;
    }

    .nav__burger{
        display: flex !important;
    }

    .nav__logo {
        height: 2.5rem;
    }

    .nav__img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }
}

@media screen and ( max-width: 800px ), screen and ( max-width: 900px ) and ( orientation: landscape ){
    .page-hero__text{
        width: 100%;
    }

    .title{
        font-size: 1.25rem;
    }
    
    .subtitle, .testimonial__quote{
        font-size: 1rem;
        margin-bottom: .25rem;
    }

    .news__ul .subtitle{
        font-size: 1.35rem;
    }

    .services__wrapper{
        margin-top: 0;
        gap: 1rem;
    }

    .services__item{
        padding: 1.5rem .5rem .5rem;
    }

    .services__programs{
        margin-top: 1.5rem;
    }

    .slider__info{
        padding: 0 1rem;
        align-items: center;
        text-align: center;

        /* position: relative; */
        /* margin-top: 6rem; */
        padding: 4rem 13% 0;
    }

    .slider__title{
        font-size: 1.75rem;
        text-align: left;
        line-height: 1.1;

        hyphens: none;
    }

    .slider__subtitle{
        font-size: 1rem;
        margin-top: 1rem;
        text-align: justify;
        line-height: 1.3;

        hyphens: none;
    }

    .slider__text{
        display: none;
    }

    .slider__button{
        margin: 3rem auto 0;
    }

    .slider__arrow{
        opacity: 1;
        top: calc( 24% - 2.5rem );
        height: 5rem;
    }
    
    .hero-buttons {
        width: 100%;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;

        padding: 0.65rem 1.5rem;
    }
    
    .trust-indicators {
        width: 100%;
        margin-top: 0;
        padding-top: 1.5rem;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .certification-badges {
        flex-direction: column;
        width: 100%;
        gap: 1rem;

        margin-top: 1rem;
    }
    
    .verifactu-badge {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    
        margin-top: 0;
        padding: .35rem .25rem .25rem .5rem;
    }
    
    .verifactu-content {
        padding: .5rem 0;
        margin-top: 0;

        gap: .25rem;
    }

    .verifactu-icon {
        width: 2rem;
        height: 2rem;
    }

    .verifactu-text{
        text-align: left;
    }
    
    .verifactu-title {
        font-size: 0.9rem;
    }
    
    .verifactu-subtitle {
        font-size: 0.75rem;
    }

    .card-product .product-actions .btn-cta, .card-product .product-actions .btn-secondary{
        width: 100%;
        justify-content: center;
    }

    .card-product .product-actions .btn-cta svg{
        width: 1rem;
    }

    .eu-special__badge{
        justify-content: center;
    }

    .eu-special__badge span{
        display: block;
        font-size: .8rem;
        padding: 0.5rem 1rem;
        border-radius: 20rem;
        margin: 0 -.5rem 0 -.5rem;
        width: calc(100% + .5rem);
        max-width: none;
        text-align: center;
    }

    .eu-special__info-container, .products-grid.products-grid--iras{
        flex-direction: column;
        gap: .75rem;
    }

    .eu-special__title{
        font-size: 1.5rem;
    }

    .eu-special, .iras-featured{
        padding-bottom: 2rem;
    }
}

@media screen and ( max-width: 900px ) and ( orientation: landscape ){
    .hero__button{
        display: none;
    }

    .slider__info{
        padding: 0 5%;
    }
    
    .slider__title {
        font-size: 2.25rem;
    }
    
    .slider__subtitle {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .btn-hero,
    .btn-hero-secondary {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .trust-indicators {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .trust-item span {
        font-size: 0.75rem;
    }
    
    .certification-badges {
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .verifactu-badge {
        padding: 0.75rem 1rem;
        min-width: auto;
        max-width: none;
    }
    
    .verifactu-content {
        padding: 0;
    }
    
    .verifactu-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .verifactu-title {
        font-size: 0.8rem;
    }
    
    .verifactu-subtitle {
        font-size: 0.7rem;
    }

    .slider__arrow{
        opacity: 1;
        top: calc( 50% - 2.5rem );
        height: 5rem;
    }

    .slider__button{
        margin: 3rem 0 0;
    }
}

/* ======================================== */
/* ESTILOS PARA PRODUCTOS CLICABLES Y MODALES */
/* ======================================== */

/* Productos grid dentro de servicios */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 76.5rem) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.product-card {
    background: white;
    border: 1.5px solid var(--c-primary-200);
    border-radius: .25rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px .5rem rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: var(--c-primary-400);
    box-shadow: 0 .5rem 25px rgba(0,0,0,0.15);
}

.product-card:not(a) {
    cursor: default;
}

.product-card:not(a):hover {
    transform: none;
    border-color: var(--c-primary-200);
    box-shadow: 0 2px .5rem rgba(0,0,0,0.1);
}

.product-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-card h5 {
    margin: 1rem 0 0.5rem;
    font-weight: 600;
    color: var(--c-primary-400);
    font-size: 1.2rem;
}

.product-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--c-font-500);
}

/* TIC-RADAR Featured Section */
.tic-radar-featured {
    border: 2px solid #ffd700 !important;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%) !important;
    position: relative;
}

.eu-project-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.eu-flag-small {
    width: 24px;
    height: auto;
}

.project-badge {
    background: var(--c-primary-400);
    color: white;
    padding: 4px 0.75rem;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.tic-radar-icon {
    color: var(--c-primary-400) !important;
}

.btn-product-info {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: white;
    background: var(--c-primary-400);
    display: inline-block;
    padding: .65em 1.75em .55em 1.75em;
    border-radius: .25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-product-info:hover {
    background: var(--c-primary-500);
    border-color: var(--c-primary-500);
    transform: translateY(-2px);
}

.tic-radar-featured .btn-product-info {
    background: var(--c-primary-400);
    border-color: var(--c-primary-400);
    margin-top: 1.5rem;
}

.tic-radar-featured .btn-product-info:hover {
    background: var(--c-primary-500);
    border-color: var(--c-primary-500);
}

/* ======================================== */
/* ESTILOS PARA MODALES */
/* ======================================== */

.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: var(--section-padding-inline);
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: .25rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--c-font-400);
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--c-primary-400);
}

.modal-header {
    padding: var(--section-padding-block) var(--section-padding-inline);
    border-bottom: 2px solid var(--c-primary-200);
    text-align: center;
}

.modal-logo {
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 1rem;
}

.modal-header .title {
    margin: 0 0 0.5rem;
    color: var(--c-primary-400);
}

.modal-header .subtitle {
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.modal-body {
    padding: var(--section-padding-block) var(--section-padding-inline);
}

.product-section {
    margin-bottom: 2rem;
}

.product-section:last-of-type {
    margin-bottom: 1rem;
}

.section-title {
    color: var(--c-primary-400);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid var(--c-primary-200);
    padding-bottom: 1rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--c-primary-100);
    font-size: 0.9rem;
    color: var(--c-font-500);
}

.features-list li:last-child {
    border-bottom: none;
}

.benefit-text {
    background: var(--c-primary-050);
    padding: 1rem;
    border-radius: .25rem;
    border-left: 4px solid var(--c-primary-400);
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--c-font-500);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--c-primary-200);
}

/* ======================================== */
/* ESTILOS ESPECÍFICOS TIC-RADAR MODAL */
/* ======================================== */

.tic-radar-modal .modal-content {
    max-width: 900px;
}

.tic-radar-header {
    background: linear-gradient(135deg, var(--c-primary-400) 0%, var(--c-primary-500) 100%);
    color: white;
    border-bottom: none;
    border-radius: .25rem .25rem 0 0;
}

.tic-radar-header .title,
.tic-radar-header .subtitle {
    color: white;
}

.project-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-logo {
    height: 25px;
    width: auto;
}

.program-badge {
    background: #ffd700;
    color: var(--c-primary-400);
    padding: 6px 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.coordinator-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.project-subtitle {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    color: rgba(255,255,255,0.9);
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.innovation-item {
    background: var(--c-primary-050);
    padding: 1rem;
    border-radius: .25rem;
    text-align: left;
    border-left: 3px solid var(--c-primary-400);
}

.innovation-item strong {
    display: block;
    color: var(--c-primary-400);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.innovation-item p {
    font-size: 0.85rem;
    color: var(--c-font-500);
    margin: 0;
    line-height: 1.4;
}

.consortium-countries {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.country {
    background: var(--c-primary-100);
    padding: .5rem 15px;
    border-radius: .25rem;
    font-size: 0.85rem;
    color: var(--c-primary-400);
    font-weight: 600;
}

/* ======================================== */
/* RESPONSIVE DESIGN PARA MODALES */
/* ======================================== */

@media (max-width: 700px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .innovations-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-demo {
        width: 100%;
    }
    
    .consortium-countries {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .project-badges {
        flex-direction: column;
        gap: .5rem;
    }
}

@media screen and (max-height: 700px) {
    .slider__title{
        font-size: 2.5rem;
    }

    .slider__subtitle{
        font-size: 1.5rem;
        margin-top: 1rem;
    }
}