:root {
    --primary: #11d7a3;
    --primary-dark: #0e9f7a;
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --brand-purple: #7c3aed;
    --brand-purple-dark: #5b21b6;
    --brand-indigo: #4f46e5;
    --brand-blue: #2563eb;
    --brand-cyan: #06b6d4;
    --brand-gradient: linear-gradient(90deg, var(--brand-purple-dark), var(--brand-purple), var(--brand-indigo));
    --brand-divider-gradient: linear-gradient(90deg, rgba(91, 33, 182, 0), rgba(124, 58, 237, 0.95), rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.85), rgba(91, 33, 182, 0));
    --accent-cyan: #0ea4ad;
    --accent-sky: #38bdf8;
    --accent-indigo: #4f46e5;
    --accent-mint: #34d399;
    --accent-orange: #f59e0b;
    --accent-orange-soft: #fff4df;
    --accent-gray: #64748b;
    --accent-gray-soft: #f1f5f9;
    --accent-soft-a: #eef8ff;
    --accent-soft-b: #eefdf8;
    --accent-soft-c: #f1f0ff;
    --ink: #162536;
    --muted: #4b5f74;
    --bg: #dbe6f2;
    --card: #e7eef7;
    --cta-navy-deep: #060d1f;
    --cta-navy-mid: #0f2247;
    --cta-navy-light: #1a3a6e;
    --cta-glow: rgba(37, 99, 235, 0.45);
    --cta-glow-cyan: rgba(6, 182, 212, 0.25);
    /* Tokens alineados con kairoscloud.es */
    --kromy-navy: #0f172a;
    --kromy-violet-soft: #c4b5fd;
    --kromy-soft: #f4f2ff;
    --kromy-soft-alt: #f8fafc;
    --kromy-card-shadow: 0 0.25rem 1rem rgba(15, 23, 42, 0.06);
    --kromy-card-shadow-hover: 0 1rem 2.5rem rgba(15, 23, 42, 0.1);
    --kromy-radius: 1rem;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #eef2ff, #e2e8f0);
}

body::before {
    content: "";
    position: fixed;
    inset: 0 0 auto 0;
    height: 10px;
    background: var(--brand-divider-gradient);
    z-index: 200;
    pointer-events: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 10px;
    z-index: 100;
    background: rgba(225, 234, 245, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e8edf3;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    text-decoration: none;
    color: var(--ink);
}

.logo-with-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0;
    min-width: 0;
}

.logo-title {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.logo-tagline {
    display: block;
    margin-top: 0.1em;
    font-size: 0.5rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.03em;
    line-height: 1.2;
    max-width: 12em;
}

.nav-toggle {
    display: none;
    border: 1px solid #d7dee8;
    background: #f4f8fd;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1;
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-btn {
    text-decoration: none;
    color: var(--ink);
    border: 1px solid #d7dee8;
    background: #e9f0f8;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
}

.nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.nav-btn.active {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
    border-color: rgba(124, 58, 237, 0.55);
    color: #ffffff;
}

.login-btn {
    margin-left: 2.3rem;
    position: relative;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
    border-color: rgba(79, 70, 229, 0.65);
    color: #ffffff;
}

.login-btn::before {
    content: "";
    position: absolute;
    left: -1.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: #d7e2ef;
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--brand-purple-dark), var(--brand-blue));
    border-color: rgba(91, 33, 182, 0.7);
    color: #ffffff;
}

/* —— Inicio e interior: cabecera fija + cuerpo (mismo lenguaje que kairoscloud.es) —— */
.page-home,
.page-kromy {
    font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--kromy-soft-alt);
}

.page-home .site-header,
.page-kromy .site-header {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(
        90deg,
        #05071a 0%,
        #0a0e27 22%,
        #0f172a 48%,
        #1a1442 78%,
        #2e1065 100%
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.22);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-home .site-header.is-scrolled,
.page-kromy .site-header.is-scrolled {
    background: linear-gradient(
        90deg,
        #05071a 0%,
        #0c1220 35%,
        #1e1b4b 70%,
        #312e81 100%
    );
    border-bottom-color: rgba(167, 139, 250, 0.28);
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.45);
}

.page-home .header-inner,
.page-kromy .header-inner {
    width: min(1120px, 92%);
    margin: 0 auto;
    min-height: 72px;
    padding: 0.65rem 0;
}

.page-home .logo,
.page-kromy .logo {
    color: #fff;
}

.page-home .logo-title,
.page-kromy .logo-title {
    color: #fff;
    letter-spacing: -0.03em;
}

.page-home .logo-y-accent,
.page-kromy .logo-y-accent {
    color: var(--kromy-violet-soft);
    font-weight: 700;
}

.page-home .logo-tagline,
.page-kromy .logo-tagline {
    color: rgba(255, 255, 255, 0.55);
}

.page-home .nav-btn:not(.active):not(.login-btn),
.page-kromy .nav-btn:not(.active):not(.login-btn) {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border-radius: 0.5rem;
}

.page-home .nav-btn:not(.active):not(.login-btn):hover,
.page-kromy .nav-btn:not(.active):not(.login-btn):hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.page-home .nav-btn.active,
.page-kromy .nav-btn.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.page-home .login-btn,
.page-kromy .login-btn {
    margin-left: 2.3rem;
    background: #fff !important;
    color: #1e3a8a !important;
    border: none !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.15rem;
}

.page-home .login-btn::before,
.page-kromy .login-btn::before {
    background: rgba(255, 255, 255, 0.22);
}

.page-home .login-btn:hover,
.page-kromy .login-btn:hover {
    background: #e0e7ff !important;
    color: #1e40af !important;
    border-color: transparent !important;
}

.page-home .nav-toggle,
.page-kromy .nav-toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.page-home main,
.page-kromy main {
    padding-top: 82px;
}

.hero {
    padding: 5.5rem 0 3rem;
}

.hero.hero-dark {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: -82px;
    padding: calc(82px + 3.25rem) 0 4rem;
    color: #fff;
    background-color: #040514;
    background-image:
        radial-gradient(ellipse 100% 70% at 95% 15%, rgba(124, 58, 237, 0.45) 0%, transparent 52%),
        radial-gradient(ellipse 70% 55% at 15% 85%, rgba(37, 99, 235, 0.28) 0%, transparent 48%),
        radial-gradient(circle at 88% 92%, rgba(192, 132, 252, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 78% 98%, rgba(167, 139, 250, 0.1) 0%, transparent 22%),
        linear-gradient(155deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.82) 32%, rgba(30, 27, 75, 0.76) 58%, rgba(12, 18, 32, 0.92) 100%);
}

