:root {

    --azul: #2E6DB4;

    --azul-hover: #3A7DC4;

    --azul-oscuro: #1A4A7A;

    --azul-deep: #0C1F3A;

    --azul-glow: rgba(46, 109, 180, 0.25);

    --rojo: #B5202A;

    --rojo-hover: #C93039;

    --rojo-glow: rgba(181, 32, 42, 0.2);

    --negro: #1A1A2E;

    --gris-900: #141829;

    --gris-800: #1E2340;

    --gris-700: #333860;

    --gris-500: #656A90;

    --gris-400: #8E93B4;

    --gris-300: #B5B9D4;

    --gris-100: #EDEEF5;

    --blanco: #FFFFFF;

    --success: #10B981;

    --naranja: #F59E0B;

    --gradiente-hero: linear-gradient(135deg, #1A1A2E 0%, #1A4A7A 50%, #2E6DB4 100%);

    --gradiente-rojo: linear-gradient(135deg, #B5202A, #D4343E);

    --gradiente-azul: linear-gradient(135deg, #2E6DB4, #4A90D9);

    --sombra: 0 20px 60px rgba(26, 26, 46, 0.15);

    --sombra-hover: 0 30px 80px rgba(26, 26, 46, 0.25);

}



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

html {
    scroll-behavior: smooth;
}



body {

    font-family: 'IBM Plex Sans', sans-serif;

    background: var(--negro);

    color: var(--blanco);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}



/* ===== NAVBAR ===== */

 /* NAV BAR */
         .navbar .logo img { 
                height: 75px !important; 
                content: url('https://dpes.es/wp-content/uploads/2023/03/LOGO2X02blancoretina-400x95-03-e1772635432116.png') !important;
                transition: height 0.3s;
            }
            .navbar.scrolled .logo img { 
                height: 55px !important; 
                content: url('https://dpes.es/wp-content/uploads/2026/03/LOGO2X02Negroretina-400x95-03-e1772635432116.png') !important;
            }

.navbar {

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

    padding: 16px 0;

    transition: all 0.4s ease;

    background: transparent;

}



.navbar.scrolled {

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(20px);

    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);

    padding: 10px 0;

}



.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


/* ===== MENSAJES DE FORMULARIO ===== */
.form-container {
    position: relative;
}

.success-message, .error-message {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    animation: fadeInUp 0.6s ease;
}

.success-icon, .error-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.success-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.error-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.success-message h3, .error-message h3 {
    color: var(--blanco);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.success-message p, .error-message p {
    color: var(--blanco);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.success-message p a, .error-message p a{
    color:var(--blanco);
    text-decoration: none;
}
.success-message p a:hover, .error-message p a:hover{
    color:var(--naranja);
    text-decoration: none;
}
.link-guias{
  display: inline-block;
  padding: 10px 42px;
  background-color: var(--azul);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.1s ease;
  cursor: pointer;
}

.link-guias:hover {
  background-color: var(--azul-deep);
}

.link-guias:active {
  transform: scale(0.97);
}

.link-guias:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(3, 63, 128, 0.4);
}

.retry-btn {
    background: var(--gradiente-rojo);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 32, 42, 0.4);
}
.navbar .logo img {

    height: 48px;

    transition: height 0.3s;

}



.navbar.scrolled .logo img {

    height: 40px;

    content: url('https://dpes.es/wp-content/uploads/2026/03/LOGO2X02Negroretina-400x95-03-e1772635432116.png');

}



.nav-links {

    display: flex;

    gap: 32px;

    align-items: center;

    list-style: none;

}



.nav-links a {

    text-decoration: none;

    color: rgba(255, 255, 255, 0.85);

    font-weight: 500;

    font-size: 0.95rem;

    transition: color 0.3s;

    letter-spacing: 0.02em;

}



.navbar.scrolled .nav-links a {
    color: var(--negro);
}

.nav-links a:hover {
    color: var(--rojo);
}



.nav-cta {

    background: var(--gradiente-rojo) !important;

    color: var(--blanco) !important;

    padding: 10px 24px !important;

    border-radius: 50px !important;

    font-weight: 600 !important;

    transition: transform 0.3s, box-shadow 0.3s !important;

}



.nav-cta:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(181, 32, 42, 0.4);

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 24px;

}



.mobile-menu-btn {

    display: none;

    flex-direction: column;

    gap: 4px;

    background: none;

    border: none;

    cursor: pointer;

    padding: 8px;

    position: fixed;

    bottom: 20px;

    right: 20px;

    z-index: 1001;

}



.mobile-menu-btn span {

    width: 24px;

    height: 2px;

    background: var(--negro);

    transition: all 0.3s;

}



/* ===== HERO ===== */

.hero,
.hero1 {

    min-height: 100vh;

    background: var(--gradiente-hero);

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

}











/* ===== TOPBAR ===== */

.topbar {

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;

    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

}

.topbar-inner {

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

    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}

.topbar.scrolled {

    background: rgba(8, 12, 24, 0.92);

    backdrop-filter: blur(24px) saturate(180%);

}

.topbar .logo img {
    height: 38px;
}

.topbar-cta {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--azul);
    color: var(--blanco);
    padding: 10px 22px;

    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;

    font-size: 0.86rem;
    transition: all 0.3s;
    border: 1px solid transparent;

}

