/* ==========================================================================
   VARIABLES DE CONTROL
   ========================================================================== */
:root {
    --navy-dark: #081C39;
    --navy-dark-95: rgba(8, 28, 57, 0.95);
    --brand-red: #ED3334;
    --brand-red-hover: #d82b2b;
    --white: #FFFFFF;
    --gray-input: #F4F6F9;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Variables de altura para prevención de solapamientos */
    --topbar-h: 40px;
    --navbar-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar-h) + var(--navbar-h) + 34px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    overflow-x: hidden;
}
body { background-color: var(--navy-dark); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   BARRA DE NOTIFICACIÓN
   ========================================================================== */
.top-notice-bar {
    background: linear-gradient(90deg, #ED3334 0%, #081C39 100%);
    min-height: var(--topbar-h);
    padding: 8px 0;
    font-size: 13px; font-weight: 500; text-align: center;
    position: relative; z-index: 1010;
    display: flex; align-items: center;
}
.notice-text { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px; color: var(--white); line-height: 1.2; }
.notice-link { color: #ccff00; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.notice-link:hover { text-decoration: underline; }
.notice-link svg { display: block; }
.icon-cel, .icon-wsp { width: 16px; height: 16px; fill: currentColor; }
.legal-divider { color: rgba(255, 255, 255, 0.3); margin: 0 4px; }
.legal-disclaimer { color: rgba(255, 255, 255, 0.85); font-weight: 400; }

/* ==========================================================================
   NAVBAR (Con espacio extra superior para el Logo)
   ========================================================================== */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.navbar-wrapper { 
    padding: 22px 0; /* Despega el logo de la franja roja */
    min-height: var(--navbar-h); 
    display: flex; align-items: center; background-color: transparent; transition: var(--transition-smooth); 
}
.site-header.scrolled .navbar-wrapper { 
    padding: 12px 0; /* Reduce el espacio al hacer scroll */
    background: var(--navy-dark-95); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px); 
}
.container-nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.brand-logo .logo-img { display: block; width: 230px; height: auto; transition: var(--transition-smooth); }
.site-header.scrolled .logo-img { width: 190px; }

.nav-menu { display: flex; gap: 28px; }
.menu-link { color: var(--white); text-decoration: none; font-size: 15px; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.7); padding: 6px 0; position: relative; }
.site-header.scrolled .menu-link { text-shadow: none; }
.menu-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--brand-red); transition: var(--transition-smooth); }
.menu-link:hover::after, .menu-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 15px; }

.btn-nav-call {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background-color: var(--brand-red); color: var(--white); text-decoration: none;
    padding: 12px 28px; border-radius: 30px; font-size: 15px; font-weight: 700;
    border: none; transition: var(--transition-smooth);
}
.btn-nav-call:hover { background-color: var(--brand-red-hover); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(237, 51, 52, 0.4); }
.mobile-menu-btn { display: none; }