.hero.hero-dark::before {
    content: "";
    position: absolute;
    width: min(140%, 1200px);
    height: min(90%, 700px);
    top: -25%;
    right: -30%;
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    background: radial-gradient(ellipse at 40% 40%, rgba(139, 92, 246, 0.5) 0%, rgba(76, 29, 149, 0.15) 45%, transparent 72%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
}

.hero.hero-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 2px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0px, transparent 1px, transparent 2px);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.hero-dark-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem 2rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

.hero-dark-title {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-dark-lead {
    margin: 0 0 1.35rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    max-width: 34rem;
}

.hero-dark-lead a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-dark-lead a:hover {
    color: #fff;
}

.hero-dark-lead strong {
    color: #fff;
    font-weight: 700;
}

.hero-page-visual {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(2, 6, 23, 0.35);
    padding: 0.5rem;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.35);
}

.hero-page-visual .visual-image {
    border-radius: 0.85rem;
    min-height: 220px;
}

.hero-dark .about-badges .chip {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
}

.hero-dark .about-badges .chip:nth-child(3n) {
    border-color: rgba(253, 224, 71, 0.5);
    background: rgba(253, 224, 71, 0.14);
    color: #fef9c3;
}

.hero-dark-grid--contact {
    grid-template-columns: 1fr;
    max-width: 40rem;
}

.hero-dark-copy .hero-dark-lead + .hero-dark-lead {
    margin-top: -0.65rem;
}

.hero-dark-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    margin-bottom: 1.35rem;
}

.hero-btn-primary {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue) !important;
    background: #fff !important;
    border: none !important;
    border-radius: 999px;
    box-shadow: 0 0.35rem 1.25rem rgba(0, 0, 0, 0.2);
    min-width: 11rem;
    text-align: center;
}

.hero-btn-primary:hover {
    background: #f8fafc !important;
    color: var(--primary-blue-dark) !important;
}

.hero-btn-outline {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 999px;
    min-width: 11rem;
    text-align: center;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
}

.hero-micro-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.hero-micro-trust li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-micro-trust li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2322c55e'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
}

.hero-dark-visual {
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.15));
    display: grid;
    grid-template-columns: minmax(0, clamp(88px, 16vw, 132px)) minmax(0, 1fr);
    gap: 0.75rem 1rem;
    align-items: stretch;
}

/* Inicio: móvil + panel en dos columnas. Otras páginas solo tienen la imagen ancha:
   sin esto el único hijo cae en la columna estrecha y parece un mockup vertical. */
.hero-dark-visual:not(:has(.hero-dark-visual-phone)) {
    grid-template-columns: 1fr;
}

.hero-dark-visual-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 0;
    min-height: 0;
    height: 100%;
}

.hero-dark-visual-phone img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.app-screenshot-privacy {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    isolation: isolate;
}

.app-screenshot-privacy > img {
    display: block;
    width: 100%;
    height: auto;
}

.app-screenshot-privacy::before,
.app-screenshot-privacy::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.app-screenshot-privacy--mobile::before {
    top: 0;
    height: 13%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.42), transparent);
}

.app-screenshot-privacy--mobile::after {
    bottom: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.48), transparent);
}

.app-screenshot-privacy--desktop::before {
    top: 0;
    height: 11%;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.65), transparent);
}

.app-screenshot-privacy--desktop::after {
    bottom: 0;
    height: 26%;
    background: linear-gradient(to top, rgba(248, 250, 252, 0.7), transparent);
}

.service-phone-showcase {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 55%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.service-phone-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.65rem;
}

.service-phone-bezel {
    width: min(280px, 86vw);
    padding: 0.55rem 0.55rem 0.65rem;
    border-radius: 2.25rem;
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.service-phone-speaker {
    width: 32%;
    height: 5px;
    margin: 0.15rem auto 0.45rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
}

.service-phone-screen {
    border-radius: 1.65rem;
    overflow: hidden;
    background: #020617;
}

.phone-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.phone-carousel::-webkit-scrollbar {
    display: none;
}

.phone-carousel-track {
    display: contents;
}

.phone-carousel-slide {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-width: 0;
}

.phone-carousel-slide-fill {
    margin: 0;
    border-radius: 0;
    min-height: 0;
}

.phone-carousel-slide-fill img {
    display: block;
    width: 100%;
    height: auto;
}

.service-phone-caption {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--kromy-navy);
}

.service-phone-hint {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
}

.service-phone-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.service-phone-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.service-phone-dot.is-active {
    background: var(--primary-blue);
    transform: scale(1.15);
}

.service-phone-dot:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .phone-carousel {
        scroll-behavior: auto;
    }
}

.hero-dark-glow {
    display: none;
}

.hero-mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-items: stretch;
}

.hero-mock {
    border-radius: 1.75rem;
    padding: 1.25rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.hero-mock--app {
    min-height: 320px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
    color: #fff;
}

.hero-mock--panel {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--kromy-radius);
    background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
    box-shadow: var(--kromy-card-shadow), 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 0 0 1px rgba(15, 23, 42, 0.06);
    color: var(--kromy-navy);
}

.hero-mock--panel > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-mock-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    opacity: 0.75;
}

.hero-mock-head--light {
    color: #64748b;
    opacity: 1;
    margin-bottom: 0.75rem;
}

.hero-mock-head--light .hero-mock-icon {
    color: var(--primary-blue);
    font-size: 1.1rem;
    line-height: 1;
}

.hero-mock-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.hero-mock-entrada {
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-mock-entrada-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    opacity: 0.75;
    margin-bottom: 0.5rem;
}

.hero-mock-progress {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

.hero-mock-progress span {
    display: block;
    height: 100%;
    width: 65%;
    border-radius: inherit;
    background: #fff;
}

.hero-mock-status {
    margin: auto 0 0;
    font-size: 0.8125rem;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-mock-check {
    color: #22c55e;
    font-weight: 700;
}

.hero-mock-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.25rem 0 0;
}

.hero-mock-line {
    display: block;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: linear-gradient(90deg, #e2e8f0, #f1f5f9);
    width: 100%;
    animation: hero-placeholder-pulse 2.5s ease-in-out infinite;
}

.hero-mock-line:nth-child(2) { width: 83%; animation-delay: 0.15s; }
.hero-mock-line:nth-child(3) { width: 92%; animation-delay: 0.3s; }
.hero-mock-line:nth-child(4) { width: 71%; animation-delay: 0.45s; }

@keyframes hero-placeholder-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-mock-line {
        animation: none;
        opacity: 0.7;
    }
}

.hero-mock-panel-foot {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid #e2e8f0;
}

.hero-mock-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.home-section-kicker {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-purple);
}