.topbar-cta:hover {

    background: var(--azul-hover);
    transform: translateY(-1px);

    box-shadow: 0 8px 24px var(--azul-glow);

}



/* ===== HERO ===== */

.hero {

    min-height: 100vh;
    display: flex;
    align-items: center;

    position: relative;
    padding-top: 80px;

}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg .mesh-1 {

    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;

    background: radial-gradient(circle at 30% 40%, rgba(46, 109, 180, 0.18), transparent 65%);

    top: -15%;
    right: -10%;
    animation: drift 22s ease-in-out infinite;

}

.hero-bg .mesh-2 {

    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;

    background: radial-gradient(circle at 60% 50%, rgba(181, 32, 42, 0.1), transparent 65%);

    bottom: -5%;
    left: -8%;
    animation: drift 28s ease-in-out infinite reverse;

}

.hero-bg .mesh-3 {

    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(46, 109, 180, 0.06), transparent 70%);

    top: 50%;
    left: 40%;
    animation: drift 18s ease-in-out infinite 4s;

}

.hero-bg .grid-pattern {

    position: absolute;
    inset: 0;

    background-image:

        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);

    background-size: 56px 56px;

}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25px, -18px) scale(1.04);
    }

    66% {
        transform: translate(-18px, 12px) scale(0.96);
    }

}



.hero-layout {

    display: grid;
    grid-template-columns: 1fr 480px;

    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;

}



.hero1-layout {

    display: grid;

    grid-template-columns: 1fr 550px;

    gap: 42px;

    align-items: center;

    position: relative;

    z-index: 2;

    padding-top: 102px;

}



.hero-tag,
.hero1-tag {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(46, 109, 180, 0.1);
    border: 1px solid rgba(46, 109, 180, 0.18);

    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.8rem;

    font-weight: 600;
    color: var(--azul-hover);
    letter-spacing: 0.05em;

    text-transform: uppercase;
    margin-bottom: 26px;

    animation: fadeUp 0.6s ease both;

}

.hero-tag .dot {

    width: 7px;
    height: 7px;
    background: var(--naranja);

    border-radius: 50%;
    animation: blink 2s infinite;

}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}



.hero h1 {

    font-family: 'Sora', sans-serif;

    font-size: clamp(2.2rem, 4.2vw, 3.2rem);

    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;

    letter-spacing: -0.03em;
    animation: fadeUp 0.6s 0.08s ease both;

}

