/**
 * Home — limpieza visual / clean UX (post-banner).
 * Menos cajas, más whitespace, jerarquía clara. No toca .home-hero-zone.
 */

body.page-home {
    --hs-shell: var(--home-shell-max, var(--cw-shell-wide, 1540px));
    --hs-content: 1180px;
    --hs-pad: var(--home-shell-pad, var(--cw-shell-pad-x, 5%));
    --hs-gap: clamp(3rem, 6.5vw, 4.75rem);
    --hs-gap-tight: clamp(1.85rem, 3.5vw, 2.5rem);
    --hs-block-pad: clamp(0.35rem, 1.2vw, 0.85rem);
    --hs-title: clamp(1.9rem, 3.6vw, 2.8rem);
    --hs-lead: clamp(1rem, 1.25vw, 1.1rem);
    --hs-lead-color: rgba(255, 255, 255, 0.72);
    --hs-muted: rgba(255, 255, 255, 0.6);
    --hs-line: rgba(255, 255, 255, 0.08);
    --hs-accent: rgba(0, 243, 255, 0.9);
    --hs-title-gradient: linear-gradient(135deg, var(--neon-blue, #00f3ff), var(--neon-purple, #b967ff), var(--matrix-green, #00ff9d));
}

/* ——— Ritmo unificado de bloques del home ——— */
body.page-home .home-flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

body.page-home .home-flow__services,
body.page-home .home-flow__deliver,
body.page-home .home-flow__cases,
body.page-home .home-flow__why,
body.page-home .home-flow__benefits,
body.page-home .home-flow__trust,
body.page-home .home-flow > .personal-consult-module {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--hs-shell);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--hs-pad);
    padding-right: var(--hs-pad);
    box-sizing: border-box;
}

body.page-home .home-flow__services,
body.page-home .home-flow__deliver,
body.page-home .home-flow__cases,
body.page-home .home-flow__why,
body.page-home .home-flow__benefits,
body.page-home .home-flow__trust {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: var(--hs-block-pad) !important;
    padding-bottom: var(--hs-gap) !important;
}

body.page-home .home-flow__services {
    padding-top: var(--hs-gap-tight) !important;
}

/* Separador superior consistente (excepto primer bloque post-hero) */
body.page-home .home-flow__deliver::before,
body.page-home .home-flow__cases::before,
body.page-home .home-flow__why::before,
body.page-home .home-flow__benefits::before,
body.page-home .home-flow__trust::before {
    content: '';
    display: block;
    width: min(4.5rem, 18%);
    height: 1px;
    margin: 0 auto var(--hs-gap-tight);
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.45), transparent);
    opacity: 0.7;
}

/* Contenido interno centrado al mismo ancho de lectura */
body.page-home .home-flow__deliver .cw-home-deliver,
body.page-home .home-flow__benefits.home-benefits,
body.page-home .home-flow__why .hero-pillars-band,
body.page-home .home-flow__trust .reviews-section,
body.page-home .home-flow__trust .faq-section {
    width: 100%;
    max-width: var(--hs-content);
    margin-left: auto;
    margin-right: auto;
}

/* Casos: mismo ancho de bloque que el resto del home-flow (shell + pad) */

body.page-home .home-flow__trust {
    display: flex;
    flex-direction: column;
    gap: var(--hs-gap-tight);
}

/* Quitar ruido decorativo de módulos grandes */
body.page-home .home-flow__tech .ia-module::before,
body.page-home .home-flow__tech .integrations-section::before,
body.page-home .home-flow__trust .reviews-section::before {
    display: none !important;
    animation: none !important;
}