.home-problem {
    background: #fff;
}

.home-problem-title,
.home-solution-title {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--kromy-navy);
}

.home-problem-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.problem-card {
    margin: 0;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--kromy-radius);
    padding: 1.35rem 1.15rem;
    text-align: center;
    box-shadow: var(--kromy-card-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kromy-card-shadow-hover);
    border-color: rgba(124, 58, 237, 0.12);
}

.problem-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--kromy-navy);
}

.problem-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
}

.problem-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.06);
    transition: all 0.2s ease;
    color: #4f46e5;
}

.problem-card-icon .feature-svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.problem-card:hover .problem-card-icon {
    transform: translateY(-2px);
    background: rgba(79, 70, 229, 0.1);
}

.home-solution {
    background: linear-gradient(180deg, var(--kromy-soft) 0%, var(--kromy-soft-alt) 100%);
}

.home-solution-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
    gap: 2.5rem 2.75rem;
    align-items: center;
}

.home-solution-copy .home-section-kicker {
    text-align: left;
}

.home-solution-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.home-solution-text {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #64748b;
}

.home-solution-text strong {
    color: var(--kromy-navy);
    font-weight: 600;
}

.home-solution-text--compact {
    margin-bottom: 1.25rem;
}

.home-solution-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-solution-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b;
}

.home-solution-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-solution-visual {
    width: 100%;
}

.home-solution-card {
    width: 100%;
    max-width: none;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.4rem;
    box-shadow: var(--kromy-card-shadow);
}

.home-solution-shot-wrap {
    overflow: hidden;
    border-radius: 0.85rem;
    background: #e8edf5;
    aspect-ratio: 4 / 3;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.home-solution-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    filter: contrast(1.03) saturate(1.04);
}

.home-solution-card:hover .home-solution-shot {
    transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .home-solution-shot {
        transition: none;
    }

    .home-solution-card:hover .home-solution-shot {
        transform: none;
    }
}

.home-solution-card-caption {
    margin: 0.85rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

.home-flow {
    background: #fff;
    padding-bottom: 0;
}

.home-flow-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.home-flow-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--kromy-navy);
}

.home-flow-lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
}

.home-flow-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
    padding-bottom: 2.75rem;
}

.home-flow-card {
    margin: 0;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--kromy-radius);
    padding: clamp(1.35rem, 3vw, 2.35rem);
    box-shadow: var(--kromy-card-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-flow-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--kromy-card-shadow-hover);
    border-color: rgba(124, 58, 237, 0.1);
}

.home-flow-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.home-flow-icon {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.home-flow-icon--blue {
    background: linear-gradient(145deg, #dde6f1, #d3ddea);
    color: var(--primary-blue);
}

.home-flow-icon--green {
    background: linear-gradient(145deg, #dcebe4, #d2e3da);
    color: var(--primary-dark);
}

.home-flow-icon .feature-svg {
    width: 52px;
    height: 52px;
    display: block;
    flex-shrink: 0;
}

.home-flow-card-title {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--kromy-navy);
    letter-spacing: -0.02em;
}

.home-flow-card-kicker {
    margin: 0;
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 500;
}

.home-flow-card-text {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748b;
}

.home-flow-card-text strong {
    color: var(--kromy-navy);
    font-weight: 600;
}

.home-flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.home-flow-list li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.5rem;
}

.home-flow-list li:last-child {
    margin-bottom: 0;
}

.home-flow-list--blue li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.home-flow-list--green li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

h1, h2, h3 {
    margin: 0 0 0.8rem;
}

h1 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.1;
}

.lead {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

h1, h2 {
    color: #152a42;
}

.btn {
    text-decoration: none;
    display: inline-block;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-purple-dark), var(--primary-blue-dark));
}

.btn-secondary {
    border-color: #c8d4e3;
    color: #2a4058;
    background: var(--accent-gray-soft);
}

.btn-secondary:hover {
    border-color: #aebed0;
    background: #e8eff7;
}

.panel {
    background: linear-gradient(135deg, #0f2742, #1d4b73);
    color: #e9f2ff;
    border-radius: 20px;
    min-height: 260px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(26, 44, 74, 0.25);
}

.panel-title {
    margin: 0 0 0.7rem;
    color: #dce9ff;
    font-weight: 700;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.kpi-item {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(188, 211, 245, 0.3);
    border-radius: 12px;
    padding: 0.55rem 0.6rem;
}

.kpi-value {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 800;
    color: #7ef3d1;
    line-height: 1;
}

.kpi-label {
    margin: 0.28rem 0 0;
    font-size: 0.82rem;
    color: #d9e5f6;
    line-height: 1.35;
}

.section {
    padding: 3.2rem 0;
}

.service-trust-metrics {
    background: linear-gradient(180deg, #e8edf5 0%, #dfe8f3 100%);
    padding-top: 2.85rem;
    padding-bottom: 2.85rem;
}

.service-trust-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.service-trust-head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: #1a3353;
    letter-spacing: -0.02em;
}

.service-trust-lead {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #5d6a79;
}

.service-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.service-trust-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 14px;
    padding: 1.1rem 1.2rem 1.25rem;
    box-shadow: 0 10px 32px rgba(19, 44, 71, 0.07);
}

.service-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(145deg, #eef0fb, #e4eaf5);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--brand-purple);
}

.service-trust-icon .feature-svg {
    width: 26px;
    height: 26px;
}

.solution-trust-strip.service-trust-metrics {
    border-top: 1px solid rgba(203, 213, 225, 0.5);
}

.service-trust-card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.service-trust-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #31465f;
    line-height: 1.35;
}

.service-trust-pct {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-purple);
    letter-spacing: -0.03em;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.service-trust-track {
    height: 11px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.service-trust-fill {
    display: block;
    height: 100%;
    width: 0;
    max-width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand-purple), var(--primary-blue));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.in-view .service-trust-fill {
    width: var(--trust-pct);
}