.hero h1 .text-azul {

    background: linear-gradient(135deg, var(--azul-hover), #7EC8E3);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}
.rgpd-group {
    margin-bottom: 2rem;
}
.links {
            color: var(--azul-electrico);
            text-decoration: none;
            font-size: 12px;
        }

.hero h1 .text-rojo {
    color: var(--rojo);
    -webkit-text-fill-color: var(--rojo);
}

.hero h1 .text-dim {
    color: var(--gris-400);
    -webkit-text-fill-color: var(--gris-400);
    font-weight: 400;
}



/* Estilos para hero1 spans */

.hero1 h1 .text-azul {

    background: linear-gradient(135deg, var(--azul-hover), #7EC8E3);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.hero1 h1 .text-rojo {
    color: var(--rojo);
    -webkit-text-fill-color: var(--rojo);
}

.hero1 h1 .text-dim {
    color: var(--gris-400);
    -webkit-text-fill-color: var(--gris-400);
    font-weight: 400;
}



.hero-desc {
    font-size: 1.08rem;
    color: var(--gris-300);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 34px;

    animation: fadeUp 0.6s 0.16s ease both;

}



.hero-chips {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
    animation: fadeUp 0.6s 0.24s ease both;
}
.chip {
    display: inline;
    align-items: center;
    text-align: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--gris-300);
    font-weight: 500;
}

.chip .ic {
    font-size: 0.95rem;
}



@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

}



/* ===== FORM CARD ===== */

.form-card {

    background: rgba(20, 24, 41, 0.75);

    backdrop-filter: blur(36px) saturate(140%);

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 20px;
    padding: 38px 34px;

    position: relative;
    overflow: hidden;

    animation: fadeUp 0.6s 0.2s ease both;

}

.form-card .top-line {

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;

    background: linear-gradient(90deg, var(--azul), var(--rojo), var(--azul));

    background-size: 200% 100%;

    animation: shimmer 4s linear infinite;

}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.form-card .glow-spot {

    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;

    background: radial-gradient(circle, rgba(46, 109, 180, 0.08), transparent 70%);

    border-radius: 50%;
    pointer-events: none;

}



.form-card h2 {

    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;

    font-weight: 700;
    margin-bottom: 5px;
    position: relative;

}

.form-card .form-sub {

    color: var(--gris-500);
    font-size: 0.88rem;

    margin-bottom: 26px;
    position: relative;

}



.form-group {
    margin-bottom: 14px;
    position: relative;
}

.form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 6px;
            color: var(--gris-300);
        }

.form-group input:not([type="checkbox"]),
.form-group select {

    width: 100%;
    padding: 12px 15px;

    background: rgba(255, 255, 255, 0.035);

    border: 1.5px solid rgba(255, 255, 255, 0.07);

    border-radius: 10px;
    color: var(--gris-300);

    font-family: 'IBM Plex Sans', sans-serif;

    font-size: 0.93rem;
    transition: all 0.3s;
    outline: none;

}

.form-group input::placeholder {
    color: var(--gris-700);
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus {

    border-color: var(--azul);

    background: rgba(46, 109, 180, 0.05);

    box-shadow: 0 0 0 3px rgba(46, 109, 180, 0.1);

}

.form-group select {

    appearance: none;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23656A90' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 14px center;

}

.form-group select option {
    background: var(--gris-900);
    color: var(--gris-500);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}



.form-submit {

    width: 100%;
    padding: 14px 22px;

    background: linear-gradient(135deg, var(--azul), var(--azul-hover));

    color: var(--blanco);
    border: none;
    border-radius: 10px;

    font-family: 'Sora', sans-serif;
    font-size: 0.97rem;

    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s;

    margin-top: 6px;
    position: relative;
    letter-spacing: 0.01em;

}

.form-submit:hover {

    transform: translateY(-2px);

    box-shadow: 0 12px 36px var(--azul-glow);

}

.form-privacy {

    text-align: center;
    font-size: 0.73rem;

    color: var(--gris-400);
    margin-top: 12px;
    position: relative;

}

.form-privacy a {
    color: var(--azul-hover);
    text-decoration: none;
}



/* ===== SUCCESS ===== */

.success-msg {
    display: none;
    text-align: center;
    padding: 36px 16px;
}

.success-msg.active {
    display: block;
}

.form-fields.hidden {
    display: none;
}

.success-ic {

    width: 68px;
    height: 68px;
    border-radius: 50%;

    background: rgba(16, 185, 129, 0.12);
    border: 2px solid rgba(16, 185, 129, 0.3);

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

    font-size: 1.8rem;
    margin: 0 auto 18px;

    animation: pop 0.5s cubic-bezier(0.16, 1, 0.3, 1);

}

@keyframes pop {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.success-msg h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.success-msg p {
    color: var(--gris-400);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

.btn-dl {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(135deg, var(--azul), var(--azul-hover));

    color: var(--blanco);
    padding: 13px 26px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 700;
    font-size: 0.93rem;

    transition: all 0.3s;
    border: none;
    cursor: pointer;

    font-family: 'Sora', sans-serif;
    margin-bottom: 10px;

}

.btn-dl:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--azul-glow);
}

.link-meeting {

    display: block;
    color: var(--gris-400);
    font-size: 0.83rem;

    text-decoration: none;
    transition: color 0.3s;

}

.link-meeting:hover {
    color: var(--blanco);
}



/* ===== WHAT'S INSIDE ===== */

.inside-section {
    padding: 100px 0;
    position: relative;
}

.inside-section::before {

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);

}