/* ==========================================================================
   PORTADA HERO
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: calc(var(--topbar-h) + var(--navbar-h) + 60px);
    padding-bottom: 60px;
    overflow: hidden; 
}

.hero-bg-anim {
    position: absolute; top: -5%; left: -5%; width: 110%; height: 110%; z-index: 1;
    overflow: hidden;
    background-color: #081C39;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.25s ease;
    will-change: opacity, transform;
}

.hero-bg-slide.is-active {
    opacity: 1;
    z-index: 1;
    animation: zoomBackground 7.4s ease-out forwards;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(8, 28, 57, 0.95) 37.02%, rgba(8, 28, 57, 0.1) 100%);
    z-index: 2;
}
@keyframes zoomBackground {
    0% { transform: scale(1); }
    100% { transform: scale(1.075); }
}

.container-hero { position: relative; z-index: 3; }
.hero-row { display: flex; align-items: center; gap: 80px; }
.hero-col-content { width: 55%; }
.hero-col-form { width: 45%; }

.badge-trust {
    display: inline-flex; align-items: center; gap: 8px; height: 40px;
    background: linear-gradient(90deg, rgba(8, 28, 57, 0.4) 0%, rgba(237, 51, 52, 0.4) 14.9%);
    border: 1px solid #B3FF00; border-radius: 30px; padding: 0 20px; margin-bottom: 25px;
}
/* Color Exacto de la tipografía del Badge */
.badge-trust span { font-size: 14px; font-weight: 700; color: #B2FF00; }
.icon-check-solid { width: 18px; height: 18px; fill: currentColor; color: #B3FF00; }

.hero-title { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }

.gold-shine {
    background: linear-gradient(to right, #B58529 0%, #FCEABB 20%, #D4AF37 40%, #AA771C 60%, #FCEABB 80%, #B58529 100%);
    background-size: 200% auto; color: #000;
    background-clip: text; -webkit-background-clip: text;
    text-fill-color: transparent; -webkit-text-fill-color: transparent;
    animation: shineGold 6s linear infinite; display: inline-block;
}
@keyframes shineGold { to { background-position: 200% center; } }

@keyframes ctaGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-wsp-figma,
.btn-call-figma,
.sijs-btn-wsp,
.sijs-btn-call,
.sijs-btn-email,
.service-modal__cta--wsp,
.service-modal__cta--call,
.service-modal__cta--email,
.conversion-banner__btn--wsp,
.conversion-banner__btn--call,
.conversion-banner__btn--email,
.conversion-banner__btn--schedule,
.final-contact-action--wsp,
.final-contact-action--call,
.final-contact-action--email,
.final-contact-action--schedule,
.floating-wa-chat__button,
.wa-final-send {
    background-size: 220% 100%;
    animation: ctaGradientFlow 5.8s ease-in-out infinite;
    will-change: background-position;
}

@media (prefers-reduced-motion: reduce) {
    .btn-wsp-figma,
    .btn-call-figma,
    .sijs-btn-wsp,
    .sijs-btn-call,
    .sijs-btn-email,
    .service-modal__cta--wsp,
    .service-modal__cta--call,
    .service-modal__cta--email,
    .conversion-banner__btn--wsp,
    .conversion-banner__btn--call,
    .conversion-banner__btn--email,
    .conversion-banner__btn--schedule,
    .final-contact-action--wsp,
    .final-contact-action--call,
    .final-contact-action--email,
    .final-contact-action--schedule,
    .floating-wa-chat__button,
    .wa-final-send {
        animation: none;
    }
}

.hero-subtitle { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; font-weight: 400; max-width: 90%; }
.hero-benefits { margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; }
.icon-check-outline { width: 20px; height: 20px; fill: currentColor; color: #B3FF00; flex-shrink: 0; }

.hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-hero-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; font-size: 16px; font-weight: 700; text-decoration: none;
    color: var(--white); transition: var(--transition-smooth); cursor: pointer;
}
.btn-wsp-figma {
    background-image: linear-gradient(90deg, #081C39 0%, #01963D 36%, #04B64E 64%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255); box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25); border-radius: 30px;
}
.btn-wsp-figma:hover { transform: translateY(-3px); box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.35); filter: brightness(1.1); }
.btn-call-figma {
    background-image: linear-gradient(90deg, #FF4445 0%, #a49c00a6 36%, #FF4445 64%, #002660 100%);
    border: 1px solid rgb(255, 255, 255); box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25); border-radius: 30px;
}
.btn-call-figma:hover { transform: translateY(-3px); box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.35); filter: brightness(1.1); }

/* ==========================================================================
   FORMULARIO Y DROPDOWNS
   ========================================================================== */
.form-card { background: var(--white); border-radius: 12px; padding: 35px; color: var(--navy-dark); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.form-card-header { text-align: center; margin-bottom: 25px; }
.form-card-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: #1A202C;}
.form-card-subtitle { font-size: 14px; color: #64748b; font-weight: 400; }
.form-group { margin-bottom: 16px; position: relative; width: 100%; }

.form-control, .state-search-input {
    width: 100%; background-color: var(--gray-input); border: 1px solid #E2E8F0;
    border-radius: 8px; padding: 15px 18px; font-size: 15px; font-family: inherit;
    color: #1A202C; transition: var(--transition-smooth);
}
.form-control::placeholder { color: #94A3B8; }
.form-control:focus { outline: none; border-color: var(--brand-red); background-color: #fff; }

.search-input-wrapper { position: relative; width: 100%; }
.search-icon-svg { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; transition: 0.3s; }
.custom-select-container.open .search-icon-svg { transform: translateY(-50%) rotate(180deg); color: var(--brand-red); }

.hidden-native-select { display: none; }
.custom-select-trigger {
    display: flex; justify-content: space-between; align-items: center;
    background-color: var(--gray-input); border: 1px solid #E2E8F0; border-radius: 8px;
    padding: 15px 18px; font-size: 15px; color: #94A3B8; cursor: pointer; transition: var(--transition-smooth);
}
.custom-select-container.has-value .custom-select-trigger { color: #1A202C; font-weight: 500; }
.custom-select-container.open .custom-select-trigger,
.custom-select-container.open .state-search-input { border-color: var(--brand-red); background-color: #fff; }

.icon-svg-select { width: 18px; height: 18px; color: #94A3B8; transition: transform 0.3s ease; }
.custom-select-container.open .icon-svg-select { transform: rotate(180deg); color: var(--brand-red); }

.custom-select-dropdown {
    position: absolute; top: calc(100% + 5px); left: 0; width: 100%;
    background: #fff; border: 1px solid #E2E8F0; border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); z-index: 100;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 250px; overflow-y: auto;
}
.custom-select-container.open .custom-select-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.custom-select-trigger.is-error,
.state-search-input.is-error {
    border-color: #ED3334;
    box-shadow: 0 0 0 3px rgba(237, 51, 52, 0.12);
}

.custom-select-option { padding: 12px 18px; font-size: 15px; color: #1A202C; cursor: pointer; border-bottom: 1px solid #F1F5F9; }
.custom-select-option:hover { background-color: #F8FAFC; }
.custom-select-option.selected { background-color: rgba(237, 51, 52, 0.05); color: var(--brand-red); font-weight: 600; }
.trigger-option { color: var(--brand-red); font-weight: 700; text-align: center; }
.no-results { padding: 12px 18px; color: #94A3B8; font-style: italic; text-align: center; }

.btn-submit {
    width: 100%; background-color: var(--brand-red); color: var(--white); border: none;
    padding: 16px; font-size: 16px; font-weight: 700; border-radius: 8px; cursor: pointer;
    transition: var(--transition-smooth); margin-top: 5px;
}
.btn-submit:hover { background-color: var(--brand-red-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(237, 51, 52, 0.3); }
.form-success-msg {
    position: relative;
    padding: 16px 16px 16px 46px;
    background: linear-gradient(180deg, #ECFDF3 0%, #DFF7E8 100%);
    color: #1E4620;
    text-align: left;
    border: 1px solid rgba(30, 70, 32, 0.14);
    border-radius: 12px;
    font-weight: 850;
    line-height: 1.35;
    margin-top: 15px;
    box-shadow: 0 12px 28px rgba(8, 28, 57, 0.08);
}

.form-success-msg::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #1D6F3A;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

.is-form-submitted .form-success-msg {
    margin: auto 0;
    padding: 22px 18px;
    padding-left: 50px;
}

.lead-form-step {
    display: none;
}

.lead-form-step.is-active {
    display: block;
}

.lead-form-progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 18px;
}

.lead-form-progress__item {
    height: 7px;
    border-radius: 999px;
    background: #E4EAF2;
    overflow: hidden;
}

.lead-form-progress__item::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.lead-form-progress__item.is-active::before,
.lead-form-progress__item.is-complete::before {
    transform: scaleX(1);
}

.lead-qualifier {
    color: var(--navy-dark);
}

.lead-qualifier__header {
    margin-bottom: 14px;
    text-align: center;
}

.lead-qualifier__header strong {
    display: block;
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.15;
    font-weight: 900;
}

.lead-qualifier__header span {
    display: block;
    margin-top: 6px;
    color: #64748B;
    font-size: 13px;
    line-height: 1.35;
}

.lead-question {
    padding: 13px;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    background: #F8FAFC;
}

.lead-question + .lead-question {
    margin-top: 10px;
}

.lead-question.is-error {
    border-color: #ED3334;
    box-shadow: 0 0 0 3px rgba(237, 51, 52, 0.1);
}

.lead-question__text {
    margin: 0 0 9px;
    color: var(--navy-dark);
    font-size: 13px;
    line-height: 1.28;
    font-weight: 900;
}

.lead-question__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lead-question__option {
    min-height: 38px;
    flex: 1 1 calc(50% - 8px);
    border: 1px solid #C8D3E2;
    border-radius: 999px;
    background: #fff;
    color: var(--navy-dark);
    padding: 8px 12px;
    font-family: inherit;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.lead-question__option:hover,
.lead-question__option:focus-visible {
    transform: translateY(-1px);
    border-color: #081C39;
}

.lead-question__option.is-selected {
    border-color: #081C39;
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
    color: #fff;
}

.lead-form-actions {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.lead-form-back {
    min-height: 50px;
    border: 1px solid #C8D3E2;
    border-radius: 12px;
    background: #fff;
    color: var(--navy-dark);
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
}

.lead-form-error {
    display: none;
    margin: 10px 0 0;
    color: #B42318;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.lead-form-error.is-visible {
    position: relative;
    display: block;
    padding: 12px 14px 12px 42px;
    border: 1px solid rgba(180, 35, 24, 0.24);
    border-radius: 12px;
    background: linear-gradient(180deg, #FFF1F0 0%, #FFE4E0 100%);
    box-shadow: 0 10px 24px rgba(8, 28, 57, 0.08);
    text-align: left;
}

.lead-form-error.is-visible::before {
    content: "!";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #B42318;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA
   ========================================================================== */
.anim-element { opacity: 0; transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-up { transform: translateY(30px); }
.fade-scale { transform: scale(0.95); }
.anim-element.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* ==========================================================================
   SIDEBAR MÓVIL Y RESPONSIVE (Prevención de Solapamiento)
   ========================================================================== */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 28, 57, 0.7); backdrop-filter: blur(5px);
    z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-sidebar {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
    background: var(--navy-dark); z-index: 2000; box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-sidebar.active { right: 0; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 25px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-logo { width: 140px; }
.menu-close-btn { background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; margin-top: -5px;}
.sidebar-nav { display: flex; flex-direction: column; padding: 25px 20px; gap: 20px; }
.sidebar-nav .menu-link { font-size: 18px; color: rgba(255,255,255,0.9); font-weight: 500; text-shadow: none; border-bottom: none;}
.sidebar-nav .menu-link::after { display: none; }
.sidebar-footer { padding: 20px; margin-top: auto; }
.w-100 { width: 100%; justify-content: center; }

@media (max-width: 1024px) {
    .hero-row { gap: 40px; }
    .hero-title { font-size: 46px; }
}

@media (max-width: 850px) {
    .nav-menu, .desktop-only { display: none; }
    .mobile-menu-btn { display: block; background: none; border: none; color: #fff; cursor: pointer; }
    
    /* SOLUCIÓN AL SOLAPAMIENTO: Aumentamos el padding a 200px para que tenga espacio holgado */
    .hero-section { padding-top: 200px; }
    .hero-section::before { background: linear-gradient(180deg, rgba(8, 28, 57, 0.8) 0%, rgba(8, 28, 57, 0.95) 100%); }
    
    .hero-row { flex-direction: column; text-align: center; gap: 30px; }
    .hero-col-content, .hero-col-form { width: 100%; }
    .hero-benefits { align-items: center; }
    .hero-ctas { justify-content: center; width: 100%; }
    .btn-hero-cta { width: 100%; max-width: 400px; }
    .hero-subtitle { margin: 0 auto 30px auto; }
}

@media (max-width: 500px) {
    .notice-text { font-size: 11.5px; }
    .hero-section { padding-top: 200px; } /* Mantenemos 200px de seguridad */
    .hero-title { font-size: 36px; }
    .form-card { padding: 25px 20px; }
}

/* ==========================================================================
   METRICS SECTION (FIDELIDAD 4 MÉTRICAS)
   ========================================================================== */
.metrics-section {
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
    padding: 45px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
}

.metrics-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 15px; 
    flex: 1;
    justify-content: center;
}

.metric-icon {
    width: 55px; /* Reducido levemente para 4 columnas */
    height: 55px;
    fill: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.metric-item:hover .metric-icon {
    transform: scale(1.08) rotate(-3deg);
}

.metric-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.metric-number {
    font-size: 38px; /* Ajustado para que el 15.000 quepa en 1 línea */
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.metric-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    opacity: 0.95;
    text-transform: capitalize; /* Opcional: para emparejar mayúsculas */
}

/* Líneas Divisorias Amarillas */
.metric-divider {
    width: 1px;
    height: 50px;
    background-color: #FFDE59;
    opacity: 0.7;
    flex-shrink: 0;
    margin: 0 10px;
}

/* --- Responsive Metrics (Centrado Absoluto) --- */
@media (max-width: 1024px) {
    .metrics-container {
        flex-direction: column;
        align-items: center; /* Fuerza el centrado del bloque */
        gap: 25px;
        padding: 0 20px;
    }
    
    .metric-item {
        flex-direction: column; /* Apila icono arriba y texto abajo */
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .metric-icon {
        margin-bottom: 5px;
    }

    .metric-content {
        align-items: center; /* Centra el número y texto */
        text-align: center;
    }

    /* La línea divisoria se vuelve horizontal */
    .metric-divider {
        width: 100px;
        height: 1px;
        background-color: rgba(255, 222, 89, 0.5);
        margin: 5px 0;
    }
}

/* ==========================================================================
   SECCIÓN VISA JUVENIL (SIJS)
   ========================================================================== */
.sijs-section {
    background-color: #F5F5F1;
    padding: 80px 0 70px;
    color: var(--navy-dark);
    scroll-margin-top: 150px;
}

.sijs-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* ---- COLUMNA IZQUIERDA ---- */
.sijs-col-content {
    flex: 1;
    min-width: 0;
}

/* Badge */
.sijs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(270deg, #081C39 0%, #ED3334 95.67%);
    border: 1px solid #B3FF00;
    border-radius: 30px;
    padding: 8px 18px;
    margin-bottom: 20px;
}
.sijs-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* Título */
.sijs-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

/* Descripción */
.sijs-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3D4A5C;
    margin-bottom: 32px;
    max-width: 95%;
}

.sijs-mobile-cta-block {
    display: none;
}

/* Ítems de beneficios */
.sijs-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.sijs-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sijs-benefit-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: linear-gradient(270deg, #081C39 0%, #ED3334 95.67%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sijs-benefit-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.sijs-benefit-text p {
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

/* Proceso paso a paso */
.sijs-steps-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 14px;
}

.sijs-steps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sijs-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #DADADA;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14px;
    color: #3D4A5C;
    font-weight: 400;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.sijs-step-item:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateX(3px);
}

.sijs-step-num {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: linear-gradient(360deg, #081C39 0%, #ED3334 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- COLUMNA DERECHA: TARJETA ---- */
.sijs-col-card {
    width: min(46vw, 560px);
    min-width: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 26px;
}

.sijs-card {
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 16px 42px rgba(8,28,57,0.10);
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(8, 28, 57, 0.06);
}

/* Imagen */
.sijs-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex: none;
    aspect-ratio: 1.26 / 1;
    border-radius: 16px;
    background: #081C39;
}

.sijs-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* Métricas de la tarjeta */
.sijs-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    background: #ffffff;
    padding: 16px 4px;
    gap: 0;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    margin: 16px 0 14px;
}

.sijs-card-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    min-height: 66px;
    padding: 6px 12px;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.sijs-card-metric + .sijs-card-metric {
    border-left: 1px solid #E2E8F0;
}

.sijs-card-metric svg {
    flex-shrink: 0;
    width: clamp(22px, 2.2vw, 32px);
    height: auto;
    padding: 7px;
    box-sizing: content-box;
    border-radius: 10px;
    background: #081C39;
}

.sijs-card-metric svg path {
    fill: #fff;
}

.sijs-metric-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sijs-metric-num {
    font-size: clamp(19px, 1.8vw, 27px);
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
}

.sijs-metric-label {
    font-size: clamp(9.5px, 0.9vw, 12.5px);
    color: #526176;
    font-weight: 700;
    line-height: 1.12;
    margin-top: 3px;
}

.sijs-card-metric-divider {
    display: none;
}

/* CTA inferior de tarjeta */
.sijs-card-cta-block {
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
    padding: 16px 20px 12px;
    border-radius: 16px;
    overflow: hidden;
}

.sijs-card-cta-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.sijs-card-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.sijs-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: clamp(13px, 1.25vw, 18px);
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    flex: 1;
    white-space: nowrap;
}
.sijs-cta-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

.sijs-btn-wsp {
    background-image: linear-gradient(90deg, #081C39 0%, #01963D 36%, #04B64E 64%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 8px 18px rgba(0,0,0,0.18);
}
.sijs-btn-call {
    background-image: linear-gradient(90deg, #FF4445 0%, #a49c00a6 36%, #FF4445 64%, #002660 100%);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 8px 18px rgba(0,0,0,0.18);
}
.sijs-btn-email {
    background-image: linear-gradient(270deg, #012b6a 0%, #081C39 38%, hsl(261, 100%, 24%) 62%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 8px 18px rgba(0,0,0,0.18);
}

.sijs-btn-wsp svg,
.sijs-btn-call svg,
.sijs-btn-email svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.sijs-btn-email .icon-email {
    width: 18px;
    height: auto;
}

.sijs-card-cta-note {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    margin-top: 10px;
}

/* ================================================
   SEPARADOR
   ================================================ */
.sijs-separator {
    background-color: #F5F5F1;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}
.sijs-separator-line {
    width: 100%;
    max-width: 700px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ED3334 40%, #081C39 100%);
    border-radius: 2px;
}

/* ================================================
   SECCIÓN CONTACTO / CTA
   ================================================ */
.sijs-contact-section {
    background-color: #F5F5F1;
    padding: 62px 0 84px;
    scroll-margin-top: 150px;
}

.sijs-contact-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy-dark);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.sijs-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 64px);
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
}

.sijs-contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: clamp(30px, 3.4vw, 54px) clamp(26px, 3.4vw, 56px);
    box-shadow: 0 18px 46px rgba(8,28,57,0.08);
    border: 1px solid rgba(8,28,57,0.04);
    display: flex;
    flex-direction: column;
    min-height: 660px;
}

.sijs-contact-card-label {
    font-size: clamp(15px, 1.25vw, 20px);
    font-weight: 800;
    color: var(--navy-dark);
    text-align: center;
    margin: 0 auto 34px;
    line-height: 1.15;
    max-width: 560px;
}

.sijs-lead-form {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.sijs-lead-form .form-control,
.sijs-lead-form .state-search-input {
    background-color: #F4F6F9;
    border: 1px solid #E2E8F0;
    color: var(--navy-dark);
    height: clamp(58px, 5vw, 72px);
    border-radius: 13px;
    font-size: clamp(15px, 1.2vw, 20px);
    padding-inline: 22px;
}
.sijs-lead-form .form-control::placeholder,
.sijs-lead-form .state-search-input::placeholder { color: #94A3B8; }

.sijs-btn-submit {
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
    border: none;
    height: clamp(58px, 5vw, 72px);
    margin-top: 14px;
    border-radius: 12px;
    font-size: clamp(16px, 1.3vw, 21px);
}
.sijs-btn-submit:hover {
    background: linear-gradient(90deg, #0d2a55 0%, #c72829 100%);
    box-shadow: 0 8px 20px rgba(237,51,52,0.35);
}

/* Calendly card */
.sijs-calendly-card {
    padding: clamp(30px, 3.4vw, 48px) clamp(26px, 3.2vw, 48px);
}
.sijs-calendly-embed {
    width: min(100%, 560px);
    height: 520px;
    margin: 2px auto 0;
    border-radius: 12px;
    overflow: hidden;
    flex: none;
    background: #fff;
}
.sijs-calendly-embed .calendly-inline-widget {
    min-width: 280px;
    height: 100% !important;
    min-height: 0 !important;
}

/* ================================================
   LEAD MAGNET SIJS
   ================================================ */
.sijs-lead-magnet-section {
    background: linear-gradient(180deg, #081C39 0%, #ED3334 100%);
    padding: 22px 0;
    color: var(--navy-dark);
}

.sijs-lead-magnet-card {
    width: min(100%, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 28px 46px 26px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid rgba(8, 28, 57, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.sijs-lead-magnet-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #ED3334;
    box-shadow: 0 10px 18px rgba(237, 51, 52, 0.20);
}

.sijs-lead-magnet-title {
    margin: 0 0 7px;
    color: var(--navy-dark);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.1px;
}

.sijs-lead-magnet-subtitle {
    margin: 0 0 17px;
    color: #26364F;
    font-size: 16px;
    line-height: 1.25;
}

.sijs-lead-magnet-form {
    display: grid;
    grid-template-columns: 194px 194px 194px 214px;
    gap: 12px;
    align-items: start;
}

.lead-magnet-field {
    position: relative;
    min-width: 0;
}

.lead-phone-country {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 2;
    width: 64px;
    height: 26px;
    padding: 0 14px 0 0;
    border-right: 1px solid #CBD5E1;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
    transform: translateY(-50%);
    color: var(--navy-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #5D6676 50%), linear-gradient(135deg, #5D6676 50%, transparent 50%);
    background-position: calc(100% - 8px) 10px, calc(100% - 3px) 10px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.sijs-lead-magnet-form input {
    width: 100%;
    height: 42px;
    border: 1.5px solid #AEB9C8;
    border-radius: 9px;
    padding: 0 13px;
    color: var(--navy-dark);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sijs-lead-magnet-form input::placeholder {
    color: #7C8797;
}

.sijs-lead-magnet-form input:focus {
    outline: none;
    border-color: #ED3334;
    box-shadow: 0 0 0 4px rgba(237, 51, 52, 0.12);
}

.sijs-lead-magnet-form .lead-magnet-field--phone input {
    padding-left: 84px;
}

.lead-magnet-hp {
    position: absolute;
    left: -9999px;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}

.sijs-lead-magnet-btn {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 10px;
    padding: 0 18px;
    background: #ED3334;
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(237, 51, 52, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sijs-lead-magnet-form .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sijs-lead-magnet-btn:hover,
.sijs-lead-magnet-btn:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 16px 30px rgba(237, 51, 52, 0.34);
}

.sijs-lead-magnet-btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.sijs-lead-magnet-msg {
    grid-column: 1 / -1;
    min-height: 0;
    margin: 0;
    color: #1D6F3A;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
}

.sijs-lead-magnet-msg:not(:empty) {
    position: relative;
    margin-top: 4px;
    padding: 12px 14px 12px 42px;
    border-radius: 12px;
    border: 1px solid rgba(29, 111, 58, 0.22);
    background: linear-gradient(180deg, #ECFDF3 0%, #DFF7E8 100%);
    box-shadow: 0 10px 24px rgba(8, 28, 57, 0.08);
}

.sijs-lead-magnet-msg:not(:empty)::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #1D6F3A;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

.sijs-lead-magnet-msg.is-error {
    color: #B42318;
    border-color: rgba(180, 35, 24, 0.24);
    background: linear-gradient(180deg, #FFF1F0 0%, #FFE4E0 100%);
}

.sijs-lead-magnet-msg.is-error::before {
    content: "!";
    background: #B42318;
}

/* ================================================
   VARIANTE ASILO
   ================================================ */
.asylum-section {
    padding-top: 80px;
}

.asylum-badge {
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
}

.asylum-section .sijs-card-cta-block {
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
}

.asylum-section .sijs-card-metric svg.metric-icon {
    width: clamp(22px, 2.2vw, 32px);
    height: clamp(22px, 2.2vw, 32px);
    padding: 7px;
    color: #fff;
    fill: currentColor;
    box-sizing: content-box;
    border-radius: 10px;
    background: #081C39;
}

.asylum-card-metrics {
    gap: 8px;
    padding: 12px 10px;
    border-color: #DDE6F0;
}

.asylum-card-metrics .sijs-card-metric {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    justify-content: flex-start;
    gap: 7px;
    min-height: 80px;
    padding: 10px 6px;
    border-radius: 14px;
    background: #fff;
    min-width: 0;
}

.asylum-card-metrics .sijs-card-metric + .sijs-card-metric {
    border-left: 0;
}

.asylum-card-metrics .sijs-metric-num {
    font-size: clamp(18px, 1.45vw, 23px);
    letter-spacing: -0.6px;
    white-space: nowrap;
}

.asylum-card-metrics .sijs-metric-label {
    font-size: clamp(9px, 0.76vw, 10.5px);
    max-width: 96px;
}

.asylum-card-metrics .sijs-metric-text {
    min-width: 0;
}

.asylum-section .asylum-card-metrics .sijs-card-metric svg.metric-icon {
    width: 24px;
    height: 24px;
    padding: 6px;
}

.asylum-separator {
    padding-top: 14px;
}

.asylum-contact-section {
    padding-top: 44px;
}

.asylum-native-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #081C39 50%), linear-gradient(135deg, #081C39 50%, transparent 50%);
    background-position: calc(100% - 24px) 50%, calc(100% - 16px) 50%;
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.asylum-lead-magnet-section {
    background: linear-gradient(180deg, #ED3334 0%, #081C39 100%);
}

/* ================================================
   OTROS SERVICIOS
   ================================================ */
.other-services-section {
    background: #F5F5F1;
    padding: 64px 0 82px;
    color: var(--navy-dark);
    scroll-margin-top: 150px;
}

.other-services-header {
    text-align: center;
    margin-bottom: 52px;
}

.other-services-header h2 {
    margin: 0 0 14px;
    font-size: clamp(38px, 4.1vw, 56px);
    line-height: 1;
    letter-spacing: -0.8px;
    font-weight: 900;
}

.other-services-header p {
    margin: 0;
    color: #1D2F4A;
    font-size: clamp(16px, 1.15vw, 20px);
    line-height: 1.35;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 64px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 382px;
    padding: 14px 20px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #D6D8DA;
    box-shadow: 0 5px 0 rgba(8, 28, 57, 0.12), 0 10px 22px rgba(8, 28, 57, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 7px 0 rgba(8, 28, 57, 0.12), 0 18px 34px rgba(8, 28, 57, 0.12);
}

.service-card img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 18px;
}

.service-card h3 {
    margin: 0 0 16px;
    color: var(--navy-dark);
    font-size: clamp(17px, 1.15vw, 21px);
    line-height: 1.18;
    font-weight: 900;
    text-align: center;
}

.service-card p {
    margin: 0 0 22px;
    color: #1D2F4A;
    font-size: clamp(15px, 1.05vw, 19px);
    line-height: 1.28;
    text-align: center;
}

.service-more-btn {
    margin-top: auto;
    min-height: 48px;
    width: 100%;
    border: 2px solid #081C39;
    border-radius: 14px;
    background: #fff;
    color: #081C39;
    font: inherit;
    font-size: clamp(16px, 1.05vw, 19px);
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-more-btn:hover,
.service-more-btn:focus-visible {
    transform: translateY(-2px);
    background: #081C39;
    color: #fff;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.service-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 57, 0.72);
    backdrop-filter: blur(8px);
}

.service-modal__dialog {
    position: relative;
    width: min(100%, 760px);
    max-height: min(86vh, 860px);
    overflow: auto;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.service-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(8, 28, 57, 0.88);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.service-modal__image {
    width: 100%;
    aspect-ratio: 2.2 / 1;
    display: block;
    object-fit: cover;
}

.service-modal__body {
    padding: clamp(24px, 4vw, 40px);
}

.service-modal__body h2 {
    margin: 0 0 14px;
    color: var(--navy-dark);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
    font-weight: 900;
}

.service-modal__body p {
    margin: 0 0 26px;
    color: #26364F;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.55;
}

.service-modal__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-modal__cta {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(8, 28, 57, 0.18);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.service-modal__cta:hover,
.service-modal__cta:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.service-modal__cta--wsp {
    background-image: linear-gradient(90deg, #081C39 0%, #01963D 36%, #04B64E 64%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
}

.service-modal__cta--call {
    background-image: linear-gradient(90deg, #FF4445 0%, #a49c00a6 36%, #FF4445 64%, #002660 100%);
    border: 1px solid rgb(255, 230, 0);
}

.service-modal__cta--email {
    background-image: linear-gradient(270deg, #012b6a 0%, #081C39 38%, hsl(261, 100%, 24%) 62%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
}

.service-modal__cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

body.service-modal-open {
    overflow: hidden;
}

/* ================================================
   BANNER CTA FINAL
   ================================================ */
.conversion-banner-section {
    background: #F5F5F1;
    padding: 28px 0 76px;
}

.conversion-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(28px, 3.4vw, 40px) clamp(28px, 5vw, 64px);
    border-radius: 24px;
    background:
        linear-gradient(100deg, rgba(8, 28, 57, 0.98) 0%, rgba(74, 38, 62, 0.96) 45%, rgba(237, 51, 52, 0.98) 100%);
    color: #fff;
    box-shadow: 0 24px 58px rgba(8, 28, 57, 0.18);
    overflow: hidden;
}

.conversion-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 850;
}

.conversion-banner__eyebrow svg {
    width: 15px;
    height: 20px;
    flex-shrink: 0;
}

.conversion-banner h2 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3.35vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.8px;
    font-weight: 900;
}

.conversion-banner__content > p:last-child {
    max-width: 660px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.18vw, 19px);
    line-height: 1.45;
}

.conversion-banner__actions {
    display: grid;
    gap: 12px;
}

.conversion-banner__btn {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    padding: 12px 22px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 12px 22px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    font-family: inherit;
}

.conversion-banner__btn:hover,
.conversion-banner__btn:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.conversion-banner__btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.conversion-banner__btn .icon-email {
    width: 20px;
    height: auto;
}

.conversion-banner__btn--schedule svg {
    width: 18px;
    height: 20px;
}

.conversion-banner__btn--wsp {
    background-image: linear-gradient(90deg, #081C39 0%, #01963D 36%, #04B64E 64%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
}

.conversion-banner__btn--call {
    background-image: linear-gradient(90deg, #FF4445 0%, #a49c00a6 36%, #FF4445 64%, #002660 100%);
    border: 1px solid rgb(255, 255, 255);
}

.conversion-banner__btn--email {
    background-image: linear-gradient(270deg, #012b6a 0%, #081C39 38%, hsl(261, 100%, 24%) 62%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
}

.conversion-banner__btn--schedule {
    background-image: linear-gradient(270deg, #081C39 0%, #006BFF 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

/* ================================================
   TESTIMONIOS
   ================================================ */
.testimonials-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 76px 0 92px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(237, 51, 52, 0.34) 0, transparent 31%),
        radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.13) 0, transparent 28%),
        linear-gradient(120deg, #081C39 0%, #13213E 48%, #ED3334 100%);
    color: #fff;
    scroll-margin-top: 150px;
}

.testimonials-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 34px;
    align-items: end;
    margin-bottom: 34px;
}

.testimonials-kicker {
    width: fit-content;
    margin: 0 0 12px;
    padding: 8px 15px;
    border-radius: 999px;
    color: #081C39;
    background: #fff;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
}

.testimonials-header h2 {
    max-width: 760px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.8px;
    font-weight: 900;
}

.testimonials-copy > p:last-child {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.45;
}

.testimonials-proof {
    min-height: 164px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 22px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 20px 42px rgba(0,0,0,0.18);
    backdrop-filter: blur(12px);
}

.testimonials-proof strong {
    color: #fff;
    font-size: 48px;
    line-height: 0.95;
    font-weight: 950;
}

.testimonials-proof .testimonial-stars {
    margin: 8px 0 8px;
    color: #B8FF00;
}

.testimonials-proof p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 750;
    text-align: center;
}

.testimonials-marquee {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.testimonials-marquee::-webkit-scrollbar {
    display: none;
}

.testimonials-marquee.is-dragging {
    cursor: grabbing;
}

.testimonials-marquee.is-dragging .testimonials-track,
.testimonials-marquee.is-user-paused .testimonials-track {
    animation-play-state: paused;
}

.testimonials-marquee--bottom {
    margin-top: 14px;
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 20px;
    margin-left: max(24px, calc((100vw - 1240px) / 2));
    animation: testimonialsScroll 42s linear infinite;
    will-change: transform;
}

.testimonials-marquee--bottom .testimonials-track {
    animation-name: testimonialsScrollReverse;
    animation-duration: 48s;
    transform: translate3d(-50%, 0, 0);
}

.testimonials-marquee:hover .testimonials-track,
.testimonials-marquee:focus-within .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    position: relative;
    flex: 0 0 390px;
    min-height: 228px;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 20px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #B8FF00 0%, #ED3334 100%);
}

.testimonial-quote-mark {
    position: absolute;
    right: 22px;
    top: 14px;
    color: rgba(8, 28, 57, 0.08);
    font-size: 86px;
    line-height: 1;
    font-weight: 900;
    pointer-events: none;
}

.testimonial-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.testimonial-card__top img {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(8, 28, 57, 0.2);
    background: #E9EDF2;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 3px solid #fff;
    background: linear-gradient(135deg, #081C39 0%, #ED3334 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(8, 28, 57, 0.2);
    font-size: 15px;
    line-height: 1;
    font-weight: 950;
}

.testimonial-card__top h3 {
    margin: 0 0 4px;
    color: var(--navy-dark);
    font-size: 16px;
    line-height: 1.15;
    font-weight: 900;
}

.testimonial-card__top p {
    margin: 0;
    color: #64748B;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.testimonial-stars {
    margin-bottom: 14px;
    color: #F5A623;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1px;
}

.testimonial-copy {
    margin: 0;
    color: #1D2F4A;
    font-size: 17px;
    line-height: 1.42;
    font-weight: 760;
}

.testimonial-card--has-photo .testimonial-copy {
    padding-right: 78px;
}

.testimonial-photo-chip {
    position: absolute;
    right: 18px;
    top: 50px;
    z-index: 2;
    width: 64px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
}

.testimonial-photo-chip img {
    display: block;
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.92);
    box-shadow: 0 12px 24px rgba(8, 28, 57, 0.24);
}

.testimonial-photo-chip span {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: max-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: #081C39;
    color: #fff;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 7px 14px rgba(8, 28, 57, 0.22);
}

.testimonial-photo-chip:hover img,
.testimonial-photo-chip:focus-visible img {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(8, 28, 57, 0.32);
}

.testimonial-photo-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.testimonial-photo-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.testimonial-photo-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 28, 57, 0.78);
    backdrop-filter: blur(8px);
}

.testimonial-photo-modal__panel {
    position: relative;
    z-index: 1;
    width: min(780px, calc(100vw - 48px));
    max-height: min(720px, calc(100vh - 72px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.38);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.22s ease;
}

.testimonial-photo-modal.is-open .testimonial-photo-modal__panel {
    transform: translateY(0) scale(1);
}

.testimonial-photo-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(8, 28, 57, 0.86);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.testimonial-photo-modal__media {
    min-height: 0;
    height: min(620px, calc(100vh - 72px));
    background: #081C39;
}

.testimonial-photo-modal__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-photo-modal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    overflow-y: auto;
    color: var(--navy-dark);
}

.testimonial-photo-modal__content .testimonial-stars {
    margin-bottom: 14px;
}

.testimonial-photo-modal__content h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 950;
}

.testimonial-photo-modal__content p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 720;
}

.testimonial-photo-modal__content small {
    margin-top: 20px;
    color: #64748B;
    font-weight: 800;
}

@keyframes testimonialsScroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@keyframes testimonialsScrollReverse {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        animation: none;
        transform: none;
        overflow-x: auto;
        width: auto;
        padding-bottom: 8px;
    }
}

/* ================================================
   CONTACTO FINAL
   ================================================ */
.final-contact-section {
    background:
        linear-gradient(115deg, #081C39 0%, #3B2343 48%, #ED3334 100%);
    padding: 86px 0 0;
    color: #fff;
    scroll-margin-top: 150px;
    overflow: hidden;
}

.final-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.78fr);
    gap: clamp(32px, 5vw, 74px);
    align-items: center;
    padding: 0 0 72px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.final-contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 560px;
    color: #fff;
}

.final-contact-kicker {
    width: fit-content;
    margin: 0 0 16px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #B8FF00;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
}

.final-contact-content h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.9px;
    font-weight: 950;
}

.final-contact-subtitle {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 1.18vw, 20px);
    line-height: 1.45;
}

.final-contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.final-contact-action {
    min-height: 118px;
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-content: center;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    background: rgba(8, 28, 57, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 16px 28px rgba(0,0,0,0.2);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.final-contact-action:hover,
.final-contact-action:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 20px 34px rgba(0,0,0,0.25);
}

.final-contact-action svg {
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
    color: currentColor;
    fill: currentColor;
}

.final-contact-action span {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 900;
}

.final-contact-action strong {
    margin-top: 4px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.final-contact-action--wsp {
    background-image: linear-gradient(90deg, #081C39 0%, #01963D 36%, #04B64E 64%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
}

.final-contact-action--call {
    background-image: linear-gradient(90deg, #FF4445 0%, #a49c00a6 36%, #FF4445 64%, #002660 100%);
    border: 1px solid rgb(255, 255, 255);
}

.final-contact-action--email {
    background-image: linear-gradient(270deg, #012b6a 0%, #081C39 38%, hsl(261, 100%, 24%) 62%, #081C39 100%);
    border: 1px solid rgb(255, 255, 255);
}

.final-contact-action--wsp,
.final-contact-action--call,
.final-contact-action--email,
.final-contact-action--schedule {
    background-size: 220% 100%;
}

.final-contact-action--schedule {
    background-image: linear-gradient(270deg, #081C39 0%, #006BFF 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.final-contact-note {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 750;
}

.final-contact-form-card {
    align-self: center;
    padding: clamp(24px, 3vw, 38px);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.18);
}

.final-contact-form-label {
    max-width: 420px;
    margin: 0 auto 24px;
    color: var(--navy-dark);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
}

.final-contact-form {
    display: grid;
    gap: 14px;
}

.final-contact-form .form-group {
    margin: 0;
}

.final-contact-form .form-control {
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
    border: 1px solid #D5DAE2;
    background: #F4F6F9;
    color: var(--navy-dark);
    font-size: 16px;
    font-weight: 700;
    padding: 0 18px;
}

.final-contact-form .custom-select-container {
    margin: 0;
}

.final-contact-form .custom-select-trigger {
    min-height: 58px;
    border-radius: 14px;
    background: #F4F6F9;
    border: 1px solid #D5DAE2;
}

.final-contact-form .custom-select-text,
.final-contact-form .state-search-input::placeholder,
.final-contact-form .form-control::placeholder {
    color: #9AA7B8;
    font-weight: 750;
}

.final-contact-form .custom-select-dropdown {
    z-index: 5;
}

.final-contact-form .form-control:focus {
    outline: 3px solid rgba(184, 255, 0, 0.32);
    border-color: #081C39;
    background: #fff;
}

.final-contact-submit {
    min-height: 60px;
    margin-top: 10px;
    border-radius: 14px;
    background: linear-gradient(90deg, #081C39 0%, #ED3334 100%);
}

.final-calendly-full {
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.final-calendly-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 54px 20px 24px;
    border-bottom: 1px solid #E4E8EF;
}

.final-calendly-header p {
    margin: 0 0 8px;
    color: #ED3334;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.final-calendly-header h3 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.4px;
}

.final-calendly-frame {
    width: 100vw;
    height: 820px;
    background: #fff;
}

.final-calendly-frame .calendly-inline-widget,
.final-calendly-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.calendly-modal {
    position: fixed;
    inset: 0;
    z-index: 3200;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.calendly-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.calendly-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 57, 0.76);
    backdrop-filter: blur(8px);
}

.calendly-modal__dialog {
    position: relative;
    width: min(100%, 980px);
    max-height: 92vh;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.calendly-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #081C39;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.calendly-modal__header {
    padding: 26px 72px 18px 30px;
    border-bottom: 1px solid #E4E8EF;
}

.calendly-modal__header p {
    margin: 0 0 6px;
    color: #ED3334;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calendly-modal__header h2 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.08;
    font-weight: 950;
}

.calendly-modal__embed {
    height: min(72vh, 720px);
    min-height: 580px;
}

/* ================================================
   WHATSAPP QUALIFIER
   ================================================ */
.floating-wa-chat {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 2100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

.floating-wa-chat__bubble {
    position: relative;
    display: grid;
    grid-template-columns: 10px 1fr;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: 224px;
    padding: 11px 15px 11px 12px;
    border-radius: 18px 18px 4px 18px;
    background: #fff;
    color: var(--navy-dark);
    font-size: 13px;
    line-height: 1.25;
    text-align: left;
    box-shadow: 0 10px 30px rgba(8, 28, 57, 0.22);
    transform-origin: right center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(14px) scale(0.92);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating-wa-chat__bubble strong,
.floating-wa-chat__bubble span span {
    display: block;
}

.floating-wa-chat__bubble strong {
    margin-bottom: 2px;
    color: #073B1A;
    font-size: 12px;
    font-weight: 950;
}

.floating-wa-chat__bubble span span {
    font-weight: 800;
}

.floating-wa-chat__bubble-status {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #04B64E;
    box-shadow: 0 0 0 0 rgba(4, 182, 78, 0.48);
    animation: floatingStatusPulse 1.8s ease-out infinite;
}

.floating-wa-chat.has-notification .floating-wa-chat__bubble,
.floating-wa-chat:hover .floating-wa-chat__bubble,
.floating-wa-chat:focus-visible .floating-wa-chat__bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.floating-wa-chat.has-notification .floating-wa-chat__bubble {
    animation: floatingNotificationNudge 0.7s 0.45s ease both;
}

.floating-wa-chat__bubble::after {
    content: '';
    position: absolute;
    right: -7px;
    bottom: 8px;
    border-width: 7px 0 7px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.floating-wa-chat__button {
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background-image: linear-gradient(90deg, #081C39 0%, #01963D 36%, #04B64E 64%, #081C39 100%);
    color: #fff;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.floating-wa-chat.has-notification .floating-wa-chat__button::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #ED3334;
    box-shadow: 0 3px 9px rgba(8, 28, 57, 0.25);
}

.floating-wa-chat__button svg {
    width: 31px;
    height: 31px;
}

.floating-wa-chat:hover .floating-wa-chat__button,
.floating-wa-chat:focus-visible .floating-wa-chat__button {
    transform: translateY(-2px) scale(1.04);
}

.floating-wa-chat:focus-visible {
    outline: 3px solid rgba(179, 255, 0, 0.9);
    outline-offset: 6px;
    border-radius: 999px;
}

@keyframes floatingStatusPulse {
    70% { box-shadow: 0 0 0 7px rgba(4, 182, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(4, 182, 78, 0); }
}

@keyframes floatingNotificationNudge {
    0%, 100% { transform: translateX(0) scale(1); }
    35% { transform: translateX(-7px) scale(1.02); }
    65% { transform: translateX(2px) scale(1); }
}

.wa-qualifier {
    position: fixed;
    inset: 0;
    z-index: 4200;
    display: grid;
    place-items: end;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.wa-qualifier.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wa-qualifier__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 57, 0.62);
    backdrop-filter: blur(9px);
}

.wa-qualifier__panel {
    position: relative;
    width: min(100%, 438px);
    height: min(720px, calc(100dvh - 36px));
    max-height: min(760px, calc(100vh - 36px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0, 173, 71, 0.18), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.24s ease;
}

.wa-qualifier.is-open .wa-qualifier__panel {
    transform: translateY(0) scale(1);
}

.wa-qualifier__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(8, 28, 57, 0.1);
    color: var(--navy-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.wa-qualifier__close:hover,
.wa-qualifier__close:focus-visible {
    background: #081C39;
    color: #fff;
}

.wa-qualifier__header {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    padding: 22px 62px 18px 20px;
    background: linear-gradient(110deg, #081C39 0%, #10345F 58%, #01963D 100%);
    color: #fff;
}

.wa-qualifier__header img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.wa-qualifier__header p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 900;
    color: #B3FF00;
}

.wa-qualifier__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.wa-qualifier__status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #B3FF00;
    box-shadow: 0 0 0 0 rgba(179, 255, 0, 0.7);
    animation: waStatusPulse 1.8s ease-out infinite;
}

@keyframes waStatusPulse {
    70% { box-shadow: 0 0 0 7px rgba(179, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(179, 255, 0, 0); }
}

.wa-qualifier__header h2 {
    margin: 0;
    font-size: 19px;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.2px;
}

.wa-qualifier__intro {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.35;
}

.wa-qualifier__progress {
    flex: 0 0 auto;
    height: 5px;
    background: #E5EAF1;
}

.wa-qualifier__progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(90deg, #B3FF00 0%, #00AD47 45%, #ED3334 100%);
    transition: width 0.24s ease;
}

.wa-qualifier__messages {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    height: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
    padding: 18px 18px 12px;
    color: var(--navy-dark);
    scrollbar-gutter: stable;
}

.wa-message {
    width: fit-content;
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.42;
    box-shadow: 0 6px 18px rgba(8, 28, 57, 0.08);
    animation: waBubbleIn 0.22s ease both;
}

.wa-message--bot {
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    background: #fff;
    border: 1px solid #E3E8F0;
}

.wa-message--user {
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    background: linear-gradient(135deg, #E8FFE9 0%, #CCF7D6 100%);
    color: #073B1A;
    font-weight: 800;
}

@keyframes waBubbleIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-qualifier__options {
    flex: 0 0 auto;
    display: grid;
    gap: 9px;
    max-height: min(30vh, 250px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 18px 18px;
    background: rgba(247, 250, 252, 0.96);
}

.wa-option,
.wa-final-send {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.wa-option {
    border: 1px solid #C8D3E2;
    background: #fff;
    color: var(--navy-dark);
    text-align: left;
    padding: 12px 14px;
}

.wa-option:hover,
.wa-option:focus-visible {
    border-color: #00AD47;
    box-shadow: 0 10px 24px rgba(0, 173, 71, 0.12);
    transform: translateY(-1px);
}

.wa-final-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background-image: linear-gradient(90deg, #081C39 0%, #01963D 36%, #04B64E 64%, #081C39 100%);
    background-size: 220% 100%;
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 173, 71, 0.2);
    animation: ctaGradientFlow 5.8s ease-in-out infinite;
}

.wa-final-send svg {
    width: 18px;
    height: 18px;
}

.wa-qualifier__footer {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px 16px;
    border-top: 1px solid #E5EAF1;
}

.wa-qualifier__back {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #C8D3E2;
    border-radius: 999px;
    background: #fff;
    color: var(--navy-dark);
    font-weight: 900;
    cursor: pointer;
}

.wa-qualifier__back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.wa-qualifier__footer p {
    margin: 0;
    color: #6B7788;
    font-size: 11px;
    line-height: 1.35;
    text-align: right;
}

body.wa-chat-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .floating-wa-chat__bubble,
    .floating-wa-chat__bubble-status,
    .floating-wa-chat.has-notification .floating-wa-chat__bubble {
        animation: none;
        transition-duration: 0.01ms;
    }
    .wa-qualifier__messages {
        scroll-behavior: auto;
    }
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: #081C39;
    color: #fff;
    padding: 62px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 0.65fr) minmax(280px, 1.2fr) minmax(260px, 1fr);
    gap: clamp(34px, 5vw, 78px);
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    width: min(100%, 250px);
    margin-bottom: 24px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-brand p,
.footer-newsletter p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.35;
}

.footer-brand p {
    max-width: 330px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    transform: translateY(-2px);
    background: rgba(237, 51, 52, 0.88);
}

.footer-col h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
}

.footer-menu {
    display: grid;
    gap: 13px;
}

.footer-menu a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 17px;
    line-height: 1.25;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-menu a:hover,
.footer-menu a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: #B8FF00;
}

.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact a {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: #fff;
    fill: currentColor;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact a:hover svg,
.footer-contact a:focus-visible svg {
    color: #B8FF00;
}

.footer-newsletter p {
    max-width: 260px;
    margin-bottom: 12px;
}

.footer-guide-form {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 8px;
    max-width: 310px;
    align-items: stretch;
}

.footer-guide-form input,
.footer-guide-form button,
.footer-guide-form .sijs-lead-magnet-msg,
.footer-guide-form .lead-magnet-field,
.footer-guide-form .lead-magnet-hp {
    grid-column: 1 / -1;
}

.footer-guide-form input {
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 0 13px;
    font-size: 14px;
    font-weight: 750;
}

.footer-guide-form .lead-magnet-field--phone input {
    padding-left: 84px;
}

.footer-guide-form .lead-phone-country {
    color: #fff;
    border-right-color: rgba(255, 255, 255, 0.22);
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.76) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.76) 50%, transparent 50%);
}

.footer-guide-form .lead-phone-country option {
    color: #081C39;
}

.footer-guide-form input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.footer-guide-form input:focus {
    outline: 3px solid rgba(184, 255, 0, 0.24);
    border-color: rgba(184, 255, 0, 0.7);
}

.footer-guide-form button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 11px;
    background: #ED3334;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-guide-form button:hover,
.footer-guide-form button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.footer-guide-form button svg {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

.footer-guide-form .sijs-lead-magnet-msg {
    margin: 4px 0 0;
    color: #1D6F3A;
    font-size: 13px;
}

.footer-guide-form .sijs-lead-magnet-msg.is-error {
    color: #B42318;
}

.footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 46px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom p:nth-child(2) {
    text-align: center;
}

.footer-bottom p:last-child {
    text-align: right;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.88);
    /* font-weight: 850; */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: #B8FF00;
}

/* ================================================
   RESPONSIVE SIJS
   ================================================ */
@media (max-width: 1100px) {
    .sijs-container { gap: 36px; }
    .sijs-col-card { width: 440px; min-width: 360px; }
    .sijs-card { padding: 18px; }
    .sijs-card-metrics { padding-inline: 2px; }
    .sijs-card-metric { gap: 8px; padding: 10px 8px; }
    .sijs-card-cta-buttons { gap: 8px; }
    .sijs-cta-btn { padding-inline: 12px; }
    .sijs-title { font-size: 38px; }
    .sijs-lead-magnet-card {
        padding: 24px 28px 22px;
    }
    .sijs-lead-magnet-form {
        grid-template-columns: 1fr 1fr;
    }
    .sijs-lead-magnet-btn {
        grid-column: 1 / -1;
    }
    .other-services-grid {
        gap: 30px;
    }
    .service-card {
        padding: 14px 16px 18px;
    }
}

@media (max-width: 900px) {
    .sijs-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .sijs-col-card { width: 100%; min-width: 0; }
    .sijs-card-img-wrap { flex: none; }
    .sijs-card-img { height: 100%; }
    .sijs-title { font-size: 34px; }

    .sijs-mobile-cta-block {
        display: block;
        width: 100%;
        margin: -10px 0 30px;
        padding: 18px 16px 16px;
        border-radius: 18px;
        background: linear-gradient(100deg, #081C39 0%, #5B253C 45%, #ED3334 100%);
        box-shadow: 0 16px 34px rgba(8, 28, 57, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .sijs-mobile-cta-title {
        margin: 0 0 14px;
        color: #fff;
        font-size: 17px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
    }

    .sijs-mobile-cta-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sijs-mobile-cta-buttons .sijs-cta-btn {
        min-height: 52px;
        font-size: 16px;
        padding: 11px 12px;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 8px 18px rgba(0,0,0,0.18);
    }

    .sijs-contact-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }
    .sijs-contact-title {
        font-size: 30px;
        line-height: 1.18;
        margin-bottom: 36px;
    }
    .sijs-contact-card {
        min-height: auto;
    }
    .sijs-calendly-embed {
        height: 560px;
    }
    .sijs-lead-magnet-section {
        padding: 36px 0;
    }
    .sijs-lead-magnet-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 22px;
        text-align: center;
    }
    .sijs-lead-magnet-icon {
        margin: 0 auto;
    }
    .other-services-section {
        padding: 56px 0 70px;
    }
    .other-services-header {
        margin-bottom: 36px;
    }
    .other-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-modal__actions {
        grid-template-columns: 1fr;
    }
    .conversion-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .conversion-banner__eyebrow {
        justify-content: center;
    }
    .conversion-banner h2,
    .conversion-banner__content > p:last-child {
        margin-left: auto;
        margin-right: auto;
    }
    .conversion-banner__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .final-contact-shell {
        grid-template-columns: 1fr;
    }
    .final-contact-content {
        min-height: auto;
    }
    .final-contact-form-card {
        width: min(100%, 680px);
        justify-self: center;
    }
    .final-calendly-frame {
        height: 760px;
    }
    .footer-grid {
        grid-template-columns: 1.1fr 0.8fr;
        gap: 38px 56px;
    }
    .footer-guide-form {
        max-width: 360px;
    }
    .testimonials-section {
        padding: 58px 0 70px;
    }
    .testimonials-header {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
        margin-bottom: 24px;
    }
    .testimonials-kicker,
    .testimonials-copy > p:last-child,
    .testimonials-header h2 {
        margin-left: auto;
        margin-right: auto;
    }
    .testimonials-proof {
        width: min(100%, 260px);
        min-height: 128px;
        margin: 0 auto;
    }
    .testimonials-proof strong {
        font-size: 40px;
    }
    .testimonial-card {
        flex-basis: 340px;
        min-height: 218px;
    }
}

@media (max-width: 600px) {
    .sijs-section { padding: 50px 0 50px; }
    .sijs-title { font-size: 28px; letter-spacing: -0.5px; }
    .sijs-badge span { font-size: 11.5px; }
    .sijs-desc {
        margin-bottom: 24px;
    }
    .sijs-mobile-cta-block {
        margin: -4px 0 28px;
        padding: 18px 14px 15px;
        border-radius: 16px;
    }
    .sijs-mobile-cta-title {
        font-size: 16px;
    }
    .sijs-mobile-cta-buttons {
        gap: 9px;
    }
    .sijs-mobile-cta-buttons .sijs-cta-btn {
        min-height: 50px;
        font-size: 15px;
    }
    .sijs-card { padding: 14px; border-radius: 20px; }
    .sijs-card-img-wrap { border-radius: 14px; }
    .sijs-card-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 0;
        border: 0;
        margin: 12px 0;
    }
    .sijs-card-metric {
        min-height: 76px;
        justify-content: center;
        padding-inline: 18px;
        border: 1px solid #E2E8F0;
        border-radius: 14px;
    }
    .sijs-card-metric svg {
        width: 30px;
    }
    .sijs-metric-text {
        align-items: center;
        text-align: center;
    }
    .sijs-card-metric + .sijs-card-metric {
        border-left: 1px solid #E2E8F0;
    }
    .sijs-card-cta-buttons { flex-wrap: wrap; }
    .sijs-cta-btn { flex: 0 0 calc(50% - 4px); }
    .sijs-btn-email { flex-basis: 100%; }
    .sijs-contact-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }
    .sijs-contact-section { padding: 40px 0 60px; }
    .sijs-contact-card { padding: 24px 18px; }
    .sijs-calendly-embed { height: 520px; }
    .sijs-lead-magnet-section {
        padding: 28px 0;
    }
    .sijs-lead-magnet-card {
        border-radius: 16px;
        padding: 22px 16px;
    }
    .sijs-lead-magnet-title {
        font-size: 16px;
    }
    .sijs-lead-magnet-subtitle {
        font-size: 15px;
    }
    .sijs-lead-magnet-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .sijs-lead-magnet-form input,
    .sijs-lead-magnet-btn {
        height: 48px;
    }
    .sijs-lead-magnet-btn {
        width: 100%;
        font-size: 16px;
    }
    .other-services-section {
        padding: 44px 0 58px;
    }
    .other-services-header h2 {
        font-size: 32px;
        letter-spacing: -0.6px;
    }
    .other-services-header p {
        font-size: 16px;
    }
    .other-services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .service-card {
        min-height: auto;
        padding: 14px 16px 18px;
    }
    .service-card p {
        text-align: left;
    }
    .service-modal {
        padding: 14px;
    }
    .service-modal__dialog {
        border-radius: 18px;
    }
    .service-modal__image {
        aspect-ratio: 1.55 / 1;
    }
    .service-modal__close {
        width: 40px;
        height: 40px;
    }
    .conversion-banner-section {
        padding: 20px 0 52px;
    }
    .conversion-banner {
        padding: 26px 18px;
        border-radius: 18px;
    }
    .conversion-banner h2 {
        font-size: 29px;
        line-height: 1.08;
        letter-spacing: -0.4px;
    }
    .conversion-banner__content > p:last-child {
        font-size: 15px;
    }
    .conversion-banner__actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .conversion-banner__btn {
        min-height: 50px;
        font-size: 16px;
    }
    .final-contact-section {
        padding: 46px 0 0;
    }
    .final-contact-shell {
        padding: 0 0 34px;
        border-radius: 0;
        gap: 24px;
    }
    .final-contact-kicker {
        font-size: 12px;
    }
    .final-contact-content h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    .final-contact-subtitle {
        font-size: 15px;
        margin-top: 14px;
    }
    .final-contact-actions {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }
    .final-contact-action {
        min-height: 86px;
        border-radius: 16px;
        padding: 16px 18px;
    }
    .final-contact-action span {
        font-size: 16px;
    }
    .final-contact-action strong {
        font-size: 15px;
    }
    .final-contact-form-card {
        padding: 22px 16px;
        border-radius: 18px;
    }
    .final-contact-form-label {
        font-size: 16px;
        margin-bottom: 18px;
    }
    .final-contact-form .form-control,
    .final-contact-form .custom-select-trigger,
    .final-contact-submit {
        min-height: 52px;
        font-size: 15px;
    }
    .final-calendly-full {
        margin-top: 0;
        border-radius: 0;
    }
    .final-calendly-header {
        display: block;
        padding: 22px 18px 16px;
    }
    .final-calendly-header h3 {
        font-size: 23px;
    }
    .final-calendly-frame {
        height: 620px;
    }
    .calendly-modal {
        padding: 10px;
    }
    .calendly-modal__dialog {
        border-radius: 18px;
    }
    .calendly-modal__header {
        padding: 22px 58px 16px 18px;
    }
    .calendly-modal__embed {
        height: 72vh;
        min-height: 520px;
    }
    .calendly-modal__close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }
    .site-footer {
        padding: 46px 0 22px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-logo {
        width: 220px;
        margin-bottom: 18px;
    }
    .footer-brand p,
    .footer-newsletter p,
    .footer-menu a,
    .footer-contact a {
        font-size: 15px;
    }
    .footer-social {
        margin-top: 22px;
    }
    .footer-newsletter p,
    .footer-guide-form,
    .footer-brand p {
        max-width: none;
    }
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 34px;
    }
    .footer-bottom p,
    .footer-bottom p:nth-child(2),
    .footer-bottom p:last-child {
        text-align: left;
    }
    .testimonials-section {
        padding: 46px 0 58px;
    }
    .testimonials-kicker {
        font-size: 12px;
        padding: 7px 12px;
    }
    .testimonials-header h2 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    .testimonials-copy > p:last-child {
        font-size: 15px;
    }
    .testimonials-marquee {
        mask-image: none;
    }
    .testimonials-track {
        gap: 14px;
        margin-left: 18px;
        animation-duration: 38s;
    }
    .testimonials-marquee--bottom {
        margin-top: 8px;
    }
    .testimonials-marquee--bottom .testimonials-track {
        animation-duration: 42s;
    }
    .testimonial-card {
        flex-basis: 292px;
        min-height: 206px;
        padding: 18px;
        border-radius: 16px;
    }
    .testimonial-quote-mark {
        right: 16px;
        top: 12px;
        font-size: 62px;
    }
    .testimonial-card__top img {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
    .testimonial-card__top h3 {
        font-size: 16px;
    }
    .testimonial-copy {
        font-size: 15px;
    }
    .testimonial-card--has-photo .testimonial-copy {
        padding-right: 66px;
    }
    .testimonial-photo-chip {
        right: 14px;
        top: 48px;
        width: 56px;
    }
    .testimonial-photo-chip img {
        width: 56px;
        height: 42px;
        border-radius: 13px;
    }
    .testimonial-photo-modal__panel {
        grid-template-columns: 1fr;
        max-height: 88vh;
        overflow-y: auto;
    }
    .testimonial-photo-modal__media {
        height: 260px;
    }
    .testimonial-photo-modal__content {
        padding: 24px;
    }
    .floating-wa-chat {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
    }
    .floating-wa-chat__bubble {
        max-width: min(218px, calc(100vw - 92px));
        padding: 9px 12px 9px 10px;
        font-size: 11.5px;
    }
    .floating-wa-chat__bubble strong {
        font-size: 11px;
    }
    .floating-wa-chat__button {
        width: 56px;
        height: 56px;
    }
    .floating-wa-chat__button svg {
        width: 28px;
        height: 28px;
    }
    .wa-qualifier {
        align-items: end;
        padding: 8px 8px 22px;
    }
    .wa-qualifier__panel {
        width: 100%;
        height: calc(100dvh - 38px);
        max-height: none;
        border-radius: 22px;
    }
    .wa-qualifier__header {
        grid-template-columns: 50px 1fr;
        padding: 18px 56px 15px 16px;
    }
    .wa-qualifier__header img {
        width: 50px;
        height: 50px;
    }
    .wa-qualifier__header h2 {
        font-size: 17px;
    }
    .wa-qualifier__intro {
        font-size: 11px;
    }
    .wa-qualifier__messages {
        min-height: 0;
        height: auto;
        flex: 1 1 auto;
        padding: 15px 14px 10px;
    }
    .wa-message {
        max-width: 92%;
        font-size: 14px;
    }
    .wa-qualifier__options {
        max-height: min(31dvh, 230px);
        padding: 0 14px 14px;
    }
    .wa-option,
    .wa-final-send {
        min-height: 46px;
        font-size: 13px;
    }
    .wa-qualifier__footer {
        padding: 10px 14px 14px;
        align-items: flex-start;
    }
    .wa-qualifier__footer p {
        max-width: 210px;
        font-size: 10px;
    }
    .lead-form-progress {
        margin-bottom: 14px;
    }
    .lead-question {
        padding: 12px;
    }
    .lead-question__option {
        flex-basis: 100%;
        min-height: 42px;
    }
    .lead-form-actions {
        grid-template-columns: 1fr;
    }
}