.service-trust-footnote {
    margin: 1.6rem auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #64748b;
}

@media (prefers-reduced-motion: reduce) {
    .service-trust-fill {
        transition: none;
    }
}

@media (max-width: 680px) {
    .service-trust-grid {
        grid-template-columns: 1fr;
    }
}

.features-showcase {
    background: linear-gradient(180deg, #dfe8f3, #d7e1ee);
}

.section-title-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 0.8rem;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.section-subtitle-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
    color: var(--muted);
    line-height: 1.65;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem 2rem;
}

.feature-item {
    background: #dfe8f3;
    border: 1px solid #e2eaf4;
    border-radius: 14px;
    padding: 0.8rem;
}

.feature-item:nth-child(3n + 1) {
    background: linear-gradient(145deg, #dcebe4, #d2e3da);
}

.feature-item:nth-child(3n + 2) {
    background: linear-gradient(145deg, #dde6f1, #d3ddea);
}

.feature-item:nth-child(3n + 3) {
    background: linear-gradient(145deg, #e2deee, #d7d4e4);
}

.feature-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.feature-svg {
    width: 22px;
    height: 22px;
    color: currentColor;
    display: block;
    flex-shrink: 0;
}

.feature-item .feature-icon {
    color: var(--brand-purple);
}

.feature-item .feature-icon .feature-svg {
    width: 48px;
    height: 48px;
}

.icon-stroke-a,
.icon-stroke-b {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.icon-stroke-a {
    stroke: var(--brand-purple);
}

.icon-stroke-b {
    stroke: #1f3a8a;
}

.icon-fill-b {
    fill: #1f3a8a;
}

.feature-item h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.feature-item p {
    margin: 0 0 0.55rem;
    color: var(--muted);
    line-height: 1.6;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
}

button.feature-link {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}

.feature-link:hover {
    color: var(--primary-blue-dark);
}

.feature-modal-hint {
    margin: 0.75rem 0 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
}

.feature-modal-hint a {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
}

.feature-modal-hint a:hover {
    text-decoration: underline;
    color: var(--primary-blue-dark);
}

.feature-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.feature-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.feature-detail-dialog {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: min(90vh, 720px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.feature-detail-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 2.35rem;
    height: 2.35rem;
    border: none;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.06);
    color: #475569;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.feature-detail-close:hover {
    background: rgba(15, 23, 42, 0.11);
    color: #0f172a;
}

.feature-detail-header {
    flex-shrink: 0;
    padding: 1.15rem 3.25rem 0.35rem 1.35rem;
}

.feature-detail-header h2 {
    margin: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: #1a3353;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.feature-detail-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 1.35rem 1rem;
    min-height: 0;
}

.feature-detail-inner {
    display: grid;
    gap: 1.1rem;
    align-items: start;
}

@media (min-width: 700px) {
    .feature-detail-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    }
}

.feature-detail-media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8edf5, #f1f5f9);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.feature-detail-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 160px;
    max-height: 220px;
    object-fit: cover;
}

@media (min-width: 700px) {
    .feature-detail-media img {
        max-height: none;
        min-height: 200px;
        aspect-ratio: 4 / 3;
    }
}

.feature-detail-body {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #475569;
}

.feature-detail-body p {
    margin: 0 0 0.75rem;
}

.feature-detail-body p:last-of-type {
    margin-bottom: 0.5rem;
}

.feature-detail-list {
    margin: 0.65rem 0 0;
    padding-left: 1.15rem;
    color: #334155;
}

.feature-detail-list li {
    margin-bottom: 0.35rem;
}

.feature-detail-list li:last-child {
    margin-bottom: 0;
}

.feature-detail-footer {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    padding: 0.85rem 1.35rem 1.15rem;
    border-top: 1px solid #e2e8f0;
}

.feature-detail-footer .btn {
    min-height: 2.45rem;
}

.feature-detail-footer .btn-ghost-modal {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
}

.feature-detail-footer .btn-ghost-modal:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

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

.muted {
    color: var(--muted);
}

.page-header {
    padding: 4rem 0 2rem;
}

.about-columns,
.about-roadmap,
.about-meaning {
    background: linear-gradient(180deg, #dce4ee, #d3dce8);
}

.home-integration,
.home-scale {
    background: linear-gradient(180deg, #dce4ee, #d4ddea);
}

.home-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1rem;
    margin: 1rem 0 1.4rem;
}

.home-roles p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2a394c;
}

.role-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.role-dot-a {
    background: #16c99b;
}

.role-dot-b {
    background: #223f67;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: center;
}

.about-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
}

.about-card {
    background: linear-gradient(145deg, #ffffff, #f4f9ff);
    border: 1px solid #d8e5f2;
    border-radius: 16px;
    padding: 1rem;
}

.about-card:nth-child(2n) {
    background: linear-gradient(145deg, #ffffff, #effffb);
}

.about-columns .about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.about-columns .about-card:nth-child(1) .about-card-icon {
    background: linear-gradient(145deg, #dcebe4, #d2e3da);
    color: #0d9488;
}

.about-columns .about-card:nth-child(2) .about-card-icon {
    background: linear-gradient(145deg, #dde6f1, #d3ddea);
    color: #2563eb;
}

.about-columns .about-card-icon .feature-svg {
    width: 40px;
    height: 40px;
}

.about-list {
    margin: 0.4rem 0 0;
    padding-left: 1.2rem;
    color: #344559;
    line-height: 1.75;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meaning-list {
    margin: 0.4rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.9rem;
}

.meaning-list > li {
    color: #243a52;
}

.about-kicker {
    margin: 0 0 0.6rem;
    text-transform: uppercase;
    color: #0ea17a;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.about-text {
    color: #4f5c6d;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    align-items: center;
    margin-top: 0.15rem;
}

.about-visual {
    border-radius: 16px;
    border: 1px solid #dbe3ee;
    background: #ffffff;
    min-height: 250px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #24466e;
    font-weight: 700;
}

.visual-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-visual-large {
    min-height: 280px;
    position: relative;
    padding: 0.65rem;
}

.device-card {
    width: 78%;
    min-height: 160px;
    background: linear-gradient(150deg, #12335a, #235a8f);
    border-radius: 12px;
    color: #e6f0ff;
    display: grid;
    place-items: center;
}

.device-phone {
    width: 95px;
    height: 155px;
    border-radius: 18px;
    background: linear-gradient(150deg, #0d2038, #224d7a);
    color: #d9ecff;
    display: grid;
    place-items: center;
    border: 2px solid #b9d0ea;
}

.about-band {
    position: relative;
    isolation: isolate;
    color: #f8fafc;
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 80% at 85% 15%, var(--cta-glow) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 10% 90%, var(--cta-glow-cyan) 0%, transparent 45%),
        linear-gradient(165deg, var(--cta-navy-deep) 0%, var(--cta-navy-mid) 42%, var(--cta-navy-light) 72%, var(--cta-navy-deep) 100%);
}

.about-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0, transparent 1.5px),
        radial-gradient(circle at 40% 80%, rgba(147, 197, 253, 0.15) 0, transparent 2px);
    background-size: 120px 120px, 90px 90px, 140px 140px;
    pointer-events: none;
}

.about-band::after {
    content: "";
    position: absolute;
    width: min(140%, 900px);
    height: 40%;
    right: -25%;
    bottom: -8%;
    z-index: 0;
    border-radius: 50%;
    background: linear-gradient(120deg, transparent, rgba(59, 130, 246, 0.18), transparent);
    filter: blur(40px);
    pointer-events: none;
}

.about-band-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-band h2 {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    color: #ffffff;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.25);
}

.about-brand {
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
    color: rgba(248, 250, 252, 0.88);
}

.band-lead {
    margin: 0 0 1.1rem;
    max-width: 38rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.92);
}

.band-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.25rem;
}

.band-note {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: rgba(203, 213, 225, 0.9);
    max-width: 36rem;
    line-height: 1.5;
}

.band-note a {
    color: #93c5fd;
    font-weight: 600;
    text-decoration: none;
}

.band-note a:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.about-band-btn {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.about-band-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.band-btn-ghost {
    text-decoration: none;
    display: inline-block;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #e2e8f0;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.band-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.band-copy .about-band-btn {
    margin-top: 0;
}

.about-band .about-visual-round {
    border: 1px solid rgba(255, 255, 255, 0.18);
    min-height: 240px;
    background: rgba(15, 34, 71, 0.45);
    padding: 0.55rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.about-band .about-visual-round .visual-image {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-visual-round {
    border: none;
    min-height: 240px;
    background: radial-gradient(circle at center, rgba(10, 80, 124, 0.35), rgba(255, 255, 255, 0));
    padding: 0.65rem;
}

.reveal-item[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 560ms ease, transform 560ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-item[data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.about-visual-monitor {
    min-height: 240px;
    background: linear-gradient(150deg, #f9fcff, #eaf2fb);
    color: #12355f;
    padding: 0.65rem;
}

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

.contact-section {
    background: linear-gradient(180deg, #dce4ee, #d3dce8);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 1.2rem;
    align-items: start;
}

.contact-aside,
.contact-form-wrap {
    background: #e8eff7;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    padding: 1rem;
}

.contact-aside h2 {
    font-size: 1.2rem;
}

.contact-info-list {
    display: grid;
    gap: 0.8rem;
}

.contact-item a {
    color: #31465f;
    text-decoration: none;
}

.contact-item a:hover {
    color: #0b8d6b;
}

.contact-note {
    margin: 0.9rem 0 0;
    font-size: 0.92rem;
    color: #4f5c6d;
}

.contact-form {
    display: grid;
    gap: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field > span {
    font-weight: 600;
    color: #2b3e52;
    font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cfe0ef;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
    font: inherit;
    color: #1f2a37;
    background: #fbfdff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: #0ea4ad;
    box-shadow: 0 0 0 3px rgba(17, 215, 163, 0.18);
}

.field-group {
    border: 1px solid #d8e4ef;
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    margin: 0;
}

.field-group legend {
    font-weight: 700;
    color: #2b3e52;
    padding: 0 0.3rem;
}

.checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.8rem;
    font-size: 0.93rem;
    color: #3d4f63;
}

.consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.55rem;
}

.consent input {
    margin-top: 0.15rem;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.form-help {
    margin: 0;
    color: #637283;
    font-size: 0.9rem;
}

.form-status {
    margin: 0;
    font-weight: 600;
    min-height: 1.4rem;
    color: #0a815f;
}

.contact-item {
    background: #fff;
    border: 1px solid #e3e9f2;
    border-radius: 14px;
    padding: 1rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.service-pillars .catalog-grid {
    gap: 1.35rem;
}

.catalog-card {
    background: linear-gradient(145deg, #edf3fa, #e1e9f3);
    border: 1px solid #cfe0ef;
    border-radius: 16px;
    padding: 1rem;
}

.catalog-card:nth-child(2n) {
    background: linear-gradient(145deg, #e9f3ef, #dde9e4);
}

.catalog-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 0.4rem;
}

.catalog-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.service-pillars .catalog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    padding: 1.35rem 1.25rem 1.4rem;
}

.service-pillars .catalog-card:nth-child(2n) {
    background: #ffffff;
}

.service-pillars .catalog-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.service-pillars .catalog-icon {
    margin-bottom: 0.65rem;
}

.service-pillars .catalog-card--micro {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-micro-rule {
    height: 1px;
    margin: 0 0 0.85rem;
    background: linear-gradient(90deg, transparent, #e2e8f0 12%, #e2e8f0 88%, transparent);
}

.catalog-micro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.42rem 1.1rem;
    align-content: start;
}

.catalog-micro-item {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.86rem;
    line-height: 1.32;
    color: #64748b;
}

.catalog-micro-mark {
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    margin-top: 0.48em;
    border-radius: 50%;
    background: #cbd5e1;
}

.catalog-micro-item--emphasis {
    font-weight: 600;
    color: #0f172a;
}

.catalog-micro-item--emphasis .catalog-micro-mark {
    width: 5px;
    height: 5px;
    margin-top: 0.42em;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
}

@media (max-width: 640px) {
    .catalog-micro-grid {
        grid-template-columns: 1fr;
        gap: 0.38rem;
    }
}

.chip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    border: 1px solid #cfe0ef;
    background: linear-gradient(180deg, #ffffff, #ecf6ff);
    color: #2f4a63;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.84rem;
    line-height: 1.2;
}

.chip:nth-child(3n) {
    border-color: #ffd89a;
    background: linear-gradient(180deg, #fffaf0, var(--accent-orange-soft));
    color: #8a5a00;
}

.service-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-media {
    min-height: 280px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    padding: 0.65rem;
    background: #e8eff7;
}

.service-copy {
    background: #e8eff7;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    padding: 1.3rem;
}

.service-list {
    margin: 0.7rem 0 0;
    padding-left: 1.2rem;
    color: #344559;
    line-height: 1.8;
}

.pricing-section {
    background: linear-gradient(180deg, #eef0ff 0%, #e8e4f4 45%, #e2e8f0 100%);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.pricing-kicker {
    margin: 0 auto 0.5rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-purple);
}

.pricing-title {
    margin: 0 auto 0.75rem;
    text-align: center;
    max-width: 720px;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.pricing-subtitle {
    margin: 0 auto 2.25rem;
    text-align: center;
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    flex-direction: column;
}

.pricing-card--featured {
    border: 2px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, var(--brand-purple), var(--brand-blue)) border-box;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.18);
    padding-top: 1.75rem;
}

.pricing-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.pricing-plan-name {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.pricing-tagline {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #64748b;
    min-height: 2.6rem;
}

.pricing-amount {
    margin: 0 0 0.35rem;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pricing-period {
    font-size: 1.1rem;
    font-weight: 700;
    color: #475569;
}

.pricing-billing {
    margin: 0 0 1.1rem;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

.pricing-features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    flex: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 1.65rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #334155;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #10b981, #059669);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
}

.pricing-features li::after {
    content: "";
    position: absolute;
    left: 0.28rem;
    top: 0.42rem;
    width: 0.35rem;
    height: 0.2rem;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

.pricing-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    margin-top: auto;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pricing-btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: #ffffff;
}

.pricing-btn-outline:hover {
    background: rgba(37, 99, 235, 0.06);
    transform: translateY(-2px);
}

.pricing-btn-solid {
    border: 2px solid transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

.pricing-btn-solid:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.pricing-btn-dark {
    border: 2px solid #1e293b;
    color: #0f172a;
    background: #ffffff;
}

.pricing-btn-dark:hover {
    background: #f8fafc;
    border-color: #0f172a;
    transform: translateY(-2px);
}

.pricing-footnote {
    margin: 2rem auto 0;
    text-align: center;
    max-width: 520px;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* —— Planes SaaS (servicios.html #precios, alineado con kairoscloud) —— */
#precios .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

#precios .d-block {
    display: block;
}

#precios .mb-0 {
    margin-bottom: 0;
}

#precios .mb-1 {
    margin-bottom: 0.35rem;
}

#precios .mb-2 {
    margin-bottom: 0.5rem;
}

#precios .mb-3 {
    margin-bottom: 1rem;
}

#precios .mb-4 {
    margin-bottom: 1.5rem;
}

#precios .mt-1 {
    margin-top: 0.35rem;
}

#precios .mt-2 {
    margin-top: 0.5rem;
}

#precios .mt-3 {
    margin-top: 1rem;
}

#precios .pt-1 {
    padding-top: 0.25rem;
}

#precios .px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

#precios .text-secondary {
    color: #64748b;
}

#precios .text-muted {
    color: #94a3b8;
}

#precios .text-success {
    color: #059669;
}

#precios .plan-saas-heading {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

#precios .plan-saas-lead {
    margin: 0 auto 0.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

#precios .plan-saas-meta {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

#precios .plan-saas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 1.5rem;
}

#precios .plan-saas-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 0.5rem 1.75rem rgba(15, 23, 42, 0.07);
    transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.38s ease;
    overflow: hidden;
    padding: 1.35rem 1.25rem 1.4rem;
}

#precios .plan-saas-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.25rem 2.75rem rgba(15, 23, 42, 0.12);
}

#precios .plan-saas-card--featured {
    z-index: 2;
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(37, 99, 235, 0.65), rgba(124, 58, 237, 0.85)) border-box;
    box-shadow:
        0 1.25rem 3rem rgba(124, 58, 237, 0.2),
        0 0 0 1px rgba(124, 58, 237, 0.06),
        0 0 2.5rem rgba(124, 58, 237, 0.12);
    transform: scale(1.05);
    padding: 1.5rem 1.35rem 1.5rem;
}