.sec-header {
    text-align: center;
    margin-bottom: 56px;
}

.sec-tag {

    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.73rem;

    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;

    color: var(--rojo);
    margin-bottom: 14px;

}

.sec-header h2 {

    font-family: 'Sora', sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);

    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;

}

.sec-header p {
    color: var(--gris-400);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}



/* Content pillars */

.pillars {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}

.pillar {

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 16px;

    padding: 30px 22px;

    text-align: center;

    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    position: relative;

    overflow: hidden;

}

.pillar::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: var(--azul);

    transform: scaleX(0);

    transition: transform 0.4s;

}

.pillar:nth-child(even)::after {
    background: var(--rojo);
}

.pillar:hover {

    background: rgba(255, 255, 255, 0.05);

    transform: translateY(-4px);

    border-color: rgba(255, 255, 255, 0.1);

}

.pillar:hover::after {
    transform: scaleX(1);
}

.pillar-icon {

    width: 50px;

    height: 50px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    margin: 0 auto 16px;

}

.pillar-icon.bg-a {
    background: rgba(46, 109, 180, 0.12);
}

.pillar-icon.bg-r {
    background: rgba(181, 32, 42, 0.12);
}

.pillar h3 {

    font-family: 'Sora', sans-serif;

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 8px;

}

.pillar p {

    color: var(--gris-400);

    font-size: 0.84rem;

    line-height: 1.55;

}



/* Responsive para .pillars */

@media (max-width: 1024px) {

    .pillars {

        grid-template-columns: repeat(2, 1fr);

        gap: 16px;

    }

}

/* Responsive para .hero-chips */

@media (max-width: 1024px) {

    .hero-chips {
        flex-direction: column;
        gap: 12px;
        display: grid;
        text-align: center;
    }

    .chip {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

}
@media (max-width: 728px) {

    .hero-chips {
        flex-direction: column;
        gap: 12px;
        display: grid;
    }

    .chip {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .chip:hover {
        background: var(--azul-oscuro);
    }

}

@media (max-width: 768px) {

    .pillars {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .pillar {

        padding: 24px 20px;

    }

    .pillar h3 {

        font-size: 0.95rem;

    }

    .pillar p {

        font-size: 0.8rem;

        line-height: 1.5;

    }

    .pillar-icon {

        width: 40px;

        height: 40px;

        font-size: 1.2rem;

        margin: 0 auto 12px;

    }

}

.compare-col {
    border-radius: 18px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;

}

.compare-col.private {

    background: linear-gradient(160deg, rgba(46, 109, 180, 0.1), rgba(26, 74, 122, 0.06));

    border: 1px solid rgba(46, 109, 180, 0.15);

}

.compare-col.public {

    background: linear-gradient(160deg, rgba(181, 32, 42, 0.08), rgba(140, 24, 32, 0.04));

    border: 1px solid rgba(181, 32, 42, 0.12);

}

.compare-col h3 {

    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;

}

.compare-col .subtitle {
    color: var(--gris-400);
    font-size: 0.88rem;
    margin-bottom: 22px;
}

.compare-list {
    list-style: none;
}
.compare-list ul {
    text-align: center;
}

.compare-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--gris-300);
    line-height: 1.5;
    transition: all 0.6s ease;
}

.compare-list .ic-check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}



.compare-blur-wrap {
    position: relative;
    margin-top: 20px;
}

.compare-blur-content {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    filter: blur(6px);
    opacity: 0.35;
    pointer-events: none;

    transition: all 0.6s ease;

}

.compare-blur-content .compare-col {
    min-height: 120px;
}

/* Responsive para compare-blur-content */
@media (max-width: 1024px) {
    .compare-blur-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .compare-col {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .compare-blur-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .compare-col {
        padding: 24px 20px;
    }
}

.blur-cta {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
}

.blur-cta .lock {

    width: 52px;
    height: 52px;
    border-radius: 50%;

    background: rgba(46, 109, 180, 0.12);
    border: 1px solid rgba(46, 109, 180, 0.2);

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

    font-size: 1.3rem;
    margin-bottom: 14px;

}

.blur-cta p {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.4;
}

.btn-unlock {

    background: linear-gradient(135deg, var(--azul), var(--azul-hover));

    color: var(--blanco);
    padding: 11px 26px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;

    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;

}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--azul-glow);
}



/* ===== TIMELINE ===== */

.timeline-section {
    padding: 80px 0 100px;
}

