/* Solutions banner */
.solutions-banner {
    --solutions-banner-primary: rgba(59, 130, 246, 0.2);
    --solutions-banner-secondary: rgba(37, 99, 235, 0.3);
    --solutions-banner-border-light: rgba(59, 130, 246, 0.25);
    --solutions-banner-border-dark: rgba(96, 165, 250, 0.45);
    --solutions-banner-glow: rgba(96, 165, 250, 0.32);
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid transparent;
    padding: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: clamp(1.2rem, 3vw, 2.1rem) auto clamp(1.6rem, 3.4vw, 2.6rem);
    max-width: min(1180px, 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1.1rem, 2.8vw, 2.2rem);
}

:is(html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-banner {
    background: linear-gradient(135deg, var(--solutions-banner-primary), rgba(255, 255, 255, 0.96));
    border-color: var(--solutions-banner-border-light);
    box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.08);
}

:is(html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-banner {
    background: linear-gradient(135deg, var(--solutions-banner-secondary), rgba(15, 23, 42, 0.92));
    border-color: var(--solutions-banner-border-dark);
    box-shadow: 0 1.35rem 3.1rem rgba(2, 6, 23, 0.68);
}

.solutions-banner::after {
    content: '';
    position: absolute;
    inset: -55% 55% auto -35%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, var(--solutions-banner-glow), transparent 70%);
    pointer-events: none;
}

.solutions-banner > * {
    position: relative;
    z-index: 1;
}

.solutions-banner h1 {
    font-size: clamp(1.85rem, 4.2vw, 2.45rem);
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.solutions-banner p {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: rgba(15, 23, 42, 0.7);
}

:is(html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-banner p {
    color: rgba(226, 232, 240, 0.85);
}

.solutions-banner .btn {
    border-radius: 999px;
    padding-inline: 1.65rem;
    padding-block: 0.7rem;
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.1);
}

:is(html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-banner .btn {
    box-shadow: 0 1.1rem 2.3rem rgba(2, 6, 23, 0.58);
}

.solutions-banner__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-left: auto;
}

.solutions-banner--agro {
    --solutions-banner-primary: rgba(22, 163, 74, 0.22);
    --solutions-banner-secondary: rgba(34, 197, 94, 0.36);
    --solutions-banner-border-light: rgba(22, 163, 74, 0.3);
    --solutions-banner-border-dark: rgba(34, 197, 94, 0.5);
    --solutions-banner-glow: rgba(34, 197, 94, 0.4);
}

.solutions-banner--repair {
    --solutions-banner-primary: rgba(37, 99, 235, 0.24);
    --solutions-banner-secondary: rgba(59, 130, 246, 0.4);
    --solutions-banner-border-light: rgba(37, 99, 235, 0.3);
    --solutions-banner-border-dark: rgba(59, 130, 246, 0.5);
    --solutions-banner-glow: rgba(59, 130, 246, 0.48);
}

.solutions-banner--bar {
    --solutions-banner-primary: rgba(249, 115, 22, 0.22);
    --solutions-banner-secondary: rgba(234, 88, 12, 0.36);
    --solutions-banner-border-light: rgba(249, 115, 22, 0.32);
    --solutions-banner-border-dark: rgba(251, 146, 60, 0.5);
    --solutions-banner-glow: rgba(249, 115, 22, 0.46);
}

.solutions-banner--gestor {
    --solutions-banner-primary: rgba(139, 92, 246, 0.22);
    --solutions-banner-secondary: rgba(124, 58, 237, 0.38);
    --solutions-banner-border-light: rgba(139, 92, 246, 0.32);
    --solutions-banner-border-dark: rgba(167, 139, 250, 0.52);
    --solutions-banner-glow: rgba(167, 139, 250, 0.48);
}

.solutions-banner__content {
    max-width: min(600px, 100%);
}

@media (max-width: 767.98px) {
    .solutions-banner {
        padding: 1.75rem;
    }

    .solutions-banner__cta {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Hero principal de soluciones */

.solutions-hero-grid {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    padding: clamp(2.25rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.12);
    margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
    max-width: min(1180px, 100%);
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-hero-grid {
    background: linear-gradient(140deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.04) 45%, #ffffff 100%);
    color: #0f172a;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-hero-grid {
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.28), rgba(15, 23, 42, 0.94));
    border: 1px solid rgba(96, 165, 250, 0.32);
    box-shadow: 0 1.35rem 3rem rgba(2, 6, 23, 0.65);
}

.solutions-hero-grid::before {
    content: '';
    position: absolute;
    inset: -40% 55% auto -15%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.45), transparent 65%);
    pointer-events: none;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-hero-grid::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.35), transparent 70%);
}