#precios .plan-saas-card--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 100% 55% at 50% -10%, rgba(124, 58, 237, 0.14), transparent 58%);
    pointer-events: none;
    z-index: 0;
}

#precios .plan-saas-card--featured:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 1.75rem 3.5rem rgba(124, 58, 237, 0.28),
        0 0 0 1px rgba(124, 58, 237, 0.1),
        0 0 3rem rgba(99, 102, 241, 0.18);
}

#precios .plan-saas-featured-col {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 1.35rem;
    min-width: 0;
}

#precios .plan-saas-top-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    animation: kromy-plan-badge-glow 2.4s ease-in-out infinite;
}

@keyframes kromy-plan-badge-glow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.35), 0 6px 20px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(124, 58, 237, 0), 0 6px 20px rgba(37, 99, 235, 0.4);
    }
}

#precios .plan-saas-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

#precios .plan-saas-name {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

#precios .plan-saas-card-sub {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #64748b;
}

#precios .plan-saas-price {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #0f172a;
    line-height: 1;
}

#precios .plan-saas-period {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

#precios .plan-saas-billing {
    margin: 0;
    font-size: 0.8125rem;
    color: #94a3b8;
}

#precios .plan-saas-desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #64748b;
}

#precios .plan-saas-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.45;
}

#precios .plan-saas-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