.timeline-section .sec-tag {
    color: var(--naranja);
}

.tl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tl-card {

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;

    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

}

.tl-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.tl-year {

    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;

    margin-bottom: 8px;

}

.tl-card:nth-child(1) .tl-year {
    color: var(--success);
}

.tl-card:nth-child(2) .tl-year {
    color: var(--azul-hover);
}

.tl-card:nth-child(3) .tl-year {
    color: var(--naranja);
}

.tl-card:nth-child(4) .tl-year {
    color: var(--rojo);
}

.tl-label {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.tl-desc {
    color: var(--gris-500);
    font-size: 0.82rem;
    line-height: 1.5;
}



/* Responsive para .tl-grid */

@media (max-width: 1024px) {

    .tl-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 16px;

    }

    .tl-card {

        padding: 26px 20px;

    }

    .tl-year {

        font-size: 1.8rem;

    }

    .tl-label {

        font-size: 0.88rem;

    }

    .tl-desc {

        font-size: 0.78rem;

    }

}



@media (max-width: 768px) {

    .tl-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .tl-card {

        padding: 24px 18px;

    }

    .tl-year {

        font-size: 1.6rem;

        margin-bottom: 6px;

    }

    .tl-label {

        font-size: 0.85rem;

        margin-bottom: 5px;

    }

    .tl-desc {

        font-size: 0.76rem;

        line-height: 1.45;

    }

}



/* ===== ASSESSMENT CTA ===== */

.assess-section {
    padding: 80px 0 100px;
}

.assess-card {

    background: linear-gradient(140deg, rgba(46, 109, 180, 0.06), rgba(181, 32, 42, 0.04));

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;

    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;

}

.assess-card::before {

    content: '';
    position: absolute;
    top: -180px;
    right: -180px;

    width: 450px;
    height: 450px;

    background: radial-gradient(circle, rgba(46, 109, 180, 0.07), transparent 70%);

    border-radius: 50%;

}

.assess-info {
    position: relative;
}

.assess-info .sec-tag {
    color: var(--azul-hover);
}

.assess-info h2 {

    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;

    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;

}

.assess-info h2 span {
    color: var(--rojo);
}

.assess-info>p {
    color: var(--gris-400);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 26px;
}

.rgpd-group {
    margin-bottom: 2rem;
}

.rgpd-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.rgpd-label input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
    order: -1;
}

.rgpd-label .links {
    color: var(--azul-electrico);
    text-decoration: none;
    font-size: inherit;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rgpd-label .links:hover {
    color: var(--azul-hover);
    text-decoration: underline;
}

/* Responsive para .assess-card */

@media (max-width: 1024px) {

    .assess-card {

        display: flex;

        flex-direction: column;

        gap: 32px;

        padding: 40px 12px;

    }

    .assess-info {

        width: 100%;

    }

    .assess-form {

        width: 100%;

    }

}



@media (max-width: 768px) {

    .assess-card {

        display: flex;

        flex-direction: column;

        gap: 24px;

        padding: 32px 24px;

    }

    .assess-info {

        width: 100%;

    }

    .assess-info h2 {

        font-size: 1.6rem;

        margin-bottom: 12px;

    }

    .assess-info>p {

        font-size: 0.9rem;

        margin-bottom: 20px;

    }

    .assess-form {

        width: 100%;

    }

    .assess-steps {

        width: 100%;

    }

}



.assess-steps {
    list-style: none;
}

.assess-steps li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    align-items: flex-start;
}

.sn {

    width: 30px;
    height: 30px;
    border-radius: 8px;

    background: rgba(46, 109, 180, 0.14);
    display: flex;
    align-items: center;

    justify-content: center;
    font-family: 'Sora', sans-serif;

    font-size: 0.82rem;
    font-weight: 800;
    color: var(--azul-hover);
    flex-shrink: 0;

}

.sc strong {
    display: block;
    font-size: 0.93rem;
    margin-bottom: 1px;
}

.sc span {
    font-size: 0.83rem;
    color: var(--gris-300);
}



.assess-form {

    background: rgba(20, 24, 41, 0.8);
    backdrop-filter: blur(28px);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;

    padding: 34px 30px;
    position: relative;

}

.assess-form h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--blanco);
}

.assess-form .form-sub {
    color: var(--gris-500);
    font-size: 0.83rem;
    margin-bottom: 22px;
}