.solutions-hero-grid__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    max-width: 560px;
}

.solutions-hero-grid__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    width: fit-content;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-hero-grid__eyebrow {
    background: rgba(96, 165, 250, 0.2);
    color: #bfdbfe;
}

.solutions-hero-grid__title {
    font-size: clamp(2.35rem, 5vw, 3.25rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.solutions-hero-grid__lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(15, 23, 42, 0.78);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-hero-grid__lead {
    color: rgba(226, 232, 240, 0.9);
}

.solutions-hero-grid__body {
    color: rgba(15, 23, 42, 0.72);
    line-height: 1.5;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-hero-grid__body {
    color: rgba(226, 232, 240, 0.8);
}

.solutions-hero-grid__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.solutions-hero-grid__highlights li {
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(255, 255, 255, 0.6);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-hero-grid__highlights li {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(96, 165, 250, 0.3);
    color: rgba(226, 232, 240, 0.9);
}

.solutions-hero-grid__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.solutions-hero-grid__media {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-lightbox-link {
    display: inline-flex;
    width: 100%;
    text-decoration: none;
}

.solutions-lightbox-link img {
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.solutions-hero-grid__media img {
    width: 100%;
    max-width: 520px;
    border-radius: 1.25rem;
    box-shadow: 0 1.75rem 3rem rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

@media (max-width: 576px) {
    .solutions-hero-grid {
        border-radius: 0;
    }

    .solutions-hero-grid__highlights {
        grid-template-columns: 1fr;
    }
}

.solutions-section-header {
    text-align: left;
    max-width: 860px;
    margin: 0 auto 2.5rem;
}

.solutions-section-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    margin-bottom: 0.85rem;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-section-header__eyebrow {
    background: rgba(96, 165, 250, 0.2);
    color: #bfdbfe;
}

.solutions-section-header p {
    margin: 0;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.55;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-section-header p {
    color: rgba(226, 232, 240, 0.8);
}

.solutions-city,
.solutions-core,
.solutions-workorders {
    margin-bottom: clamp(2.75rem, 4vw, 4rem);
}

.solutions-city {
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: clamp(1.75rem, 3vw, 2.75rem);
    background: rgba(248, 250, 252, 0.7);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-city {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(96, 165, 250, 0.25);
}

.solutions-city__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.solutions-value-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 100%;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-value-card {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(96, 165, 250, 0.25);
    color: rgba(226, 232, 240, 0.9);
}

.solutions-value-card header p {
    margin: 0.35rem 0 0;
    color: rgba(15, 23, 42, 0.75);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-value-card header p {
    color: rgba(226, 232, 240, 0.8);
}

.solutions-value-card__label {
    display: inline-flex;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-value-card__label {
    color: #e2e8f0;
}

.solutions-value-card__media {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 0.5rem;
}

.solutions-value-card__media img {
    width: min(260px, 100%);
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.15);
}

.solutions-core__media {
    border-radius: 1.25rem;
    padding: 0.75rem;
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    justify-content: center;
    margin: 0;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-core__media {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(96, 165, 250, 0.25);
}

.solutions-core__media img {
    width: 100%;
    max-width: 260px;
    border-radius: 0.9rem;
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.15);
}

.solutions-workorders {
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: clamp(1.75rem, 3vw, 2.75rem);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-workorders {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(15, 23, 42, 0.85);
}

.solutions-workorders__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.solutions-workorders__card {
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-workorders__card {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(96, 165, 250, 0.3);
    color: rgba(226, 232, 240, 0.9);
}

.solutions-workorders__card h3 {
    font-size: 1.15rem;
    margin: 0;
}

.solutions-workorders__card p {
    margin: 0;
    color: rgba(15, 23, 42, 0.75);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-workorders__card p {
    color: rgba(226, 232, 240, 0.85);
}

.solutions-workorders__media {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.solutions-workorders__media img {
    width: min(280px, 100%);
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 1.1rem 2.2rem rgba(15, 23, 42, 0.15);
}

/* Navegación entre soluciones */
.solutions-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.solutions-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    padding: 0.55rem 1.15rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: none;
    font-size: 0.9rem;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-nav .nav-link {
    background: rgba(148, 163, 184, 0.12);
    color: #1f2937;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-nav .nav-link:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.18);
    color: #1d4ed8;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-nav .nav-link {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(99, 102, 241, 0.24);
    color: rgba(226, 232, 240, 0.92);
    box-shadow: 0 0.65rem 1.4rem rgba(12, 74, 110, 0.32);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-nav .nav-link:hover {
    background: rgba(59, 130, 246, 0.28);
    border-color: rgba(147, 197, 253, 0.4);
    color: #e0f2fe;
}

.solutions-nav .nav-link.active {
    box-shadow: 0 0.75rem 1.5rem rgba(59, 130, 246, 0.2);
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.85));
    color: #ffffff;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.68), rgba(30, 64, 175, 0.78));
    border-color: rgba(147, 197, 253, 0.65);
    color: #f8fafc;
    box-shadow: 0 0.85rem 1.65rem rgba(37, 99, 235, 0.38);
}

.solutions-nav__icon {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-nav__icon--agro {
    background: rgba(34, 197, 94, 0.18);
    color: #15803d;
}


:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-nav__icon--agro {
    background: rgba(34, 197, 94, 0.32);
    color: #bbf7d0;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-nav__icon--repair {
    background: rgba(59, 130, 246, 0.18);
    color: #1d4ed8;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-nav__icon--repair {
    background: rgba(59, 130, 246, 0.32);
    color: #bfdbfe;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-nav__icon--bar {
    background: rgba(249, 115, 22, 0.18);
    color: #c2410c;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-nav__icon--bar {
    background: rgba(249, 115, 22, 0.32);
    color: #fed7aa;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solutions-nav__icon--gestor {
    background: rgba(139, 92, 246, 0.18);
    color: #6d28d9;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-nav__icon--gestor {
    background: rgba(139, 92, 246, 0.34);
    color: #ddd6fe;
}

/* Tarjeta de módulos comunes */
.solution-common-card {
    border-radius: 1.75rem;
    padding: clamp(2.25rem, 3vw, 3rem);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-common-card {
    background: linear-gradient(140deg, rgba(226, 232, 240, 0.25), rgba(255, 255, 255, 0.95));
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-common-card {
    background: linear-gradient(140deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.88));
    border-color: rgba(148, 163, 184, 0.42);
    color: rgba(226, 232, 240, 0.92);
    box-shadow: 0 1.2rem 2.4rem rgba(2, 6, 23, 0.6);
}

.solution-common-card::after {
    content: '';
    position: absolute;
    inset: auto -25% -60% 55%;
    height: 240px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 65%);
    pointer-events: none;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-common-card::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.26), transparent 72%);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-common-card h3,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-common-card p,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-common-card span {
    color: rgba(226, 232, 240, 0.94);
}

.solutions-core__grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .solutions-core__grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.solutions-chip {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1.25rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-chip {
    background: rgba(30, 41, 59, 0.78);
    border-color: rgba(100, 116, 139, 0.42);
    color: rgba(226, 232, 240, 0.9);
    box-shadow: 0 0.8rem 1.6rem rgba(2, 6, 23, 0.55);
}

.solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-icon--people {
    background-color: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-icon--locations {
    background-color: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-icon--warehouse {
    background-color: rgba(245, 158, 11, 0.15);
    color: #c2410c;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-icon--reports {
    background-color: rgba(79, 70, 229, 0.12);
    color: #4f46e5;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-icon--people {
    background-color: rgba(59, 130, 246, 0.26);
    color: #bfdbfe;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-icon--locations {
    background-color: rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-icon--warehouse {
    background-color: rgba(245, 158, 11, 0.28);
    color: #fed7aa;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-icon--reports {
    background-color: rgba(124, 58, 237, 0.3);
    color: #ddd6fe;
}

/* Tarjetas por solución */
.solution-card {
    transition: transform 0.18s ease;
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.92);
    position: relative;
    min-height: 100%;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card {
    background: rgba(16, 24, 40, 0.88);
    border-color: rgba(100, 116, 139, 0.45);
    color: rgba(226, 232, 240, 0.94);
    box-shadow: 0 1.25rem 2.6rem rgba(2, 6, 23, 0.6);
}

.solution-card:hover,
.solution-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 1.1rem 2.4rem rgba(15, 23, 42, 0.18);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card:hover,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card:focus-within {
    box-shadow: 0 1.2rem 2.7rem rgba(15, 118, 110, 0.36);
}

.solution-card__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.6rem, 1.8vw, 1rem);
    text-align: center;
    padding: clamp(1.35rem, 4vw, 1.9rem) clamp(1rem, 3vw, 1.6rem);
    background: linear-gradient(140deg, rgba(148, 163, 184, 0.15), rgba(226, 232, 240, 0.35));
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media {
    border-bottom-color: rgba(100, 116, 139, 0.5);
    background: linear-gradient(140deg, rgba(29, 78, 212, 0.32), rgba(15, 23, 42, 0.85));
}

.solution-card__media::before {
    content: '';
    position: absolute;
    inset: -30% -20% auto 40%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
    pointer-events: none;
}

.solution-card__media-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 2.1vw, 1.05rem);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #0f172a;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
    text-decoration: none;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-label {
    background: rgba(15, 23, 42, 0.78);
    border-color: rgba(148, 163, 184, 0.42);
    color: rgba(226, 232, 240, 0.95);
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.62);
}

.solution-card__media-label--agro {
    border-color: rgba(34, 197, 94, 0.32);
    color: #166534;
}

.solution-card__media-label--repair {
    border-color: rgba(59, 130, 246, 0.32);
    color: #1d4ed8;
}

.solution-card__media-label--bar {
    border-color: rgba(249, 115, 22, 0.32);
    color: #b45309;
}

.solution-card__media-label--gestor {
    border-color: rgba(139, 92, 246, 0.34);
    color: #6d28d9;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-label--agro {
    border-color: rgba(34, 197, 94, 0.45);
    background: rgba(34, 197, 94, 0.22);
    color: #bbf7d0;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-label--repair {
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(59, 130, 246, 0.24);
    color: #cbd5f5;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-label--bar {
    border-color: rgba(249, 115, 22, 0.46);
    background: rgba(249, 115, 22, 0.24);
    color: #ffe7c7;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-label--gestor {
    border-color: rgba(139, 92, 246, 0.48);
    background: rgba(139, 92, 246, 0.26);
    color: #e9d5ff;
}

.solution-card__media-sigil {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(68px, 13vw, 96px);
    height: clamp(68px, 13vw, 96px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    color: #0f172a;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
    transition: transform 0.18s ease;
}

.solution-card__media-sigil i {
    font-size: clamp(1.9rem, 3.8vw, 2.4rem);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-sigil {
    background: rgba(15, 23, 42, 0.8);
    color: rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.64);
}

.solution-card__media-sigil--agro {
    background: rgba(236, 253, 245, 0.9);
    color: #15803d;
}

.solution-card__media-sigil--repair {
    background: rgba(219, 234, 254, 0.9);
    color: #1d4ed8;
}

.solution-card__media-sigil--bar {
    background: rgba(254, 236, 200, 0.9);
    color: #b45309;
}

.solution-card__media-sigil--gestor {
    background: rgba(237, 233, 254, 0.9);
    color: #6d28d9;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-sigil--agro {
    background: rgba(34, 197, 94, 0.26);
    color: #bbf7d0;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-sigil--repair {
    background: rgba(59, 130, 246, 0.28);
    color: #cbd5f5;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-sigil--bar {
    background: rgba(249, 115, 22, 0.28);
    color: #ffe6c1;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media-sigil--gestor {
    background: rgba(139, 92, 246, 0.3);
    color: #e9d5ff;
}

.solution-card__media--agro {
    background: linear-gradient(145deg, rgba(22, 163, 74, 0.2), rgba(74, 222, 128, 0.3));
}

.solution-card__media--repair {
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.32));
}

.solution-card__media--bar {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.3));
}

.solution-card__media--gestor {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.32));
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media--agro {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.32), rgba(15, 118, 64, 0.45));
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media--repair {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.34), rgba(17, 94, 197, 0.48));
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media--bar {
    background: linear-gradient(145deg, rgba(251, 146, 60, 0.35), rgba(190, 80, 12, 0.48));
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__media--gestor {
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.35), rgba(109, 61, 192, 0.48));
}


.solution-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 0.75rem;
}

.solution-card__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.6);
}

:root[data-bs-theme='dark'] .solution-card__eyebrow {
    color: rgba(226, 232, 240, 0.7);
}

.solution-card__link {
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: inherit;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__eyebrow {
    color: rgba(226, 232, 240, 0.75);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__body p,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card__body span {
    color: rgba(226, 232, 240, 0.9);
}

.solution-card__arrow {
    display: inline-flex;
    transition: transform 0.18s ease;
}

.solution-card:hover .solution-card__arrow,
.solution-card:focus-within .solution-card__arrow {
    transform: translateX(4px);
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-card--agro {
    background: linear-gradient(150deg, rgba(22, 163, 74, 0.07), #ffffff);
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-card--repair {
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.07), #ffffff);
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-card--bar {
    background: linear-gradient(150deg, rgba(234, 88, 12, 0.07), #ffffff);
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-card--gestor {
    background: linear-gradient(150deg, rgba(124, 58, 237, 0.07), #ffffff);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card--agro {
    background: linear-gradient(150deg, rgba(34, 197, 94, 0.28), rgba(15, 23, 42, 0.9));
    border-color: rgba(34, 197, 94, 0.38);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card--repair {
    background: linear-gradient(150deg, rgba(59, 130, 246, 0.32), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.38);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card--bar {
    background: linear-gradient(150deg, rgba(249, 115, 22, 0.34), rgba(15, 23, 42, 0.9));
    border-color: rgba(249, 115, 22, 0.4);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-card--gestor {
    background: linear-gradient(150deg, rgba(139, 92, 246, 0.34), rgba(15, 23, 42, 0.9));
    border-color: rgba(139, 92, 246, 0.42);
}

/* Tarjetas de características en vistas detalle */
.solutions-feature-grid {
    display: grid;
    gap: 1.5rem;
}

.solutions-feature-card {
    border-radius: 1.35rem;
    padding: 1.6rem 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.14);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-feature-card {
    background: rgba(16, 24, 40, 0.9);
    border-color: rgba(100, 116, 139, 0.52);
    box-shadow: 0 1rem 2.2rem rgba(2, 6, 23, 0.65);
    color: rgba(226, 232, 240, 0.92);
}

.solutions-feature-card__heading {
    align-self: flex-start;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.25;
    background: rgba(148, 163, 184, 0.16);
    color: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 0.85rem 1.6rem rgba(15, 23, 42, 0.1);
    max-width: 100%;
    white-space: normal;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-feature-card__heading {
    background: rgba(71, 85, 105, 0.28);
    border-color: rgba(100, 116, 139, 0.5);
    color: #e2e8f0;
    box-shadow: 0 1rem 1.9rem rgba(2, 6, 23, 0.45);
}

.solutions-feature-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.solutions-feature-card p {
    margin: 0;
    color: rgba(15, 23, 42, 0.75);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-feature-card p {
    color: rgba(226, 232, 240, 0.9);
}

.solutions-feature-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: inherit;
}

.solutions-feature-card li {
    margin-bottom: 0.35rem;
}

.solutions-feature-card li:last-child {
    margin-bottom: 0;
}

.solutions-feature-card__heading--agro {
    background: rgba(34, 197, 94, 0.22);
    border-color: rgba(34, 197, 94, 0.42);
    color: #166534;
    box-shadow: 0 1rem 1.9rem rgba(16, 185, 129, 0.2);
}

.solutions-feature-card__heading--repair {
    background: rgba(37, 99, 235, 0.22);
    border-color: rgba(37, 99, 235, 0.42);
    color: #1d4ed8;
    box-shadow: 0 1rem 1.9rem rgba(59, 130, 246, 0.22);
}

.solutions-feature-card__heading--bar {
    background: rgba(249, 115, 22, 0.22);
    border-color: rgba(249, 115, 22, 0.4);
    color: #c2410c;
    box-shadow: 0 1rem 1.9rem rgba(249, 115, 22, 0.18);
}

.solutions-feature-card__heading--gestor {
    background: rgba(124, 58, 237, 0.24);
    border-color: rgba(124, 58, 237, 0.46);
    color: #6d28d9;
    box-shadow: 0 1rem 1.9rem rgba(124, 58, 237, 0.22);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-feature-card__heading--agro {
    background: rgba(34, 197, 94, 0.38);
    border-color: rgba(34, 197, 94, 0.56);
    color: #bbf7d0;
    box-shadow: 0 1.1rem 2.1rem rgba(16, 185, 129, 0.3);
}
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-feature-card__heading--repair {
    background: rgba(37, 99, 235, 0.4);
    border-color: rgba(37, 99, 235, 0.58);
    color: #bfdbfe;
    box-shadow: 0 1.1rem 2.1rem rgba(37, 99, 235, 0.32);
}
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-feature-card__heading--bar {
    background: rgba(249, 115, 22, 0.38);
    border-color: rgba(249, 115, 22, 0.56);
    color: #fed7aa;
    box-shadow: 0 1.1rem 2.1rem rgba(249, 115, 22, 0.3);
}
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-feature-card__heading--gestor {
    background: rgba(124, 58, 237, 0.4);
    border-color: rgba(124, 58, 237, 0.58);
    color: #ddd6fe;
    box-shadow: 0 1.1rem 2.1rem rgba(124, 58, 237, 0.32);
}

/* Hero de detalle */
.solution-hero {
    border-radius: 1.75rem;
    position: relative;
    overflow: hidden;
    padding: clamp(2.25rem, 3vw, 3rem);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: grid;
    gap: 2rem;
}

:is(:root[data-bs-theme='light'], html[data-theme='light'], body[data-theme='light'], html:not([data-theme])) .solution-hero {
    background: linear-gradient(140deg, rgba(148, 163, 184, 0.1), #ffffff);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero {
    background: linear-gradient(140deg, rgba(29, 35, 60, 0.82), rgba(15, 23, 42, 0.95));
    border-color: rgba(100, 116, 139, 0.48);
    color: rgba(226, 232, 240, 0.93);
}

.solution-hero__content {
    max-width: 610px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.solution-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(148, 163, 184, 0.18);
    color: #1f2937;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-pill {
    background: rgba(79, 70, 229, 0.26);
    color: #e0e7ff;
}

.solution-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.solution-hero__cta .btn {
    border-radius: 999px;
    padding-inline: 1.6rem;
}

.solution-hero__cta .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}
    :is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero__cta .btn-outline-light {
        border-color: rgba(148, 197, 253, 0.55);
        color: #e0f2fe;
    }

.solution-hero__visual {
    --solution-visual-primary: rgba(59, 130, 246, 0.22);
    --solution-visual-secondary: rgba(37, 99, 235, 0.38);
    --solution-visual-border: rgba(59, 130, 246, 0.25);
    --solution-visual-orb: rgba(59, 130, 246, 0.28);
    position: relative;
    border-radius: 1.5rem;
    padding: clamp(1.6rem, 3vw, 2.4rem);
    min-height: clamp(230px, 34vw, 320px);
    display: grid;
    align-content: end;
    gap: 0.9rem;
    overflow: hidden;
    border: 1px solid var(--solution-visual-border);
    background: linear-gradient(135deg, var(--solution-visual-primary), rgba(255, 255, 255, 0.9));
    box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.16);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero__visual {
    background: linear-gradient(135deg, var(--solution-visual-secondary), rgba(15, 23, 42, 0.92));
    border-color: rgba(100, 116, 139, 0.48);
    box-shadow: 0 1.5rem 3.3rem rgba(2, 6, 23, 0.68);
}

.solution-hero__visual::before {
    content: '';
    position: absolute;
    inset: -40% 45% auto -15%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    pointer-events: none;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero__visual::before {
    background: radial-gradient(circle, rgba(147, 197, 253, 0.32), transparent 72%);
}

.solution-hero__visual::after {
    content: '';
    position: absolute;
    inset: auto -25% -45% 35%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
    pointer-events: none;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero__visual::after {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.28), transparent 70%);
}

.solution-hero__visual-orb {
    position: absolute;
    top: clamp(12%, 4vw, 18%);
    right: clamp(12%, 5vw, 20%);
    width: clamp(120px, 18vw, 160px);
    height: clamp(120px, 18vw, 160px);
    border-radius: 50%;
    background: var(--solution-visual-orb);
    filter: blur(0px);
    opacity: 0.45;
    pointer-events: none;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero__visual-orb {
    opacity: 0.55;
}

.solution-hero__visual-card {
    position: relative;
    z-index: 1;
    padding: 1.1rem 1.35rem;
    border-radius: 1.2rem;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #0f172a;
    max-width: min(270px, 100%);
    box-shadow: 0 1.35rem 2.4rem rgba(15, 23, 42, 0.18);
}

:root[data-bs-theme='dark'] .solution-hero__visual-card {
    background: rgba(15, 23, 42, 0.78);
    border-color: rgba(71, 85, 105, 0.45);
    color: #e2e8f0;
    box-shadow: 0 1.35rem 2.6rem rgba(2, 6, 23, 0.62);
}
    :is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero__visual-card {
        background: rgba(15, 23, 42, 0.82);
        border-color: rgba(100, 116, 139, 0.48);
        color: rgba(226, 232, 240, 0.94);
        box-shadow: 0 1.35rem 2.7rem rgba(2, 6, 23, 0.68);
    }

.solution-hero__visual-card--secondary {
    margin-left: auto;
    max-width: min(250px, 85%);
    background: rgba(255, 255, 255, 0.68);
}

:root[data-bs-theme='dark'] .solution-hero__visual-card--secondary {
    background: rgba(15, 23, 42, 0.68);
}
    :is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-hero__visual-card--secondary {
        background: rgba(15, 23, 42, 0.7);
    }

.solution-hero__visual-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: inherit;
    opacity: 0.8;
}

.solution-hero__visual-title {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 0.45rem;
}

.solution-hero__visual-text {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: rgba(15, 23, 42, 0.7);
}

:root[data-bs-theme='dark'] .solution-hero__visual-text {
    color: rgba(226, 232, 240, 0.78);
}

.solution-hero__visual--agro {
    --solution-visual-primary: rgba(22, 163, 74, 0.22);
    --solution-visual-secondary: rgba(34, 197, 94, 0.45);
    --solution-visual-border: rgba(22, 163, 74, 0.28);
    --solution-visual-orb: rgba(34, 197, 94, 0.32);
}

.solution-hero__visual--agro .solution-hero__visual-card {
    border-color: rgba(34, 197, 94, 0.35);
}

.solution-hero__visual--repair {
    --solution-visual-primary: rgba(37, 99, 235, 0.22);
    --solution-visual-secondary: rgba(37, 99, 235, 0.48);
    --solution-visual-border: rgba(37, 99, 235, 0.32);
    --solution-visual-orb: rgba(59, 130, 246, 0.32);
}

.solution-hero__visual--repair .solution-hero__visual-card {
    border-color: rgba(59, 130, 246, 0.35);
}

.solution-hero__visual--bar {
    --solution-visual-primary: rgba(249, 115, 22, 0.22);
    --solution-visual-secondary: rgba(251, 146, 60, 0.45);
    --solution-visual-border: rgba(249, 115, 22, 0.32);
    --solution-visual-orb: rgba(251, 191, 36, 0.32);
}

.solution-hero__visual--bar .solution-hero__visual-card {
    border-color: rgba(251, 146, 60, 0.35);
}

.solution-hero__visual--gestor {
    --solution-visual-primary: rgba(139, 92, 246, 0.22);
    --solution-visual-secondary: rgba(139, 92, 246, 0.48);
    --solution-visual-border: rgba(139, 92, 246, 0.32);
    --solution-visual-orb: rgba(167, 139, 250, 0.32);
}

.solution-hero__visual--gestor .solution-hero__visual-card {
    border-color: rgba(167, 139, 250, 0.4);
}

/* Tarjetas laterales y CTA */
.solution-side-card,
.solution-cta-card {
    border-radius: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.12);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-side-card,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-cta-card {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(100, 116, 139, 0.52);
    box-shadow: 0 1rem 2.2rem rgba(2, 6, 23, 0.65);
    color: rgba(226, 232, 240, 0.92);
}

.solution-cta-card {
    padding: 1.75rem 2rem;
}

.solution-cta-card--agro {
    border-color: rgba(22, 163, 74, 0.25);
}

.solution-cta-card--repair {
    border-color: rgba(37, 99, 235, 0.25);
}

.solution-cta-card--bar {
    border-color: rgba(249, 115, 22, 0.3);
}

.solution-cta-card--gestor {
    border-color: rgba(124, 58, 237, 0.28);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-cta-card--agro {
    border-color: rgba(34, 197, 94, 0.5);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-cta-card--repair {
    border-color: rgba(59, 130, 246, 0.52);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-cta-card--bar {
    border-color: rgba(249, 115, 22, 0.52);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solution-cta-card--gestor {
    border-color: rgba(139, 92, 246, 0.52);
}

/* Check para listas */
.solution-check {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: radial-gradient(circle, #22c55e 42%, transparent 45%);
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.6);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

:root[data-bs-theme='dark'] .solution-check {
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.8);
}

/* Registro CTA */
.solutions-register {
    margin-top: 4rem;
}

.solutions-register__card {
    border-radius: 1.75rem;
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.45));
    color: #0f172a;
    box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.18);
}

:root[data-bs-theme='dark'] .solutions-register__card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(37, 99, 235, 0.45));
    color: #f8fafc;
    border-color: rgba(147, 197, 253, 0.45);
    box-shadow: 0 1.5rem 3.2rem rgba(2, 6, 23, 0.68);
}

@media (max-width: 991.98px) {
    .solution-hero__visual {
        margin-inline: auto;
        min-height: clamp(220px, 55vw, 320px);
    }

    .solution-hero__visual-card--secondary {
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .solution-hero__visual {
        padding: 1.4rem;
        gap: 0.75rem;
    }

    .solutions-banner__cta {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }
}

/* Onboarding bloque Gestor */
.solutions-onboarding {
    margin-top: clamp(3.5rem, 6vw, 4.5rem);
}

.solutions-onboarding__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.4rem);
}

@media (max-width: 991.98px) {
    .solutions-onboarding__grid {
        grid-template-columns: 1fr;
    }
}

.solutions-login-card,
.solutions-register-flow {
    border-radius: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1.45rem 2.9rem rgba(15, 23, 42, 0.14);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    min-height: 100%;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-register-flow {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(100, 116, 139, 0.52);
    box-shadow: 0 1.45rem 3.1rem rgba(2, 6, 23, 0.64);
    color: rgba(226, 232, 240, 0.92);
}

.solutions-login-card__header,
.solutions-register-flow__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solutions-login-card__eyebrow,
.solutions-register-flow__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 0.72rem;
    color: rgba(15, 23, 42, 0.65);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card__eyebrow,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-register-flow__eyebrow {
    color: rgba(226, 232, 240, 0.78);
}

.solutions-login-card__social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solutions-login-card__alert {
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.25);
    background: rgba(248, 113, 113, 0.12);
    color: #7f1d1d;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card__alert {
    background: rgba(127, 29, 29, 0.35);
    border-color: rgba(248, 113, 113, 0.45);
    color: #fecaca;
}

.solutions-social-btn {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    border: 1px solid transparent;
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    transition: transform 0.18s ease;
}

.solutions-social-btn--google {
    background: rgba(59, 130, 246, 0.16);
    color: #1d4ed8;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-social-btn--google {
    background: rgba(59, 130, 246, 0.3);
    color: #bfdbfe;
}

.solutions-social-btn:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.65);
    outline-offset: 2px;
}

.solutions-social-btn:hover:not([disabled]),
.solutions-social-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0.8rem 1.6rem rgba(37, 99, 235, 0.25);
    background: rgba(59, 130, 246, 0.18);
}

.solutions-social-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
}

.solutions-social-btn__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.solutions-login-card__divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(148, 163, 184, 0.9);
}

.solutions-login-card__divider::before,
.solutions-login-card__divider::after {
    content: '';
    flex: 1 1 auto;
    height: 1px;
    background: currentColor;
    opacity: 0.35;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card__divider {
    color: rgba(148, 163, 184, 0.74);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card__divider::before,
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card__divider::after {
    opacity: 0.48;
}

.solutions-login-card__divider span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.solutions-login-card__form .form-control {
    border-radius: 0.75rem;
    min-height: 3rem;
}

.solutions-login-card__hint a {
    font-weight: 600;
}

.solutions-login-card__status {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.25);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card__status {
    background: rgba(34, 197, 94, 0.26);
    border-color: rgba(22, 163, 74, 0.52);
    color: rgba(226, 232, 240, 0.94);
}

.solutions-login-card__status-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.22);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #047857;
}
:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-login-card__status-icon {
    background: rgba(22, 163, 74, 0.36);
    color: #bbf7d0;
}

.solutions-register-flow__steps {
    counter-reset: onboarding-step;
    display: grid;
    gap: 0.65rem;
    padding-left: 0;
    list-style: none;
}

.solutions-register-flow__steps li {
    position: relative;
    padding-left: 2.1rem;
    line-height: 1.5;
}

.solutions-register-flow__steps li::before {
    counter-increment: onboarding-step;
    content: counter(onboarding-step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.18);
    color: #1d4ed8;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-register-flow__steps li::before {
    background: rgba(59, 130, 246, 0.3);
    color: #bfdbfe;
}

.solutions-register-flow__note {
    margin-top: 0.75rem;
}

.solutions-register-flow__locked {
    border-radius: 1.25rem;
    padding: 1.2rem 1.4rem;
    background: rgba(148, 163, 184, 0.12);
    border: 1px dashed rgba(148, 163, 184, 0.35);
    text-align: center;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-register-flow__locked {
    background: rgba(30, 41, 59, 0.42);
    border-color: rgba(100, 116, 139, 0.5);
    color: rgba(226, 232, 240, 0.92);
}
.solutions-register-flow__locked-icon {
    font-size: 1.4rem;
}

.solutions-register-flow__form .form-control,
.solutions-register-flow__form .form-select {
    border-radius: 0.85rem;
    min-height: 3rem;
}

.solutions-register__card .btn {
    border-radius: 999px;
    padding-inline: 1.9rem;
    padding-block: 0.75rem;
    box-shadow: 0 1.2rem 2rem rgba(15, 23, 42, 0.25);
}

:is(:root[data-bs-theme='dark'], html[data-theme='dark'], body[data-theme='dark'], body.bg-dark) .solutions-register__card .btn {
    box-shadow: 0 1.2rem 2.2rem rgba(2, 6, 23, 0.62);
}

.solutions-register__support {
    font-size: 0.9rem;
    opacity: 0.85;
}

.solutions-register__support a {
    font-weight: 600;
    color: inherit;
    text-decoration: underline;
}

.solutions-register__support a:hover {
    text-decoration: none;
}

/* Responsivo */
@media (max-width: 767.98px) {
    .solutions-hero {
        padding: 2.25rem;
    }

    .solution-card__body {
        padding: 1.4rem;
    }

    .solutions-hero__stats {
        gap: 0.75rem;
    }
}

@media (min-width: 1200px) {
    .solutions-hero {
        grid-template-columns: 1.2fr 0.9fr;
    }
}

/* Helpers existentes */
.bg-purple-subtle {
    background-color: rgba(129, 140, 248, 0.12);
}

.text-purple-emphasis {
    color: #4f46e5;
}

:root[data-bs-theme='dark'] .bg-purple-subtle {
    background-color: rgba(129, 140, 248, 0.26);
}

:root[data-bs-theme='dark'] .text-purple-emphasis {
    color: #c7d2fe;
}