#precios .plan-saas-list li:last-child {
    margin-bottom: 0;
}

#precios .plan-feature-yes {
    color: #059669;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

#precios .plan-feature-yes.feature-svg {
    width: 1.1rem;
    height: 1.1rem;
}

#precios .plan-feature-no.feature-svg {
    width: 1.05rem;
    height: 1.05rem;
}

#precios .plan-ico-yes.feature-svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
}

#precios .plan-ico-no.feature-svg {
    width: 1.15rem;
    height: 1.15rem;
    color: #94a3b8;
}

#precios .plan-comparativa-legend-ico {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-block;
    vertical-align: -0.12em;
    margin-right: 0.15rem;
}

#precios .plan-feature-no {
    color: #94a3b8;
}

#precios .plan-saas-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    margin-top: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

#precios .plan-saas-btn:hover {
    transform: translateY(-2px);
}

#precios .plan-saas-btn--outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: #fff;
    box-shadow: none;
}

#precios .plan-saas-btn--outline:hover {
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 0.5rem 1.25rem rgba(37, 99, 235, 0.25);
}

#precios .plan-saas-btn--primary {
    border: 2px solid transparent;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 0.35rem 1rem rgba(37, 99, 235, 0.35);
}

#precios .plan-saas-btn--primary:hover {
    box-shadow: 0 0.65rem 1.5rem rgba(37, 99, 235, 0.45);
}