.btn-assess {

    width: 100%;
    padding: 14px;

    background: linear-gradient(135deg, var(--rojo), var(--rojo-hover));

    color: var(--blanco);
    border: none;
    border-radius: 10px;

    font-family: 'Sora', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;

    cursor: pointer;
    transition: all 0.35s;
    margin-top: 6px;

}

.btn-assess:hover {

    transform: translateY(-2px);

    box-shadow: 0 12px 36px var(--rojo-glow);

}



/* ===== FOOTER ===== */

.footer {

    background: var(--negro);

    color: rgba(255, 255, 255, 0.6);

    padding: 60px 0 30px;

}



.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 48px;

    margin-bottom: 48px;

}

.footer-link-dpes {

    color: var(--blanco);

    text-decoration: none;

    font-weight: 700;

}



.footer-brand p {

    font-size: 0.9rem;

    line-height: 1.7;

    margin-top: 16px;

    max-width: 300px;

}



.footer-brand .slogan {
    font-style: italic;
    color: var(--gris-300);
    margin-top: 8px;
    font-size: 0.85rem;
}



.footer h4 {

    font-family: 'Outfit', sans-serif;

    color: var(--blanco);

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 20px;

}



.footer ul {
    list-style: none;
}



.footer ul li {
    margin-bottom: 10px;
}



.footer ul a {

    color: rgba(255, 255, 255, 0.55);

    text-decoration: none;

    font-size: 0.9rem;

    transition: color 0.3s;

}



.footer ul a:hover {
    color: var(--blanco);
}



.footer-contact li {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 0.9rem;

}



.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-legal {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .footer-legal a {
            color: var(--gris-400);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--blanco);
        }



.footer-social {

    display: flex;

    gap: 12px;

}