body.page-home .home-flow__tech .ia-module,
body.page-home .home-flow__tech .integrations-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* ——— Tipografía estándar del sitio (Poiret + gradiente neon) ——— */
body.page-home .home-flow .section-title,
body.page-home .home-flow .services-text h2,
body.page-home .home-flow .ia-title,
body.page-home .home-flow .integrations-title,
body.page-home .home-flow .faq-title,
body.page-home .home-flow .home-demos-section__title,
body.page-home .home-flow .cw-home-deliver__title,
body.page-home .home-flow .home-benefits__title,
body.page-home .home-flow .home-case-studies__title,
body.page-home .home-flow .home-why__title,
body.page-home .home-flow .personal-consult-module h3,
body.page-home .home-flow__trust .reviews-title {
    font-family: 'Poiret One', sans-serif !important;
    font-size: var(--hs-title) !important;
    font-weight: 400 !important;
    line-height: 1.28 !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    margin: 0 auto 0.85rem !important;
    padding-block: 0.05em 0.15em;
    overflow: visible;
    background: var(--hs-title-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: none !important;
}

body.page-home .home-flow .integrations-title .gradient-text {
    background: linear-gradient(135deg, var(--neon-blue, #00f3ff), var(--matrix-green, #00ff9d));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Sin rayas / ::after bajo títulos */
body.page-home .home-flow .section-title::after,
body.page-home .home-flow .services-text h2::after,
body.page-home .home-flow .faq-title::after,
body.page-home .home-flow .ia-title::after,
body.page-home .home-flow .home-demos-section__header::after,
body.page-home .home-flow .cards-section--solutions .section-title::after,
body.page-home .home-flow .cw-home-deliver__title::after {
    content: none !important;
    display: none !important;
}

body.page-home .home-flow .section-subtitle,
body.page-home .home-flow .services-text > p,
body.page-home .home-flow .ia-subtitle,
body.page-home .home-flow .ia-content,
body.page-home .home-flow .integrations-subtitle,
body.page-home .home-flow .home-demos-section__lead,
body.page-home .home-flow .cw-home-deliver__lead,
body.page-home .home-flow .home-benefits__lead,
body.page-home .home-flow .home-case-studies__lead,
body.page-home .home-flow .faq-section > .section-subtitle,
body.page-home .home-flow .personal-consult-module > p,
body.page-home .home-flow__trust .reviews-lead {
    font-size: var(--hs-lead) !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: var(--hs-lead-color) !important;
    max-width: 48rem;
    margin: 0 auto 1.75rem !important;
    text-align: center;
}

/* Eyebrow sutil (badge mínimo, no pastilla ruidosa) */
body.page-home .home-flow .cards-section__eyebrow,
body.page-home .home-flow .home-demos-section__badge,
body.page-home .home-flow .integrations-badge,
body.page-home .home-flow .cw-home-deliver__eyebrow,
body.page-home .home-flow .home-benefits__eyebrow,
body.page-home .home-flow .home-case-studies__eyebrow,
body.page-home .home-flow .reviews-eyebrow {
    display: block !important;
    width: fit-content;
    margin: 0 auto 0.65rem !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
    color: var(--hs-accent) !important;
}

body.page-home .home-flow .integrations-badge {
    color: var(--matrix-green, #00ff9d) !important;
}

body.page-home .home-flow .integrations-badge i,
body.page-home .home-flow .home-demos-section__badge i {
    margin-right: 0.35rem;
    opacity: 0.9;
}

body.page-home .home-flow__why .hero-pillars-band {
    width: 100%;
    margin: 0 !important;
}

body.page-home .home-flow__why .hero-pillars-band__inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-home .hero-pillars-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 1.35rem;
}

body.page-home .hero-pillars-lead {
    margin: 0.55rem auto 0;
    max-width: 36rem;
    font-size: clamp(0.9375rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

body.page-home .hero-pillars-band .hero-pillars-label {
    font-family: 'Poiret One', sans-serif !important;
    font-size: clamp(1.9rem, 3.6vw, 2.5rem) !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    line-height: 1.28 !important;
    text-transform: none !important;
    color: transparent !important;
    background: var(--hs-title-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    display: block !important;
    justify-content: unset !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

body.page-home .hero-pillars-label::before,
body.page-home .hero-pillars-label::after {
    display: none !important;
}

@media (prefers-contrast: more) {
    body.page-home .hero-pillars-band .hero-pillars-label,
    body.page-home .cw-home-deliver__title {
        color: #fff !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    body.page-home .hero-pillars-band .hero-pillars-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.85rem !important;
    }
}

body.page-home .home-flow__services {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.page-home .home-flow__services.cards-section--bridge {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

/* ——— Servicios: sí usan cards (único bloque “card-forward”) ——— */
body.page-home .home-flow__services.cards-section--solutions {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    /* Margen lateral moderado */
    padding-left: clamp(1.15rem, 4.5vw, 3rem) !important;
    padding-right: clamp(1.15rem, 4.5vw, 3rem) !important;
    box-sizing: border-box !important;
}

body.page-home .home-flow__services .cards-container--rail {
    gap: clamp(1rem, 1.5vw, 1.35rem) !important;
}

@media (min-width: 969px) {
    body.page-home .home-flow__services .cards-container.cards-container--rail.cards-container--quad {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-auto-flow: row !important;
        gap: clamp(0.75rem, 1.1vw, 1.1rem) !important;
        width: 86% !important;
        max-width: min(1318px, 86%) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.page-home .home-flow__services .cards-container--rail.cards-container--quad > .card-svc {
        min-width: 0 !important;
        width: auto !important;
        grid-column: auto !important;
    }
}

body.page-home .home-flow__services .cards-container--rail > .card-svc {
    border-radius: 16px !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

body.page-home .home-flow__services .cards-container--rail > .card-svc:hover {
    border-color: color-mix(in srgb, var(--card-svc-accent, #00f3ff) 32%, rgba(255, 255, 255, 0.12)) !important;
    box-shadow: none !important;
}

body.page-home .home-flow__services .card-svc__glow {
    display: none !important;
}

/* ——— Pilares: icono al lado del título ——— */
body.page-home .hero-pillars-band {
    margin-bottom: var(--hs-gap-tight) !important;
}

body.page-home .hero-pillars-band__inner {
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 0.35rem !important;
}

body.page-home .hero-pillars-band .hero-pillars-row {
    gap: clamp(1rem, 2vw, 1.5rem) !important;
}

body.page-home .hero-pillars-band .feature {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.55rem !important;
    height: 100%;
    padding: 1rem 0.95rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
    box-shadow: none !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    text-align: left !important;
    transform: none !important;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease !important;
}

body.page-home .hero-pillars-band .feature:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.page-home .hero-pillars-band .feature:hover {
    background: linear-gradient(160deg, rgba(0, 243, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border-color: rgba(0, 243, 255, 0.28) !important;
    transform: translateY(-3px) !important;
    box-shadow: none !important;
}

body.page-home .hero-pillars-band .feature-title-row {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    width: 100%;
    min-width: 0;
}

body.page-home .hero-pillars-band .feature-icon {
    grid-area: unset !important;
    align-self: center !important;
    margin: 0 !important;
    width: 2.25rem !important;
    height: 2.25rem !important;
    flex-shrink: 0;
}

body.page-home .hero-pillars-band .feature-title-row h3 {
    margin: 0 !important;
    font-size: 1.06rem !important;
    line-height: 1.3 !important;
    text-align: left !important;
    color: rgba(255, 255, 255, 0.96) !important;
    min-width: 0;
}

body.page-home .hero-pillars-band .feature-desc,
body.page-home .hero-pillars-band .feature-text p {
    width: 100%;
    margin: 0 !important;
    text-align: left !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.9375rem !important;
    line-height: 1.55 !important;
}

body.page-home .hero-pillars-band .hero-pillar-btn {
    grid-area: unset !important;
    align-self: stretch !important;
    margin-top: auto !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.78rem !important;
}

body.page-home .hero-pillars-band .hero-pillar-btn:focus-visible {
    outline: 2px solid var(--neon-blue, #00f3ff);
    outline-offset: 3px;
}

/* ——— Casos / beneficios: tipografía y layout en sus CSS; ritmo en --hs-* ——— */
body.page-home .home-flow__cases.home-case-studies,
body.page-home .home-flow__benefits.home-benefits {
    padding-left: var(--hs-pad) !important;
    padding-right: var(--hs-pad) !important;
}

/* ——— IA: highlights abiertos en fila ——— */
body.page-home .home-flow .ia-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem !important;
}

body.page-home .home-flow .ia-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.35rem !important;
    border-radius: 14px !important;
    margin-bottom: 0.35rem;
    box-shadow: none !important;
    animation: none !important;
}

body.page-home .home-flow .ia-highlights {
    gap: 0 !important;
    border-top: 1px solid var(--hs-line);
}

body.page-home .home-flow .ia-highlight {
    padding: 1.15rem 0.85rem !important;
    border: none !important;
    border-right: 1px solid var(--hs-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center;
}

body.page-home .home-flow .ia-highlight:last-child {
    border-right: none !important;
}

body.page-home .home-flow .ia-highlight:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--hs-line) !important;
}

body.page-home .home-flow .ia-highlight-icon {
    margin: 0 auto 0.65rem;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--hs-accent);
}

/* ——— Integraciones: grid plano, sin “tarjetas pesadas” ——— */
body.page-home .home-flow .integrations-header {
    margin-bottom: 1.5rem !important;
}

body.page-home .home-flow .integrations-showcase {
    border-top: 1px solid var(--hs-line);
    padding-top: 0.5rem;
}

body.page-home .home-flow .integrations-row {
    gap: 0 !important;
    margin-bottom: 0 !important;
}

body.page-home .home-flow .integration-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.page-home .home-flow .integration-card .card-inner {
    padding: 1.25rem 1rem !important;
    border: none !important;
    border-right: 1px solid var(--hs-line) !important;
    border-bottom: 1px solid var(--hs-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-height: 100%;
}

body.page-home .home-flow .integration-card:nth-child(4n) .card-inner {
    border-right: none !important;
}

body.page-home .home-flow .integration-card:hover .card-inner {
    transform: none !important;
    background: rgba(255, 255, 255, 0.02) !important;
    box-shadow: none !important;
}

body.page-home .home-flow .card-icon-glow {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    color: var(--hs-accent);
}

body.page-home .home-flow .integration-card h3 {
    font-size: 0.98rem !important;
    margin-bottom: 0.4rem !important;
}

body.page-home .home-flow .integration-card p {
    font-size: 0.86rem !important;
    color: var(--hs-muted) !important;
    line-height: 1.55 !important;
}

body.page-home .home-flow .card-stats {
    margin-top: 0.75rem;
    opacity: 0.85;
}

body.page-home .home-flow .card-stats span {
    font-size: 0.72rem !important;
    letter-spacing: 0.04em;
    border: none !important;
    background: transparent !important;
    color: var(--matrix-green, #00ff9d) !important;
    padding: 0 !important;
}

/* ——— Entregables: tipografía alineada al sistema ——— */
body.page-home .home-flow .cw-home-deliver__title {
    margin-bottom: 0.75rem !important;
}

@media (min-width: 900px) {
    body.page-home .home-flow .cw-home-deliver__title {
        white-space: normal !important;
        text-wrap: balance !important;
        letter-spacing: 1.25px !important;
        font-size: clamp(1.75rem, 2.35vw, 2.45rem) !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
        overflow: visible !important;
        overflow-wrap: anywhere !important;
    }

    body.page-home .home-flow__deliver .cw-home-deliver__head {
        max-width: min(100%, 64rem);
    }
}

body.page-home .home-flow .cw-home-deliver__lead {
    margin-bottom: 1.25rem !important;
}

/* ——— Demos: showcase limpio ——— */
body.page-home .home-flow__proof .home-demos-section {
    padding-left: var(--hs-pad);
    padding-right: var(--hs-pad);
}

body.page-home .home-flow__proof .home-demos-section__showcase {
    border: 1px solid var(--hs-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
}

/* Reviews: panel limpio + encabezado siempre centrado */
body.page-home .home-flow__trust .reviews-section {
    width: 100%;
    max-width: var(--hs-content) !important;
    margin: 0 auto !important;
    padding: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    box-shadow: none !important;
}

body.page-home .home-flow__trust .reviews-hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.55rem !important;
    margin-bottom: 1.5rem !important;
}

body.page-home .home-flow__trust .reviews-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-align: center !important;
}

body.page-home .home-flow__trust .reviews-title {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100%;
}

body.page-home .home-flow__trust .reviews-lead {
    color: var(--hs-lead-color) !important;
    margin: 0.15rem auto 0 !important;
    text-align: center !important;
    max-width: 40rem !important;
}

body.page-home .home-flow__trust .reviews-score {
    display: inline-flex !important;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    margin: 0.15rem auto !important;
    align-self: center !important;
}

/* ——— FAQ: diseño estandarizado (acordeón con vidrio del sistema) ——— */
body.page-home .home-flow__trust .faq-section {
    width: 100%;
    max-width: min(820px, var(--hs-content)) !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

body.page-home .home-flow__trust .faq-title {
    margin-bottom: 0.65rem !important;
}

body.page-home .home-flow__trust .faq-section > .section-subtitle {
    margin-bottom: 1.75rem !important;
    color: var(--hs-lead-color) !important;
    max-width: 48rem;
}

body.page-home .home-flow__trust .accordion-container {
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

body.page-home .home-flow__trust .accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

body.page-home .home-flow__trust .accordion-item:hover {
    border-color: rgba(0, 243, 255, 0.28) !important;
    background: rgba(255, 255, 255, 0.045) !important;
}

body.page-home .home-flow__trust .accordion-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.05rem 1.2rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-family: inherit;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-align: left;
    color: inherit;
    background: transparent !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

body.page-home .home-flow__trust .accordion-header::before {
    display: none !important;
    content: none !important;
}

body.page-home .home-flow__trust .accordion-header__label {
    flex: 1;
    min-width: 0;
}

body.page-home .home-flow__trust .accordion-header i {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

body.page-home .home-flow__trust .accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

body.page-home .home-flow__trust .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    background: transparent !important;
    padding: 0 1.2rem !important;
    max-height: none !important;
    overflow: hidden;
    transition: grid-template-rows 0.32s ease, padding 0.32s ease;
}

body.page-home .home-flow__trust .accordion-content.active {
    grid-template-rows: 1fr;
    padding: 0 1.2rem 1.15rem !important;
}

body.page-home .home-flow__trust .accordion-content__inner {
    overflow: hidden;
    min-height: 0;
}

body.page-home .home-flow__trust .accordion-content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ——— CTA final: una sola superficie limpia ——— */
body.page-home .home-flow > .personal-consult-module {
    margin-top: 0 !important;
    margin-bottom: var(--hs-gap) !important;
    padding: clamp(2rem, 4vw, 2.75rem) var(--hs-pad) !important;
    border: none !important;
    border-top: 1px solid var(--hs-line) !important;
    border-bottom: 1px solid var(--hs-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    max-width: var(--hs-shell) !important;
}

body.page-home .home-flow .personal-consult-module .cta-button {
    border-radius: 999px !important;
    min-height: 48px !important;
    padding: 0.85rem 1.6rem !important;
    font-size: 0.88rem !important;
}

body.page-home .home-flow .home-consult-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    align-items: center;
}

body.page-home .home-flow .integrations-cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--hs-line);
}

body.page-home .home-flow .integrations-button {
    border-radius: 999px !important;
    box-shadow: none !important;
}

/* ——— Responsive ——— */
@media (max-width: 968px) {
    body.page-home .hero-pillars-band .hero-pillars-row {
        gap: 0.75rem !important;
    }

    body.page-home .hero-pillars-band .feature {
        padding: 0.95rem 0.85rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        gap: 0.5rem !important;
    }

    body.page-home .hero-pillars-band .feature-title-row {
        gap: 0.55rem !important;
    }

    body.page-home .hero-pillars-band .feature-icon {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.82rem !important;
        border-radius: 9px !important;
        margin: 0 !important;
    }

    body.page-home .hero-pillars-band .feature-title-row h3 {
        font-size: 1rem !important;
    }

    body.page-home .hero-pillars-band .feature-desc {
        font-size: 0.875rem !important;
        line-height: 1.52 !important;
    }

    body.page-home .hero-pillars-band .hero-pillar-btn {
        align-self: stretch;
        justify-content: center;
        min-height: 44px;
        font-size: 0.78rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    body.page-home .home-flow .ia-highlights {
        grid-template-columns: 1fr !important;
    }

    body.page-home .home-flow .ia-highlight {
        border-right: none !important;
        border-bottom: 1px solid var(--hs-line) !important;
    }

    body.page-home .home-flow .ia-highlight:last-child {
        border-bottom: none !important;
    }

    body.page-home .home-flow .integration-card .card-inner {
        border-right: none !important;
    }
}

@media (max-width: 968px) {
    body.page-home {
        --hs-title: var(--cw-title-section);
        --hs-gap: 2.25rem;
        --hs-gap-tight: 1.5rem;
    }

    body.page-home .home-flow .section-title,
    body.page-home .home-flow .services-text h2,
    body.page-home .home-flow .ia-title,
    body.page-home .home-flow .integrations-title,
    body.page-home .home-flow .faq-title,
    body.page-home .home-flow .home-demos-section__title,
    body.page-home .home-flow .cw-home-deliver__title,
    body.page-home .home-flow .home-benefits__title,
    body.page-home .home-flow .home-case-studies__title,
    body.page-home .home-flow .home-why__title,
    body.page-home .home-flow__trust .reviews-title {
        font-size: var(--cw-title-section) !important;
        line-height: 1.22 !important;
        letter-spacing: 1px !important;
    }
}

@media (max-width: 768px) {
    body.page-home {
        --hs-title: var(--cw-title-section);
        --hs-gap: 2.25rem;
        --hs-gap-tight: 1.5rem;
    }

    body.page-home .home-flow__deliver::before,
    body.page-home .home-flow__cases::before,
    body.page-home .home-flow__why::before,
    body.page-home .home-flow__benefits::before,
    body.page-home .home-flow__trust::before {
        margin-bottom: 1.5rem;
    }

    /* Por qué ConlineWeb: legible en móvil */
    body.page-home .hero-pillars-head {
        text-align: left;
        max-width: none;
        margin: 0 0 1rem;
    }

    body.page-home .hero-pillars-lead {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.76);
        margin-top: 0.45rem;
    }

    body.page-home .home-flow__why .hero-pillars-label,
    body.page-home .hero-pillars-band .hero-pillars-label {
        text-align: left !important;
        font-size: var(--cw-title-section) !important;
        font-family: 'Poiret One', sans-serif !important;
        font-weight: 400 !important;
        letter-spacing: 1px !important;
        line-height: 1.24 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        justify-content: flex-start !important;
        text-transform: none !important;
        color: transparent !important;
        background: var(--hs-title-gradient) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
    }

    body.page-home .hero-pillars-label::before,
    body.page-home .hero-pillars-label::after {
        display: none !important;
    }

    body.page-home .hero-pillars-band .hero-pillars-row {
        grid-template-columns: 1fr !important;
        gap: 0.65rem !important;
    }

    body.page-home .hero-pillars-band .feature {
        min-height: 0;
        padding: 1rem 0.9rem !important;
        border-radius: 14px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        gap: 0.5rem !important;
    }

    body.page-home .hero-pillars-band .feature-title-row {
        gap: 0.55rem !important;
    }

    body.page-home .hero-pillars-band .feature-icon {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.82rem !important;
        border-radius: 9px !important;
        margin: 0 !important;
    }

    body.page-home .hero-pillars-band .feature-title-row h3 {
        font-size: 1rem !important;
        line-height: 1.28 !important;
    }

    body.page-home .hero-pillars-band .feature-desc {
        font-size: 0.875rem !important;
        line-height: 1.52 !important;
        display: block !important;
        overflow: visible !important;
        -webkit-line-clamp: unset !important;
        color: rgba(255, 255, 255, 0.72) !important;
    }

    body.page-home .hero-pillars-band .hero-pillar-btn {
        margin-top: 0.35rem !important;
        min-height: 44px !important;
        font-size: 0.78rem !important;
        padding: 0.5rem 0.75rem !important;
        width: 100%;
    }
}