#precios .plan-saas-btn--dark {
    border: 2px solid #1e293b;
    color: #0f172a;
    background: #fff;
}

#precios .plan-saas-btn--dark:hover {
    box-shadow: 0 0.45rem 1rem rgba(15, 23, 42, 0.18);
}

#precios .plan-saas-btn--table {
    margin-top: 0;
    width: 100%;
    max-width: 11rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
}

#precios .plan-saas-card-foot {
    font-size: 0.8125rem;
    text-align: center;
}

#precios .plan-saas-stat {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
    text-align: center;
}

#precios .plan-saas-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
}

#precios .plan-comparativa {
    margin-top: 3rem;
    padding-top: 2.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

#precios .plan-comparativa-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: #0f172a;
}

#precios .plan-comparativa-legend {
    margin: 0 auto 1.5rem;
    max-width: 520px;
    font-size: 0.8125rem;
}

#precios .plan-comparativa-table-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 0.5rem 2rem rgba(15, 23, 42, 0.06);
    background: #fff;
}

#precios .plan-comparativa-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#precios .plan-comparativa-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.875rem;
}

#precios .plan-comparativa-table thead th {
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    white-space: nowrap;
    padding: 1rem 0.75rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
}

#precios .plan-comparativa-table .plan-th-feature {
    text-align: left !important;
    padding-left: 1rem;
}

#precios .plan-comparativa-table tbody th {
    font-weight: 500;
    color: #0f172a;
    text-align: left;
    padding: 0.85rem 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

#precios .plan-comparativa-table tbody td {
    padding: 0.85rem 0.75rem;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
}

#precios .plan-comparativa-table tbody tr:hover th,
#precios .plan-comparativa-table tbody tr:hover td {
    background: rgba(241, 245, 249, 0.85);
}

#precios .plan-comparativa-table tbody tr:hover td.plan-col-highlight {
    background: rgba(224, 231, 255, 0.65) !important;
}

#precios .plan-comparativa-table tbody tr:last-child th,
#precios .plan-comparativa-table tbody tr:last-child td {
    border-bottom: none;
}

#precios .plan-comparativa-table thead .plan-col-highlight {
    background: linear-gradient(180deg, rgba(224, 231, 255, 0.55) 0%, rgba(199, 210, 254, 0.35) 100%);
    color: #3730a3;
}

#precios .plan-comparativa-table tbody .plan-col-highlight {
    background: rgba(238, 242, 255, 0.5) !important;
}

#precios .plan-comparativa-table tbody tr:hover .plan-col-highlight {
    background: rgba(224, 231, 255, 0.55) !important;
}

#precios .plan-ico-yes {
    font-size: 1.25rem;
}

#precios .plan-ico-no {
    font-size: 1.15rem;
}

#precios .plan-comparativa-cta-row th,
#precios .plan-comparativa-cta-row td {
    padding-top: 1.25rem;
    padding-bottom: 1.35rem;
    vertical-align: middle;
}

#precios .plan-cta-label {
    border-bottom: none !important;
}

@media (max-width: 991px) {
    #precios .plan-saas-card--featured {
        transform: none;
    }

    #precios .plan-saas-card--featured:hover {
        transform: translateY(-6px);
    }

    #precios .plan-saas-grid {
        grid-template-columns: 1fr;
    }
}

.solution-categories,
.solution-scenarios,
.solution-outcomes {
    background: linear-gradient(180deg, #dce4ee, #d4e1dc);
}

.solution-scenarios .section-title-center {
    color: #1a3353;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
    margin-top: 0.25rem;
}

.scenario-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 16px;
    padding: 1.25rem 1.2rem;
    box-shadow: 0 8px 26px rgba(19, 44, 71, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.scenario-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(19, 44, 71, 0.1);
    border-color: rgba(124, 58, 237, 0.15);
}

.scenario-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
}