.footer-social a {

    width: 38px;

    height: 38px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(255, 255, 255, 0.6);



    .footer-social a:hover {

        background: var(--azul);

        color: var(--blanco);

    }



    .nav-links .nav-cta {

        margin-top: auto;

        padding-top: 20px;

        border-top: 1px solid rgba(0, 0, 0, 0.1);

        text-align: center;

        background: var(--gradiente-rojo) !important;

        color: var(--blanco) !important;

        padding: 14px 24px !important;

        border-radius: 50px !important;

        font-weight: 600 !important;

        transition: all 0.3s !important;

        display: inline-block;

        text-decoration: none;

    }

    .nav-links .nav-cta:hover {

        transform: translateY(-2px) !important;

        box-shadow: 0 8px 25px rgba(181, 32, 42, 0.4) !important;

    }

    .nav-links .nav-cta::after {

        display: none;

    }



    .mobile-menu-btn {

        position: fixed;

        bottom: 20px;

        right: 20px;

        z-index: 1001;

        width: 56px;

        height: 56px;

        border-radius: 50%;

        justify-content: center;

        align-items: center;

        display: flex;

        position: fixed;

        bottom: 20px;

        right: 20px;

        z-index: 1001;

        width: 56px;

        height: 56px;

        border-radius: 50%;

        justify-content: center;

        align-items: center;

        background: var(--gradiente-rojo);

        box-shadow: 0 4px 20px rgba(181, 32, 42, 0.3);

    }

    .mobile-menu-btn span {

        width: 24px;

        height: 2px;

        background: var(--blanco);

        transition: all 0.3s;

    }

    .mobile-menu-btn.active {

        background: var(--negro);

    }

    .nav-links {

        display: none;

        position: fixed;

        top: 0;

        left: 0;

        right: 0;

        bottom: 0;

        width: 100vw;

        height: 100vh;

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(20px);

        flex-direction: column;

        gap: 0;

        padding: 80px 20px 20px;

        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

        z-index: 1000;

        overflow-y: auto;

    }

    .nav-links.active {

        display: flex;

    }

    .nav-links a {

        color: var(--negro);

        padding: 16px 0;

        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        font-size: 1.1rem;

        font-weight: 500;

        transition: all 0.3s ease;

        position: relative;

        text-decoration: none;

    }

    .nav-links a:last-child {

        border-bottom: none;

    }

    .nav-links a:hover {

        color: var(--rojo);

        background: rgba(181, 32, 42, 0.08);

        padding-left: 20px;

        transform: translateX(5px);

    }

    .nav-links a::after {

        content: '→';

        position: absolute;

        right: 20px;

        opacity: 0;

        transition: all 0.3s ease;

        color: var(--rojo);

    }

    .nav-links a:hover::after {

        opacity: 1;

        transform: translateX(5px);

    }

    .nav-links .nav-cta {

        margin-top: auto;

        padding-top: 20px;

        border-top: 1px solid rgba(0, 0, 0, 0.1);

        text-align: center;

        background: var(--gradiente-rojo) !important;

        color: var(--blanco) !important;

        padding: 14px 24px !important;

        border-radius: 50px !important;

        font-weight: 600 !important;

        transition: all 0.3s !important;

        display: inline-block;

        text-decoration: none;

    }

    .nav-links .nav-cta:hover {

        transform: translateY(-2px) !important;

        box-shadow: 0 8px 25px rgba(181, 32, 42, 0.4) !important;

    }

    .nav-links .nav-cta::after {

        display: none;

    }

    .offer-grid {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .form-wrapper {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .navbar .logo img {
        height: 52px;
    }

    .navbar.scrolled .logo img {
        height: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .offer-card {
        padding: 36px 28px;
    }

    .form-card {
        padding: 32px 24px;
    }

}



.footer-contact li {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 0.9rem;

}



.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding-top: 24px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 0.82rem;

}



.footer-social {

    display: flex;

    gap: 12px;

}



.footer-social a {

    width: 38px;

    height: 38px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(255, 255, 255, 0.6);



    .footer-social a:hover {

        background: var(--azul);

        color: var(--blanco);

    }



    .nav-links .nav-cta {

        margin-top: auto;

        padding-top: 20px;

        border-top: 1px solid rgba(0, 0, 0, 0.1);

        text-align: center;

        background: var(--gradiente-rojo) !important;

        color: var(--blanco) !important;

        padding: 14px 24px !important;

        border-radius: 50px !important;

        font-weight: 600 !important;

        transition: all 0.3s !important;

        display: inline-block;

        text-decoration: none;

    }

    .nav-links .nav-cta:hover {

        transform: translateY(-2px) !important;

        box-shadow: 0 8px 25px rgba(181, 32, 42, 0.4) !important;

    }

    .nav-links .nav-cta::after {

        display: none;

    }



    .mobile-menu-btn {

        position: fixed;

        bottom: 20px;

        right: 20px;

        z-index: 1001;

        width: 56px;

        height: 56px;

        border-radius: 50%;

        justify-content: center;

        align-items: center;

        display: flex;

        position: fixed;

        bottom: 20px;

        right: 20px;

        z-index: 1001;

        width: 56px;

        height: 56px;

        border-radius: 50%;

        justify-content: center;

        align-items: center;

        background: var(--gradiente-rojo);

        box-shadow: 0 4px 20px rgba(181, 32, 42, 0.3);

    }

    .mobile-menu-btn span {

        width: 24px;

        height: 2px;

        background: var(--blanco);

        transition: all 0.3s;

    }

    .mobile-menu-btn.active {

        background: var(--negro);

    }

    .nav-links {

        display: none;

        position: fixed;

        top: 0;

        left: 0;

        right: 0;

        bottom: 0;

        width: 100vw;

        height: 100vh;

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(20px);

        flex-direction: column;

        gap: 0;

        padding: 80px 20px 20px;

        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

        z-index: 1000;

        overflow-y: auto;

    }

    .nav-links.active {

        display: flex;

    }

    .nav-links a {

        color: var(--negro);

        padding: 16px 0;

        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        font-size: 1.1rem;

        font-weight: 500;

        transition: all 0.3s ease;

        position: relative;

        text-decoration: none;

    }

    .nav-links a:last-child {

        border-bottom: none;

    }

    .nav-links a:hover {

        color: var(--rojo);

        background: rgba(181, 32, 42, 0.08);

        padding-left: 20px;

        transform: translateX(5px);

    }

    .nav-links a::after {

        content: '→';

        position: absolute;

        right: 20px;

        opacity: 0;

        transition: all 0.3s ease;

        color: var(--rojo);

    }

    .nav-links a:hover::after {

        opacity: 1;

        transform: translateX(5px);

    }

    .nav-links .nav-cta {

        margin-top: auto;

        padding-top: 20px;

        border-top: 1px solid rgba(0, 0, 0, 0.1);

        text-align: center;

        background: var(--gradiente-rojo) !important;

        color: var(--blanco) !important;

        padding: 14px 24px !important;

        border-radius: 50px !important;

        font-weight: 600 !important;

        transition: all 0.3s !important;

        display: inline-block;

        text-decoration: none;

    }

    .nav-links .nav-cta:hover {

        transform: translateY(-2px) !important;

        box-shadow: 0 8px 25px rgba(181, 32, 42, 0.4) !important;

    }

    .nav-links .nav-cta::after {

        display: none;

    }

    .offer-grid {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .form-wrapper {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .offer-card {
        padding: 36px 28px;
    }

    .form-card {
        padding: 32px 24px;
    }

}



/* ===== REVEAL ===== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0);
}



/* === WHATSAPP FLOAT BUTTON === */

.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .whatsapp-float {
        left: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

 /* === READING PROGRESS BAR === */
        .reading-progress {
            position: fixed;
            top: 64px;
            left: 0;
            width: 0%;
            height: 6px;
            background: var(--gradiente-azul);
            z-index: 1001;
            transition: width 0.1s ease;
        }



/* ===== RESPONSIVE ===== */

@media (max-width:768px) {

    .hero1-layout {

        display: flex;

        flex-direction: column;

        gap: 32px;

        align-items: stretch;

        position: relative;

        z-index: 2;

        padding-top: 80px;

    }



    .mobile-menu-btn {

        display: flex;

        position: fixed;

        bottom: 0px;

        right: 20px;

        z-index: 1001;

        width: 56px;

        height: 56px;

        border-radius: 50%;

        justify-content: center;

        align-items: center;

    }

    .mobile-menu-btn span {

        width: 24px;

        height: 2px;

        background: var(--negro);

        transition: all 0.3s;

    }

    .navbar {

        background: rgba(255, 255, 255, 0.97) !important;

        backdrop-filter: blur(20px) !important;

        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08) !important;

        padding: 12px 0 !important;

    }

    .navbar.scrolled {

        background: rgba(255, 255, 255, 0.97) !important;

        backdrop-filter: blur(20px) !important;

        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08) !important;

        padding: 12px 0 !important;

    }

    .navbar .logo img {

        height: 40px !important;

        content: url('https://dpes.es/wp-content/uploads/2026/03/LOGO2X02Negroretina-400x95-03-e1772635432116.png') !important;

    }

    .navbar.scrolled .logo img {

        height: 40px !important;

        content: url('https://dpes.es/wp-content/uploads/2026/03/LOGO2X02Negroretina-400x95-03-e1772635432116.png') !important;

    }

    .nav-links {

        display: none;

        position: fixed;

        top: 0;

        left: 0;

        right: 0;

        bottom: 0;

        width: 100vw;

        height: 100vh;

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(20px);

        flex-direction: column;

        gap: 0;

        padding: 80px 20px 20px;

        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

        z-index: 1000;

        overflow-y: auto;

    }

    .nav-links.active {

        display: flex;

    }

    .nav-links a {

        color: var(--negro);

        padding: 16px 0;

        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        font-size: 1.1rem;

        font-weight: 500;

        transition: all 0.3s ease;

        position: relative;

        text-decoration: none;

    }

    .nav-links a:last-child {

        border-bottom: none;

    }

    .nav-links a:hover {

        color: var(--rojo);

        background: rgba(181, 32, 42, 0.08);

        padding-left: 20px;

        transform: translateX(5px);

    }

    .nav-links a::after {

        content: '→';

        position: absolute;

        right: 20px;

        opacity: 0;

        transition: all 0.3s ease;

        color: var(--rojo);

    }

    .nav-links a:hover::after {

        opacity: 1;

        transform: translateX(5px);

    }

    .nav-links .nav-cta {

        margin-top: auto;

        padding-top: 20px;

        border-top: 1px solid rgba(0, 0, 0, 0.1);

        text-align: center;

        background: var(--gradiente-rojo) !important;

        color: var(--blanco) !important;

        padding: 14px 24px !important;

        border-radius: 50px !important;

        font-weight: 600 !important;

        transition: all 0.3s !important;

        display: inline-block;

        text-decoration: none;

    }

    .nav-links .nav-cta:hover {

        transform: translateY(-2px) !important;

        box-shadow: 0 8px 25px rgba(181, 32, 42, 0.4) !important;

    }

    .nav-links .nav-cta::after {

        display: none;

    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        text-align: center;
    }

.form-card {
    padding: 32px 10px;
}

.hero-chips {
    flex-direction: column;
    gap: 12px;
}

.chip {
    width: 100%;
    justify-content: center;
    text-align: center;
}

}