.scenario-card:nth-child(1) .scenario-card-icon {
    background: linear-gradient(145deg, #dcebe4, #d2e3da);
    color: #0d9488;
}

.scenario-card:nth-child(2) .scenario-card-icon {
    background: linear-gradient(145deg, #dde6f1, #d3ddea);
    color: #2563eb;
}

.scenario-card:nth-child(3) .scenario-card-icon {
    background: linear-gradient(145deg, #e2deee, #d7d4e4);
    color: #7c3aed;
}

.scenario-card:nth-child(4) .scenario-card-icon {
    background: linear-gradient(145deg, #dcebe4, #d2e3da);
    color: #0d9488;
}

.scenario-card-icon .feature-svg {
    width: 40px;
    height: 40px;
}

.scenario-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a3353;
    letter-spacing: -0.02em;
}

.scenario-card p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: #4f5c6d;
}

.scenario-card p strong {
    color: #31465f;
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .scenario-card:hover {
        transform: none;
    }
}

.solution-outcomes .solution-copy h2 {
    color: #1a3353;
}

.solution-crosslink {
    margin: 1.1rem 0 0;
    font-size: 0.92rem;
    color: #5d6a79;
}

.solution-crosslink a {
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.solution-crosslink a:hover {
    text-decoration: underline;
}

.solution-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.solution-card {
    background: linear-gradient(145deg, #edf3fa, #e1e9f3);
    border: 1px solid #cfe0ef;
    border-radius: 16px;
    padding: 0.8rem;
    box-shadow: 0 8px 22px rgba(19, 44, 71, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: #bdd4ea;
    box-shadow: 0 14px 30px rgba(19, 44, 71, 0.16);
}

.solution-card:nth-child(2n) {
    background: linear-gradient(145deg, #e9f3ef, #dde9e4);
}

.solution-card-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.solution-card h3 {
    font-size: 1.08rem;
}

.solution-card p {
    color: #4f5c6d;
    line-height: 1.6;
    margin: 0 0 0.6rem;
}

.solution-mini-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.35rem;
}

.solution-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.solution-copy {
    background: #e8eff7;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    padding: 1.3rem;
}

.solution-media {
    min-height: 280px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    padding: 0.65rem;
    background: #e8eff7;
}

.solution-outcomes .solution-grid-2 {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: center;
}

.solution-outcomes .solution-media {
    min-height: 0;
    max-width: 420px;
    width: 100%;
    margin-inline-start: auto;
    padding: 0.55rem;
}

.solution-outcomes .solution-media .visual-image {
    max-height: 300px;
    height: auto;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .solution-outcomes .solution-media {
        max-width: min(100%, 360px);
        margin-inline: auto;
    }

    .solution-outcomes .solution-media .visual-image {
        max-height: 240px;
    }
}

.solution-list {
    margin: 0.7rem 0 0;
    padding-left: 1.2rem;
    color: #344559;
    line-height: 1.8;
}

.solution-showcase-inner {
    display: block;
}

.solution-showcase .slider-copy {
    max-width: 920px;
    margin: 0 auto;
}

.slider-copy h2 {
    margin: 0 auto 0.7rem;
}

.slider-feature-grid {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.slider-feature {
    border: 1px solid #dbe4ef;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    padding: 0.9rem;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
    outline: none;
}

.slider-feature:hover {
    transform: translateY(-4px);
    border-color: #bdd4ea;
    box-shadow: 0 14px 30px rgba(19, 44, 71, 0.14);
}

.slider-feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.45rem;
}

.slider-feature h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.slider-feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.site-footer {
    margin-top: 2.5rem;
    border-top: 1px solid #d9e2ee;
    background: linear-gradient(180deg, #dbe4ef, #d3dde9);
}

.footer-inner {
    padding: 1.6rem 0 1.2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
    gap: 1.2rem;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.05rem;
    color: #1b2d43;
    margin: 0;
}

.footer-tagline {
    margin: 0.45rem 0 0;
    color: #5d6a79;
    line-height: 1.55;
    max-width: 34ch;
}

.footer-block-title {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-gray);
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: #31465f;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #0b8d6b;
}

.footer-bottom {
    border-top: 1px solid #e2e9f2;
    padding: 0.85rem 0 1.1rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    color: #5f6b7a;
}

.footer-legal a {
    text-decoration: none;
    color: #475b72;
}

.footer-legal a:hover {
    color: #0b8d6b;
}

.footer-legal .footer-legal-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: inherit;
    cursor: pointer;
    text-decoration: none;
    color: #475b72;
}

.footer-legal .footer-legal-btn:hover {
    color: #0b8d6b;
}

.site-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.site-modal {
    position: relative;
    width: 100%;
    max-width: 36rem;
    max-height: min(85vh, 640px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.site-modal--wide {
    max-width: 28rem;
}

.site-modal-header {
    flex-shrink: 0;
    padding: 1.25rem 1.35rem 0.5rem;
    padding-right: 3rem;
}

.site-modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kromy-navy);
    letter-spacing: -0.02em;
}

.site-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.06);
    color: #475569;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-modal-close:hover {
    background: rgba(15, 23, 42, 0.1);
    color: #0f172a;
}

.site-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 1.35rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

.site-modal-prose p {
    margin: 0 0 0.85rem;
}

.site-modal-prose p:last-child {
    margin-bottom: 0;
}

.site-modal-prose h3 {
    margin: 1rem 0 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--kromy-navy);
}

.site-modal-prose h3:first-child {
    margin-top: 0;
}

.site-modal-prose a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-modal-prose a:hover {
    color: var(--primary-blue-dark);
}

.site-modal-footer {
    flex-shrink: 0;
    padding: 0 1.35rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.site-modal-footer--cookies {
    flex-direction: column;
    align-items: stretch;
}

.site-modal-footer .btn {
    min-height: 2.5rem;
}

.site-cookie-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.site-cookie-row:first-of-type {
    padding-top: 0.25rem;
}

.site-cookie-row:last-of-type {
    border-bottom: none;
}

.site-cookie-row-text strong {
    display: block;
    color: var(--kromy-navy);
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.site-cookie-row-text span {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
}

.site-cookie-switch {
    position: relative;
    width: 2.75rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.site-cookie-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.site-cookie-switch-slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.site-cookie-switch-slider::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(1.5rem - 4px);
    height: calc(1.5rem - 4px);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
    transition: transform 0.2s ease;
}

.site-cookie-switch input:checked + .site-cookie-switch-slider {
    background: #0b8d6b;
}

.site-cookie-switch input:checked + .site-cookie-switch-slider::after {
    transform: translateX(1.25rem);
}

.site-cookie-switch input:disabled + .site-cookie-switch-slider {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.85;
}

.site-cookie-switch input:focus-visible + .site-cookie-switch-slider {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.site-modal-cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.site-modal-cookie-actions .btn {
    width: 100%;
    justify-content: center;
}

.btn-cookie-ghost {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #334155;
}

.btn-cookie-ghost:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

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

@media (max-width: 900px) {
    .hero-dark-grid,
    .hero-mock-grid,
    .home-solution-grid,
    .home-flow-grid {
        grid-template-columns: 1fr;
    }

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

    .page-home .nav.is-open,
    .page-kromy .nav.is-open {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.65rem;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid rgba(139, 92, 246, 0.25);
    }

    .page-home .login-btn,
    .page-kromy .login-btn {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .hero-grid,
    .about-grid,
    .about-grid-2,
    .about-band-inner,
    .feature-grid,
    .home-roles,
    .service-grid-2,
    .catalog-grid,
    .solution-grid-2,
    .scenario-grid,
    .solution-grid-3,
    .pricing-grid,
    .contact-layout,
    .form-grid,
    .checks-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .header-inner {
        align-items: stretch;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.7rem 0;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.48rem;
    }

    .nav-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .nav {
        display: none;
        width: 100%;
        padding-top: 0.5rem;
        justify-content: flex-start;
    }

    .nav.is-open {
        display: flex;
    }

    .login-btn {
        margin-left: 0;
    }

    .login-btn::before {
        display: none;
    }

    .feature-item .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-item .feature-icon .feature-svg {
        width: 44px;
        height: 44px;
    }

    .catalog-icon {
        width: 52px;
        height: 52px;
    }

    .solution-mini-icon {
        width: 36px;
        height: 36px;
    }

    .about-columns .about-card-icon {
        width: 56px;
        height: 56px;
    }

    .about-columns .about-card-icon .feature-svg {
        width: 36px;
        height: 36px;
    }

}

@media (max-width: 560px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}
