:root {
    --bg: #ffffff;
    --bg-soft: #ede7e2;
    --surface: #ffffff;
    --surface-strong: #ede7e2;
    --text: #111111;
    --muted: #6f4a46;
    --line: rgba(164, 49, 42, 0.14);
    --brand: #a4312a;
    --brand-dark: #842720;
    --accent: #a4312a;
    --accent-soft: rgba(164, 49, 42, 0.08);
    --dark: #a4312a;
    --dark-soft: #842720;
    --dark-text: #ffffff;
    --success: #a4312a;
    --max: 1180px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow: 0 24px 60px rgba(164, 49, 42, 0.12);
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --service-access: #4b6482;
    --service-intercom: #6a5b7a;
    --service-lockers: #4f7468;
    --service-cameras: #8a7458;
    --service-alarms: #8b4c4c;
    --premier-silver: #b8bec9;
    --premier-gold: #c7a24a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(120, 120, 120, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
    line-height: 1.55;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}
small {
    display: inline-block;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--muted);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}
.narrow {
    width: min(calc(100% - 32px), 780px);
    margin: 0 auto;
}
.center { text-align: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(147, 10, 1, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(164, 49, 42, 0.08);
}
.site-header.is-landing {
    background: rgba(156, 31, 24, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    color: #ffffff;
}
.site-header.is-landing .brand { color: var(--dark-text); }
.brand-logo {
    display: block;
    width: 156px;
    height: auto;
}
.brand-copy {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.site-header.is-landing .brand-copy { color: rgba(238, 243, 246, 0.7); }
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nav-item {
    position: relative;
}
.nav-link-solutions {
    display: inline-flex;
    align-items: center;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 18px;
    min-width: 420px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(147, 10, 1, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.22);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown::before {
    content: "";
    position: absolute;
    inset: -14px 0 auto;
    height: 16px;
}
.nav-item-solutions:hover .nav-dropdown,
.nav-item-solutions:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-dropdown-group {
    display: grid;
    gap: 8px;
}
.nav-dropdown-title {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nav-dropdown a {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.55);
    text-underline-offset: 4px;
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.is-landing .nav-toggle {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
}
.service-theme .nav-dropdown {
    background: color-mix(in srgb, var(--service-accent) 72%, #2f3a4a);
}
.premier-theme .nav-dropdown {
    background: color-mix(in srgb, var(--premier-accent) 68%, #2f3a4a);
}
.nav a {
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
}
.site-header .nav .button {
    color: #ffffff;
    text-decoration: none;
}
.site-header.is-landing .nav a { color: var(--dark-text); }
.nav a.is-active,
.nav a:hover {
    color: #ffffff;
}
.site-header.is-landing .nav .button {
    color: #ffffff;
}
.site-header .nav a.is-active {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.55);
    text-underline-offset: 6px;
}
.site-header .button-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}
.site-header .button-outline:hover {
    color: #ffffff;
    background: rgba(92, 92, 92, 0.9);
    border-color: rgba(92, 92, 92, 0.9);
}
.site-header .button-dark {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}
.site-header .button-dark:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}
.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
}
.service-theme {
    --brand: var(--service-accent);
    --brand-dark: var(--service-accent-dark);
}
.service-theme .site-header {
    background: color-mix(in srgb, var(--service-accent) 72%, #2f3a4a);
    border-bottom-color: color-mix(in srgb, var(--service-accent) 32%, rgba(255, 255, 255, 0.12));
}
.service-theme .site-header .button-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}
.service-theme .site-header .button-outline:hover {
    color: #ffffff;
    background: color-mix(in srgb, var(--service-accent-dark) 88%, black);
    border-color: color-mix(in srgb, var(--service-accent-dark) 88%, black);
}
.service-access {
    --service-accent: var(--service-access);
    --service-accent-dark: #3d536d;
}
.service-intercom {
    --service-accent: var(--service-intercom);
    --service-accent-dark: #584b66;
}
.service-lockers {
    --service-accent: var(--service-lockers);
    --service-accent-dark: #425f56;
}
.service-cameras {
    --service-accent: var(--service-cameras);
    --service-accent-dark: #665f53;
}
.service-alarms {
    --service-accent: var(--service-alarms);
    --service-accent-dark: #684646;
}
.premier-theme {
    --brand: var(--premier-accent);
    --brand-dark: var(--premier-accent-dark);
}
.premier-theme .site-header {
    background: color-mix(in srgb, var(--premier-accent) 68%, #2f3a4a);
    border-bottom-color: color-mix(in srgb, var(--premier-accent) 28%, rgba(255, 255, 255, 0.12));
}
.premier-theme .site-header .button-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}
.premier-theme .site-header .button-outline:hover {
    color: #ffffff;
    background: color-mix(in srgb, var(--premier-accent-dark) 88%, black);
    border-color: color-mix(in srgb, var(--premier-accent-dark) 88%, black);
}
.premier-silver {
    --premier-accent: var(--premier-silver);
    --premier-accent-dark: #8f97a3;
}
.premier-gold {
    --premier-accent: var(--premier-gold);
    --premier-accent-dark: #a1833c;
}

.hero {
    padding: 44px 0 24px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 18px;
    align-items: stretch;
}
.hero-copy {
    position: relative;
    min-height: 464px;
    padding: 34px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(88, 88, 88, 0.34) 0%, rgba(78, 78, 78, 0.72) 55%, rgba(44, 44, 44, 0.86) 100%),
        url("../img/home3.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
    color: var(--dark-text);
}
.hero-copy > * {
    position: relative;
    z-index: 1;
}
.hero-copy .lead,
.hero-copy .pricing-strip span {
    color: var(--dark-text);
}
.hero-copy .pricing-strip span {
    background: rgba(255, 255, 255, 0.14);
}
.hero-copy .button-outline {
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.24);
}
.hero-copy .button-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--dark-text);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
}
.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}
.hero-copy .eyebrow,
.hero-aside .eyebrow {
    color: #e4e4e4;
}
.hero-copy .eyebrow::before,
.hero-aside .eyebrow::before {
    background: rgba(228, 228, 228, 0.95);
}
.hero-copy .eyebrow,
.hero-aside .eyebrow {
    text-shadow: 0 1px 8px rgba(17, 17, 17, 0.35);
}
.hero h1,
.subhero h1,
.landing-hero h1 {
    margin: 0 0 16px;
    max-width: 10ch;
    font-size: clamp(2.9rem, 6vw, 4.8rem);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.lead {
    margin: 0;
    max-width: 52ch;
    font-family: inherit;
    font-size: 1.04rem;
    color: var(--muted);
}
.hero-actions,
.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 22px;
}

.center .cta-row {
    justify-content: center;
}

.thanks-actions {
    width: 100%;
    justify-content: center;
}
.hero-points,
.metric-strip,
.logo-row,
.process-grid,
.cards-3,
.benefits-grid,
.sectors-grid,
.stats-grid,
.content-grid,
.comparison-grid,
.landing-proof,
.footer-grid {
    display: grid;
    gap: 18px;
}
.hero-points {
    grid-template-columns: repeat(4, 1fr);
}
.hero-point,
.stat-card,
.card,
.benefit,
.sector-card,
.content-box,
.feature-panel,
.proof-card,
.comparison-box {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(164, 49, 42, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.hero-point,
.stat-card,
.card,
.benefit,
.sector-card,
.content-box,
.proof-card,
.comparison-box {
    padding: 24px;
}
.hero-point {
    background: #4d4d4d;
    border-color: #4d4d4d;
    color: #ede7e2;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-point-comunidades {
    background:
        linear-gradient(rgba(77, 77, 77, 0.68), rgba(77, 77, 77, 0.72)),
        url("../img/hero-point-comunidades.jpg") center / cover no-repeat;
}
.hero-point-administracion {
    background:
        linear-gradient(rgba(77, 77, 77, 0.68), rgba(77, 77, 77, 0.72)),
        url("../img/hero-point-administracion.jpg") center / cover no-repeat;
}
.hero-point-inmobiliaria {
    background:
        linear-gradient(rgba(77, 77, 77, 0.68), rgba(77, 77, 77, 0.72)),
        url("../img/hero-point-inmobiliaria.jpg") center / cover no-repeat;
}
.hero-point-empresa {
    background:
        linear-gradient(rgba(77, 77, 77, 0.68), rgba(77, 77, 77, 0.72)),
        url("../img/hero-point-empresa.jpg") center / cover no-repeat;
}
.hero-point strong {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 8px;
}
.hero-point p {
    color: #ede7e2;
    font-size: 0.95rem;
    line-height: 1.45;
}
.sector-card-hero {
    background: #4d4d4d;
    border-color: #4d4d4d;
    color: #ede7e2;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sector-card-hero h3 {
    color: #ffffff;
}
.sector-card-hero p {
    color: #ede7e2;
}
.sector-card-comunidades {
    background:
        linear-gradient(rgba(77, 77, 77, 0.68), rgba(77, 77, 77, 0.72)),
        url("../img/hero-point-comunidades.jpg") center / cover no-repeat;
}
.sector-card-inmobiliarias {
    background:
        linear-gradient(rgba(77, 77, 77, 0.68), rgba(77, 77, 77, 0.72)),
        url("../img/hero-point-inmobiliaria.jpg") center / cover no-repeat;
}
.sector-card-empresas {
    background:
        linear-gradient(rgba(77, 77, 77, 0.68), rgba(77, 77, 77, 0.72)),
        url("../img/hero-point-empresa.jpg") center / cover no-repeat;
}
.hero-aside {
    background: linear-gradient(160deg, rgba(164, 49, 42, 0.96) 0%, rgba(132, 39, 32, 0.98) 100%);
    color: var(--dark-text);
    border-radius: 34px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.hero-aside::after {
    content: "";
    position: absolute;
    inset: auto -30px -50px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(150, 150, 150, 0.14);
}
.hero-aside h2,
.feature-panel h2,
.landing-proof h2,
.section-heading h2,
.content-box h3,
.card h3,
.benefit h3,
.sector-card h3,
.comparison-box h3 {
    margin: 0 0 10px;
}
.hero-aside a,
.hero-aside a:visited {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.75);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.hero-aside a:hover,
.hero-aside a:focus-visible {
    color: #ffffff;
    text-decoration-color: #ffffff;
}
.kicker-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}
.kicker-list > div {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.kicker-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.kicker-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.kicker-icon {
    width: 34px;
    height: 34px;
    display: block;
    background-color: #ede7e2;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.kicker-icon-wholeness {
    mask-image: url("../img/wholeness.svg");
    -webkit-mask-image: url("../img/wholeness.svg");
}
.kicker-icon-services {
    mask-image: url("../img/numbers-usage.svg");
    -webkit-mask-image: url("../img/numbers-usage.svg");
}
.kicker-icon-easy {
    mask-image: url("../img/easy.svg");
    -webkit-mask-image: url("../img/easy.svg");
}
.kicker-icon-up-to-date {
    mask-image: url("../img/always-up-to-date.svg");
    -webkit-mask-image: url("../img/always-up-to-date.svg");
}
.kicker-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}
.hero-aside-proof {
    margin-top: 22px;
    padding: 16px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}
.hero-aside-proof-icon {
    width: 126px;
    height: 126px;
    display: block;
    background-color: rgba(237, 231, 226, 0.92);
    mask-image: url("../img/gauge.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/gauge.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.hero-aside-proof strong {
    display: block;
    margin-bottom: 4px;
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 0.95;
    color: #ffffff;
}
.hero-aside-proof p {
    font-size: 0.92rem;
    color: rgba(237, 231, 226, 0.82);
}
.kicker-list p,
.hero-aside p,
.section-heading p,
.card p,
.benefit p,
.sector-card p,
.content-box p,
.comparison-box p,
.proof-card p {
    margin: 0;
    font-family: inherit;
    color: inherit;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}
.button:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}
.button-outline {
    background: transparent;
    color: var(--brand);
}
.button-outline:hover {
    color: #ffffff;
}
.button-dark {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
}
.button-dark:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.16);
}
.button-sm {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.88rem;
}

.pricing-strip,
.metric-strip,
.logo-row {
    font-family: inherit;
}
.pricing-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.pricing-strip span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(120, 120, 120, 0.14);
    color: #ffffff;
    font-weight: 700;
}
.subhero .pricing-strip span {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 18px;
    background: color-mix(in srgb, var(--brand) 10%, white);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    border: 1px solid color-mix(in srgb, var(--brand) 16%, rgba(120, 120, 120, 0.14));
}
.subhero .pricing-strip span small {
    font-size: 0.62em;
    color: var(--muted);
}

.section {
    padding: 78px 0;
}
.company-page .subhero {
    padding-bottom: 34px;
}
.company-page .section {
    padding: 54px 0;
}
.company-page .section-how-it-works {
    padding-bottom: 24px;
}
.company-page .section-heading {
    margin-bottom: 22px;
}
.company-page .content-grid,
.company-page .cards-3,
.company-page .process-grid-company {
    gap: 16px;
}

.document-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.document-list li {
    margin: 0;
}

.document-list a {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(164, 49, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.document-list a:hover,
.document-list a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(164, 49, 42, 0.2);
    box-shadow: 0 14px 28px rgba(164, 49, 42, 0.08);
}

.document-list span {
    font-weight: 700;
}

.document-list small {
    color: var(--muted);
}
.anchor-section {
    scroll-margin-top: 104px;
}
.section-hero-points {
    padding: 28px 0 42px;
}
.section-evidence-strip {
    padding: 28px 0 42px;
}
.section-cases {
    padding-top: 18px;
}
.section-muted {
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}
.section-dark {
    background: rgba(164, 49, 42, 0.92);
    color: var(--dark-text);
}
.service-theme .section-dark {
    background: color-mix(in srgb, var(--service-accent) 72%, #2f3a4a);
}
.premier-theme .section-dark {
    background: color-mix(in srgb, var(--premier-accent) 68%, #2f3a4a);
}
.landing-shell .section-dark {
    background: rgba(164, 49, 42, 0.92);
}
.section-dark .eyebrow {
    color: #f0f0f0;
}
.section-dark .eyebrow::before {
    background: rgba(240, 240, 240, 0.92);
}
.section-heading {
    max-width: 720px;
    margin-bottom: 28px;
}
.anchor-section .section-heading {
    max-width: none;
}
.section-wide-heading .section-heading {
    max-width: none;
}
.section-value-proposition {
    padding-top: 46px;
}
.section-solutions {
    padding-bottom: 36px;
}
.section-premier-intro {
    margin-top: 28px;
}
.section-wide-heading .benefit,
.section-wide-heading .stat-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    height: 100%;
}
.section-wide-heading .benefits-grid,
.section-wide-heading .stats-grid {
    grid-auto-rows: 1fr;
}
.section-wide-heading .benefit,
.section-wide-heading .stat-card {
    min-height: 220px;
}
.section-wide-heading .benefit > h3,
.section-wide-heading .stat-card > strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--text);
    font-family: var(--font-heading);
}
.section-wide-heading .stat-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--font-heading);
}
.section-wide-heading .stat-card > strong {
    font-size: 1rem;
    line-height: 1.35;
    color: var(--muted);
    font-family: inherit;
    font-weight: 600;
}
.section-wide-heading .stat-card > strong small {
    font-size: 0.72em;
    color: inherit;
}
.section-heading p {
    color: var(--muted);
}
.section-dark .section-heading p { color: rgba(238, 243, 246, 0.78); }
.section-dark .lead {
    color: rgba(255, 255, 255, 0.88);
}
.section-dark .check-list li {
    color: rgba(255, 255, 255, 0.9);
}
.section-dark .check-list li::before {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}
.service-theme .subhero {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--service-accent) 14%, white) 0%, rgba(255, 255, 255, 0) 100%);
}
.service-theme .subhero .lead {
    color: color-mix(in srgb, var(--service-accent) 44%, #3f4652);
}
.service-theme .section-heading p,
.service-theme .benefit p,
.service-theme .content-box p,
.service-theme .feature-panel p,
.service-theme .subhero-price-block strong small,
.service-theme .subhero-price-block p {
    color: color-mix(in srgb, var(--service-accent) 42%, #4a505a);
}
.service-theme .subhero-card {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--service-accent) 8%, white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-color: color-mix(in srgb, var(--service-accent) 18%, rgba(164, 49, 42, 0.12));
    box-shadow:
        0 18px 42px rgba(17, 17, 17, 0.08),
        0 0 0 6px color-mix(in srgb, var(--service-accent) 8%, transparent);
}
.service-theme .feature-panel {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--service-accent) 14%, white) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow:
        0 18px 42px rgba(17, 17, 17, 0.08),
        0 0 0 6px color-mix(in srgb, var(--service-accent) 8%, transparent);
}
.service-theme .content-box,
.service-theme .benefit {
    border-color: color-mix(in srgb, var(--service-accent) 16%, rgba(164, 49, 42, 0.08));
    box-shadow:
        0 18px 42px rgba(17, 17, 17, 0.08),
        0 0 0 6px color-mix(in srgb, var(--service-accent) 8%, transparent);
}
.service-theme .button-outline {
    color: var(--service-accent);
}
.service-theme .button-outline:hover {
    color: #ffffff;
}
.service-theme .button {
    background: color-mix(in srgb, var(--service-accent) 82%, #2f3a4a);
    border-color: color-mix(in srgb, var(--service-accent) 82%, #2f3a4a);
    color: #ffffff;
}
.service-theme .button:hover {
    background: color-mix(in srgb, var(--service-accent-dark) 88%, #24303d);
    border-color: color-mix(in srgb, var(--service-accent-dark) 88%, #24303d);
}
.premier-theme .subhero {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--premier-accent) 14%, white) 0%, rgba(255, 255, 255, 0) 100%);
}
.premier-theme .subhero .lead {
    color: color-mix(in srgb, var(--premier-accent) 44%, #3f4652);
}
.premier-theme .section-heading p,
.premier-theme .benefit p,
.premier-theme .content-box p,
.premier-theme .feature-panel p,
.premier-theme .subhero-price-block strong small,
.premier-theme .subhero-price-block p {
    color: color-mix(in srgb, var(--premier-accent) 42%, #4a505a);
}
.premier-theme .subhero-card {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--premier-accent) 8%, white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-color: color-mix(in srgb, var(--premier-accent) 18%, rgba(164, 49, 42, 0.12));
    box-shadow:
        0 18px 42px rgba(17, 17, 17, 0.08),
        0 0 0 6px color-mix(in srgb, var(--premier-accent) 8%, transparent);
}
.premier-theme .feature-panel {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--premier-accent) 14%, white) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow:
        0 18px 42px rgba(17, 17, 17, 0.08),
        0 0 0 6px color-mix(in srgb, var(--premier-accent) 8%, transparent);
}
.premier-theme .content-box,
.premier-theme .benefit {
    border-color: color-mix(in srgb, var(--premier-accent) 16%, rgba(164, 49, 42, 0.08));
    box-shadow:
        0 18px 42px rgba(17, 17, 17, 0.08),
        0 0 0 6px color-mix(in srgb, var(--premier-accent) 8%, transparent);
}
.premier-theme .button-outline {
    color: var(--premier-accent);
}
.premier-theme .button-outline:hover {
    color: #ffffff;
}
.premier-theme .button {
    background: var(--premier-accent);
    border-color: var(--premier-accent);
    color: #ffffff;
}
.premier-theme .button:hover {
    background: var(--premier-accent-dark);
    border-color: var(--premier-accent-dark);
}

.cards-3,
.benefits-grid,
.sectors-grid,
.stats-grid,
.process-grid,
.comparison-grid,
.landing-proof {
    grid-template-columns: repeat(3, 1fr);
}
.reveal-card {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        filter 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.process-grid-control-access {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.process-card {
    position: relative;
    padding: 28px 22px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid color-mix(in srgb, var(--brand) 12%, rgba(120, 120, 120, 0.14));
    border-radius: 28px;
    box-shadow:
        0 18px 42px rgba(17, 17, 17, 0.08),
        0 0 0 6px color-mix(in srgb, var(--brand) 6%, transparent);
}
.process-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    width: 26px;
    height: 26px;
    border-top: 4px solid color-mix(in srgb, var(--brand) 46%, white);
    border-right: 4px solid color-mix(in srgb, var(--brand) 46%, white);
    box-shadow: 2px -2px 16px color-mix(in srgb, var(--brand) 18%, transparent);
    transform: translateY(-50%) rotate(45deg);
}
.process-card-icon {
    display: block;
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
}
.process-card-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
}
.process-card-step::before,
.process-card-step::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(120, 120, 120, 0.2);
}
.process-card-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand) 14%, white);
    color: var(--brand);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9);
}
.process-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.2;
}
.process-card p {
    margin: 0;
    color: var(--muted);
}
.section-how-it-works {
    padding-bottom: 34px;
}
.service-theme .section-how-it-works .section-heading p,
.service-theme .section-how-it-works .process-card p {
    color: color-mix(in srgb, var(--service-accent) 42%, #4a505a);
}
.premier-theme .section-how-it-works .section-heading p,
.premier-theme .section-how-it-works .process-card p {
    color: color-mix(in srgb, var(--premier-accent) 42%, #4a505a);
}
.cards-premier {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards-3 a,
.comparison-box a {
    display: inline-flex;
    margin-top: 18px;
    font-family: inherit;
    color: var(--brand);
    font-weight: 700;
}
.card-link {
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card-link:focus-visible {
    outline: 2px solid rgba(120, 120, 120, 0.32);
    outline-offset: 3px;
}
.cards-essential .card {
    min-height: 220px;
    position: relative;
    overflow: hidden;
    border-color: color-mix(in srgb, var(--service-color, #8d8d8d) 14%, rgba(120, 120, 120, 0.16));
    isolation: isolate;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}
.cards-essential .card-link:hover,
.cards-essential .card-link:focus-visible {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--service-color, var(--brand)) 46%, white);
    box-shadow:
        0 24px 48px rgba(17, 17, 17, 0.14),
        0 0 0 8px color-mix(in srgb, var(--service-color, var(--brand)) 10%, transparent),
        0 0 28px color-mix(in srgb, var(--service-color, var(--brand)) 24%, transparent);
}
.cards-essential .card h3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cards-essential .card h3::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--service-color, var(--brand));
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--service-color, var(--brand)) 18%, white);
    flex: 0 0 12px;
}
.cards-essential .card a {
    color: var(--service-color, var(--brand));
}
.cards-essential .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(1) contrast(1.26) brightness(0.92);
    z-index: -2;
}
.cards-essential .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--service-color, var(--brand)) 22%, rgba(255, 255, 255, 0.84));
    z-index: -1;
}
.cards-premier .card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-color: color-mix(in srgb, var(--premier-color, #8d8d8d) 14%, rgba(120, 120, 120, 0.16));
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}
.cards-premier .card-link:hover,
.cards-premier .card-link:focus-visible {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--premier-color, var(--brand)) 46%, white);
    box-shadow:
        0 24px 48px rgba(17, 17, 17, 0.14),
        0 0 0 8px color-mix(in srgb, var(--premier-color, var(--brand)) 10%, transparent),
        0 0 28px color-mix(in srgb, var(--premier-color, var(--brand)) 24%, transparent);
}
.cards-premier .card h3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cards-premier .card h3::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--premier-color, var(--brand));
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--premier-color, var(--brand)) 18%, white);
    flex: 0 0 12px;
}
.cards-premier .card a {
    color: var(--premier-color, var(--brand));
}
.cards-premier .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(1) contrast(1.26) brightness(0.92);
    z-index: -2;
}
.cards-premier .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--premier-color, var(--brand)) 22%, rgba(255, 255, 255, 0.84));
    z-index: -1;
}
.cards-essential .card-acceso {
    background: transparent;
    --service-color: var(--service-access);
}
.cards-essential .card-citofonia {
    background: transparent;
    --service-color: var(--service-intercom);
}
.cards-essential .card-lockers {
    background: transparent;
    --service-color: var(--service-lockers);
}
.cards-essential .card-camaras {
    background: transparent;
    --service-color: var(--service-cameras);
}
.cards-essential .card-alarma {
    background: transparent;
    --service-color: var(--service-alarms);
}
.cards-essential .card-acceso::before {
    background-image: url("../img/card-acceso.jpg");
}
.cards-essential .card-citofonia::before {
    background-image: url("../img/card-citofonia.jpg");
}
.cards-essential .card-lockers::before {
    background-image: url("../img/card-lockers.jpg");
}
.cards-essential .card-camaras::before {
    background-image: url("../img/card-camaras.jpg");
}
.cards-essential .card-alarma::before {
    background-image: url("../img/card-alarma.jpg");
}
.cards-premier .card-conserje-nocturno {
    background: transparent;
    --premier-color: var(--premier-silver);
}
.cards-premier .card-conserje-247 {
    background: transparent;
    --premier-color: var(--premier-gold);
}
.cards-premier .card-conserje-nocturno::before {
    background-image: url("../img/card-conserje-nocturno.jpg");
}
.cards-premier .card-conserje-247::before {
    background-image: url("../img/card-conserje-247.jpg");
}
.cards-3 a:hover,
.comparison-box a:hover {
    text-decoration: underline;
}
.stats-grid {
    margin-top: 30px;
}
.evidence-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}
.evidence-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}
.evidence-icon {
    width: 84px;
    height: 84px;
    display: block;
    margin: 0 auto 16px;
    background-color: #6a6a6a;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.evidence-icon-gauge {
    mask-image: url("../img/numbers-gauge.svg");
    -webkit-mask-image: url("../img/numbers-gauge.svg");
}
.evidence-icon-usage {
    mask-image: url("../img/numbers-usage.svg");
    -webkit-mask-image: url("../img/numbers-usage.svg");
}
.evidence-icon-users {
    mask-image: url("../img/numbers-users.svg");
    -webkit-mask-image: url("../img/numbers-users.svg");
}
.cases-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.cases-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 26%);
    gap: 16px;
    overflow-x: auto;
    padding: 10px 2px 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.case-thumb {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(164, 49, 42, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(164, 49, 42, 0.06);
    cursor: pointer;
    text-align: left;
    scroll-snap-align: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.case-thumb:hover,
.case-thumb:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(164, 49, 42, 0.24);
    box-shadow: 0 20px 40px rgba(164, 49, 42, 0.1);
}

.case-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.case-thumb span {
    font-weight: 700;
    color: var(--text);
}

.cases-nav {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(164, 49, 42, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(164, 49, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cases-nav:hover,
.cases-nav:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(164, 49, 42, 0.24);
    box-shadow: 0 16px 34px rgba(164, 49, 42, 0.1);
}

.cases-nav span {
    width: 12px;
    height: 12px;
    display: block;
    border-top: 2px solid var(--brand);
    border-right: 2px solid var(--brand);
}

.cases-nav-prev span {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.cases-nav-next span {
    transform: rotate(45deg);
    margin-right: 4px;
}

.case-lightbox[hidden] {
    display: none;
}

.case-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.case-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.82);
    backdrop-filter: blur(8px);
}

.case-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), 1120px);
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 28px 70px rgba(17, 17, 17, 0.24);
}

.case-lightbox-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    color: var(--text);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.case-lightbox-figure {
    margin: 0;
    display: grid;
    gap: 12px;
}

.case-lightbox-figure img {
    width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    display: block;
    border-radius: 18px;
    background: #f3f0ee;
}

.case-lightbox-figure figcaption {
    font-weight: 700;
    color: var(--text);
    text-align: center;
}
.benefit-control-access .benefit-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    background-color: var(--service-accent);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.benefit-control-access > h3 {
    text-align: center;
}
.benefit-control-access > p,
.benefit-control-access ul,
.benefit-control-access li {
    text-align: left;
}
.benefit-icon-usuarios {
    mask-image: url("../img/control-acceso-usuarios.svg");
    -webkit-mask-image: url("../img/control-acceso-usuarios.svg");
}
.benefit-icon-administracion {
    mask-image: url("../img/control-acceso-administracion.svg");
    -webkit-mask-image: url("../img/control-acceso-administracion.svg");
}
.benefit-icon-comite {
    mask-image: url("../img/control-acceso-comite.svg");
    -webkit-mask-image: url("../img/control-acceso-comite.svg");
}
.evidence-card small {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.evidence-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--accent);
    font-family: var(--font-heading);
}
.evidence-card p {
    color: var(--muted);
    text-align: center;
}
.stat-card span,
.proof-card span {
    display: block;
    font-family: inherit;
    color: var(--muted);
    margin-bottom: 8px;
}
.stat-card > strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--accent);
}

.content-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}
.feature-panel {
    padding: 28px;
    background: linear-gradient(180deg, rgba(190, 190, 190, 0.12) 0%, rgba(255, 255, 255, 0.96) 100%);
}
.feature-panel ul,
.check-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.feature-panel li,
.check-list li {
    position: relative;
    padding-left: 28px;
    font-family: inherit;
}
.feature-panel li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(170, 170, 170, 0.16);
}
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.9);
    border: 1px solid rgba(19, 168, 82, 0.42);
    box-shadow:
        0 18px 40px rgba(17, 17, 17, 0.18),
        0 0 0 10px rgba(37, 211, 102, 0.14),
        0 0 28px rgba(37, 211, 102, 0.24);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.floating-whatsapp:hover {
    background: rgba(37, 211, 102, 1);
    transform: translateY(-2px);
    box-shadow:
        0 20px 44px rgba(17, 17, 17, 0.22),
        0 0 0 12px rgba(37, 211, 102, 0.18),
        0 0 34px rgba(37, 211, 102, 0.3);
}
.floating-whatsapp-icon {
    width: 34px;
    height: 34px;
    display: block;
    background-color: rgba(255, 255, 255, 0.94);
    mask-image: url("./../img/whatsapp.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("./../img/whatsapp.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.subhero,
.landing-hero {
    padding: 72px 0 42px;
}
.subhero-grid,
.landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}
.subhero-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.subhero-card-image {
    min-height: 380px;
    padding: 0;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.subhero-card-company {
    min-height: 380px;
    padding: 0;
    overflow: hidden;
    background-image: url("../img/vitrubio-pop.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.service-theme .subhero-card-image.subhero-card-control-access {
    background-image: url("../img/hero-aside-control-acceso.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.subhero-grid-control-access {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-grid-citofonia {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-grid-lockers {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-grid-camaras {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-grid-alarmas {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-grid-premier-nocturno {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-grid-premier-247 {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-grid-gracias {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}
.subhero-copy-control-access {
    max-width: 640px;
}
.subhero-copy-citofonia {
    max-width: 640px;
}
.subhero-copy-lockers {
    max-width: 640px;
}
.subhero-copy-camaras {
    max-width: 640px;
}
.subhero-copy-alarmas {
    max-width: 640px;
}
.subhero-copy-premier-nocturno {
    max-width: 640px;
}
.subhero-copy-premier-247 {
    max-width: 640px;
}
.subhero-copy-control-access h1 {
    max-width: 11ch;
}
.subhero-copy-citofonia h1 {
    max-width: 11ch;
}
.subhero-copy-lockers h1 {
    max-width: 12ch;
}
.subhero-copy-camaras h1 {
    max-width: 11ch;
}
.subhero-copy-alarmas h1 {
    max-width: 11ch;
}
.subhero-copy-premier-nocturno h1 {
    max-width: 11ch;
}
.subhero-copy-premier-247 h1 {
    max-width: 11ch;
}
.subhero-check-list {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.subhero-check-list li {
    position: relative;
    padding-left: 38px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}
.subhero-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0 32%, transparent 33%),
        color-mix(in srgb, var(--brand) 18%, white);
    border: 1px solid color-mix(in srgb, var(--brand) 28%, white);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent);
}
.subhero-check-list li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(-45deg);
}
.subhero-price-block {
    margin-top: 24px;
}
.subhero-price-block strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 1.05;
    color: var(--text);
}
.subhero-price-block strong small {
    font-size: 0.62em;
    color: var(--muted);
}
.subhero-price-block p {
    margin: 8px 0 0;
    color: color-mix(in srgb, var(--service-accent) 42%, #4a505a);
    font-size: 0.94rem;
}
.subhero-copy-control-access .cta-row {
    margin-top: 22px;
    margin-bottom: 0;
}
.subhero-copy-citofonia .cta-row {
    margin-top: 22px;
    margin-bottom: 0;
}
.subhero-copy-lockers .cta-row {
    margin-top: 22px;
    margin-bottom: 0;
}
.subhero-copy-camaras .cta-row {
    margin-top: 22px;
    margin-bottom: 0;
}
.subhero-copy-alarmas .cta-row {
    margin-top: 22px;
    margin-bottom: 0;
}
.subhero-copy-premier-nocturno .cta-row {
    margin-top: 22px;
    margin-bottom: 0;
}
.subhero-copy-premier-247 .cta-row {
    margin-top: 22px;
    margin-bottom: 0;
}
.service-theme .subhero-card-image.subhero-card-citofonia {
    background-image: url("../img/hero-aside-citofonia.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.process-grid-citofonia {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.process-grid-lockers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.process-grid-camaras {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.process-grid-alarmas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}
.benefit-citofonia .benefit-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    background-color: var(--service-accent);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.benefit-citofonia > h3 {
    text-align: center;
}
.benefit-citofonia > p {
    text-align: left;
}
.benefit-icon-citofonia-visitas {
    mask-image: url("../img/citofonia-benefits-visitas.svg");
    -webkit-mask-image: url("../img/citofonia-benefits-visitas.svg");
}
.benefit-icon-citofonia-recepcion {
    mask-image: url("../img/citofonia-benefits-recepcion.svg");
    -webkit-mask-image: url("../img/citofonia-benefits-recepcion.svg");
}
.benefit-icon-citofonia-comunidad {
    mask-image: url("../img/citofonia-benefits-comunidad.svg");
    -webkit-mask-image: url("../img/citofonia-benefits-comunidad.svg");
}
.service-theme .subhero-card-image.subhero-card-lockers {
    background-image: url("../img/hero-aside-lockers.jpg");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.benefit-lockers .benefit-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    background-color: var(--service-accent);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.benefit-lockers > h3 {
    text-align: center;
}
.benefit-lockers > p {
    text-align: left;
}
.benefit-icon-lockers-recepcion {
    mask-image: url("../img/lockers-delivery.svg");
    -webkit-mask-image: url("../img/lockers-delivery.svg");
}
.benefit-icon-lockers-usuarios {
    mask-image: url("../img/lockers-residente.svg");
    -webkit-mask-image: url("../img/lockers-residente.svg");
}
.benefit-icon-lockers-administracion {
    mask-image: url("../img/lockers-administracion.svg");
    -webkit-mask-image: url("../img/lockers-administracion.svg");
}
.service-theme .subhero-card-image.subhero-card-camaras {
    background-image: url("../img/card-camaras.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(to left, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.subhero-grid-camaras .subhero-card-camaras {
    order: 1;
}
.subhero-grid-camaras .subhero-copy-camaras {
    order: 2;
}
.benefit-camaras .benefit-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    background-color: var(--service-accent);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.benefit-camaras > h3 {
    text-align: center;
}
.benefit-camaras > p {
    text-align: left;
}
.benefit-icon-camaras-perimetro {
    mask-image: url("../img/camaras-perimetro.svg");
    -webkit-mask-image: url("../img/camaras-perimetro.svg");
}
.benefit-icon-camaras-registro {
    mask-image: url("../img/camaras-registro.svg");
    -webkit-mask-image: url("../img/camaras-registro.svg");
}
.benefit-icon-camaras-operacion {
    mask-image: url("../img/camaras-operacion.svg");
    -webkit-mask-image: url("../img/camaras-operacion.svg");
}
.service-theme .subhero-card-image.subhero-card-alarmas {
    background-image: url("../img/hero-aside-alarma.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.premier-theme .subhero-card-image.subhero-card-premier-nocturno {
    background-image: url("../img/card-conserje-nocturno.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.premier-theme .subhero-card-image.subhero-card-premier-247 {
    background-image: url("../img/card-conserje-247.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.subhero-card-image.subhero-card-gracias {
    background-image: url("../img/gracias.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}

.landing-shell .subhero-card-image.subhero-card-landing-control-access {
    background-image: url("../img/landing-face-recon.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}

.landing-shell .subhero-card-image.subhero-card-landing-citofonia {
    background-image: url("../img/landing-citofonia.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}

.landing-shell .subhero-card-image.subhero-card-landing-lockers {
    background-image: url("../img/landing-lockers.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
}
.benefit-alarmas .benefit-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    background-color: var(--service-accent);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.benefit-alarmas > h3 {
    text-align: center;
}
.benefit-alarmas > p {
    text-align: left;
}
.benefit-icon-alarmas-alerta {
    mask-image: url("../img/alarmas-alerta.svg");
    -webkit-mask-image: url("../img/alarmas-alerta.svg");
}
.benefit-icon-alarmas-coordinacion {
    mask-image: url("../img/alarmas-coordinacion.svg");
    -webkit-mask-image: url("../img/alarmas-coordinacion.svg");
}
.benefit-icon-alarmas-integracion {
    mask-image: url("../img/alarmas-integracion.svg");
    -webkit-mask-image: url("../img/alarmas-integracion.svg");
}
.process-grid-premier-nocturno {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}
.process-grid-premier-247 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}
.process-grid-company {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.benefit-premier-nocturno .benefit-icon,
.benefit-premier-247 .benefit-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    background-color: var(--premier-accent);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.benefit-premier-nocturno > h3,
.benefit-premier-247 > h3 {
    text-align: center;
}
.benefit-premier-nocturno > p,
.benefit-premier-247 > p {
    text-align: left;
}
.benefit-icon-premier-nocturno-continuidad {
    mask-image: url("../img/conserje-continuidad.svg");
    -webkit-mask-image: url("../img/conserje-continuidad.svg");
}
.benefit-icon-premier-nocturno-respaldo {
    mask-image: url("../img/conserje-respaldo.svg");
    -webkit-mask-image: url("../img/conserje-respaldo.svg");
}
.benefit-icon-premier-nocturno-servicio {
    mask-image: url("../img/conserje-servicio.svg");
    -webkit-mask-image: url("../img/conserje-servicio.svg");
}
.benefit-icon-premier-247-continuidad {
    mask-image: url("../img/conserje-continuidad.svg");
    -webkit-mask-image: url("../img/conserje-continuidad.svg");
}
.benefit-icon-premier-247-valor {
    mask-image: url("../img/conserje-valor-percibido.svg");
    -webkit-mask-image: url("../img/conserje-valor-percibido.svg");
}
.benefit-icon-premier-247-diferenciacion {
    mask-image: url("../img/conserje-diferenciacion.svg");
    -webkit-mask-image: url("../img/conserje-diferenciacion.svg");
}

.landing-shell {
    background:
        radial-gradient(circle at top right, rgba(150, 150, 150, 0.14), transparent 30%),
        linear-gradient(180deg, #555555 0%, #2b2b2b 100%);
    color: var(--dark-text);
}
.landing-shell main {
    background: transparent;
}
.landing-hero .lead,
.landing-shell .section-heading p,
.landing-shell .card p,
.landing-shell .benefit p,
.landing-shell .content-box p,
.landing-shell .proof-card p {
    color: rgba(238, 243, 246, 0.82);
}
.landing-shell .hero-point,
.landing-shell .stat-card,
.landing-shell .card,
.landing-shell .benefit,
.landing-shell .sector-card,
.landing-shell .content-box,
.landing-shell .proof-card,
.landing-shell .comparison-box,
.landing-shell .subhero-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--dark-text);
    box-shadow: none;
}
.landing-shell .button-outline {
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.16);
}
.landing-shell .button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
}
.landing-shell .eyebrow,
.landing-shell .cards-3 a,
.landing-shell .comparison-box a {
    color: #dcdcdc;
}
.landing-shell .pricing-strip span {
    background: rgba(140, 140, 140, 0.16);
    color: #ffffff;
}

.landing-kicker-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.94rem;
    font-weight: 700;
}

.landing-kicker-note::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.landing-shell .benefit ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: rgba(238, 243, 246, 0.82);
}

.landing-shell .benefit li + li {
    margin-top: 6px;
}

.landing-shell .benefit-landing h3 {
    text-align: left;
}

.landing-shell .benefit-landing > p {
    text-align: left;
}

.landing-shell .benefit-landing .benefit-icon {
    display: block;
    width: 152px;
    height: 152px;
    margin: 0 auto 18px;
    background-color: rgba(255, 255, 255, 0.92);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.landing-shell .benefit-landing .benefit-icon-landing-control-access-usuarios {
    mask-image: url("../img/control-acceso-usuarios.svg");
    -webkit-mask-image: url("../img/control-acceso-usuarios.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-control-access-administracion {
    mask-image: url("../img/control-acceso-administracion.svg");
    -webkit-mask-image: url("../img/control-acceso-administracion.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-control-access-registro {
    mask-image: url("../img/control-acceso-registro.svg");
    -webkit-mask-image: url("../img/control-acceso-registro.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-citofonia-visitas {
    mask-image: url("../img/citofonia-benefits-visitas.svg");
    -webkit-mask-image: url("../img/citofonia-benefits-visitas.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-citofonia-recepcion {
    mask-image: url("../img/citofonia-benefits-recepcion.svg");
    -webkit-mask-image: url("../img/citofonia-benefits-recepcion.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-citofonia-comunidad {
    mask-image: url("../img/citofonia-benefits-comunidad.svg");
    -webkit-mask-image: url("../img/citofonia-benefits-comunidad.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-lockers-recepcion {
    mask-image: url("../img/lockers-delivery.svg");
    -webkit-mask-image: url("../img/lockers-delivery.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-lockers-usuarios {
    mask-image: url("../img/lockers-residente.svg");
    -webkit-mask-image: url("../img/lockers-residente.svg");
}

.landing-shell .benefit-landing .benefit-icon-landing-lockers-administracion {
    mask-image: url("../img/lockers-administracion.svg");
    -webkit-mask-image: url("../img/lockers-administracion.svg");
}
.landing-proof {
    margin-top: 26px;
}

.landing-hero + .section {
    padding-top: 28px;
}

.landing-section-resolves {
    padding-top: 18px;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}
.lead-form {
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    border: 1px solid rgba(164, 49, 42, 0.1);
    box-shadow: var(--shadow);
}
.lead-form label,
.lead-form legend {
    display: block;
    margin-bottom: 8px;
    font-family: inherit;
    font-weight: 700;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(164, 49, 42, 0.18);
    background: #fff;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: 2px solid rgba(150, 150, 150, 0.22);
    border-color: var(--brand);
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.checkbox-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin: 8px 0 16px;
}
.service-interest-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}
.service-interest-accordion {
    margin-top: 8px;
}
.service-interest-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(164, 49, 42, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.service-interest-toggle:hover,
.service-interest-toggle:focus-visible {
    border-color: rgba(164, 49, 42, 0.22);
    box-shadow: 0 0 0 6px rgba(164, 49, 42, 0.08);
}
.service-interest-toggle-icon {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--brand);
    transition: transform 0.2s ease;
}
.service-interest-accordion.is-open .service-interest-toggle-icon {
    transform: rotate(45deg);
}
.service-interest-panel {
    margin-top: 10px;
}
.service-interest-select-wrap {
    padding: 14px 16px 16px;
    border-radius: 18px;
    background: rgba(164, 49, 42, 0.04);
    border: 1px solid rgba(164, 49, 42, 0.08);
}
.service-interest-select-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-interest-group + .service-interest-group {
    margin-top: 14px;
}
.service-interest-group .eyebrow {
    margin-bottom: 10px;
}
.service-interest-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-interest-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(164, 49, 42, 0.12);
    color: var(--text);
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.service-interest-option input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--brand);
}
.service-interest-option span {
    display: inline-block;
}
.service-interest-option:has(input:checked) {
    background: rgba(164, 49, 42, 0.14);
    border-color: rgba(164, 49, 42, 0.34);
    box-shadow: 0 0 0 6px rgba(164, 49, 42, 0.08);
}
.service-interest-option:has(input:checked) span {
    color: var(--text);
}
.service-interest-option:has(input:focus-visible) {
    border-color: rgba(164, 49, 42, 0.34);
    box-shadow: 0 0 0 6px rgba(164, 49, 42, 0.08);
}
.service-interest-help {
    margin: 10px 0 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.74);
}
.checkbox-row label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-weight: 500;
}
.checkbox-row-services label {
    min-height: 100%;
    margin: 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(164, 49, 42, 0.1);
    line-height: 1.35;
}
.checkbox-row input {
    width: auto;
    margin: 2px 0 0;
}
.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.form-captcha {
    margin-top: 18px;
}
.form-status {
    min-height: 24px;
    font-family: inherit;
    color: #ffd2c5;
}

.site-footer {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(164, 49, 42, 0.08);
}
.landing-shell .site-footer {
    background: rgba(255, 255, 255, 0.04);
    border-top-color: rgba(255, 255, 255, 0.08);
    color: var(--dark-text);
}
.footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
}
.footer-brand {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}
.footer-brand-copy {
    align-self: start;
}
.footer-column {
    align-self: start;
}
.footer-brand-copy p {
    margin-top: 0;
}
.footer-column p:first-child {
    margin-top: 0;
}
.footer-column p {
    margin: 0 0 8px;
    line-height: 1.3;
}
.footer-column p strong {
    display: inline-block;
    margin-bottom: 2px;
}
.footer-contact-item a {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
}
.footer-contact-icon {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.footer-contact-icon-email {
    mask-image: url("../img/contact-email.svg");
    -webkit-mask-image: url("../img/contact-email.svg");
}
.footer-contact-icon-whatsapp {
    mask-image: url("../img/whatsapp.svg");
    -webkit-mask-image: url("../img/whatsapp.svg");
}
.footer-contact-icon-evaluacion {
    mask-image: url("../img/contact-evaluacion.svg");
    -webkit-mask-image: url("../img/contact-evaluacion.svg");
}
.footer-contact-icon-legal {
    mask-image: url("../img/contact-legal.svg");
    -webkit-mask-image: url("../img/contact-legal.svg");
}
.footer-logo {
    display: block;
    width: 78px;
    height: auto;
}
.footer-support-logo {
    display: block;
    width: 116px;
    height: auto;
    margin-top: 14px;
    border-radius: 8px;
}
.footer-grid p,
.footer-grid a {
    font-family: inherit;
    color: #2a2a2a;
}
.footer-grid a {
    transition: color 0.2s ease, text-shadow 0.2s ease, text-decoration-color 0.2s ease;
}
.footer-grid a:hover {
    color: #111111;
    text-shadow: 0 0 14px rgba(164, 49, 42, 0.22);
    text-decoration: underline;
    text-decoration-color: rgba(164, 49, 42, 0.46);
    text-underline-offset: 4px;
}
.landing-shell .footer-grid p,
.landing-shell .footer-grid a {
    color: rgba(238, 243, 246, 0.74);
}
.landing-shell .footer-grid a:hover {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 4px;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 980px) {
    .hero-grid,
    .subhero-grid,
    .landing-hero-grid,
    .cards-3,
    .cases-carousel,
    .benefits-grid,
    .sectors-grid,
    .stats-grid,
    .process-grid,
    .comparison-grid,
    .landing-proof,
    .form-layout,
    .content-grid,
    .footer-grid,
    .hero-points,
    .evidence-strip {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 30px;
    }

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

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

    .cases-carousel {
        grid-template-columns: 1fr;
    }

    .cases-nav {
        display: none;
    }

    .cases-track {
        grid-auto-columns: minmax(240px, 72%);
    }

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

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

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

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

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

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

    .process-card:nth-child(2)::after {
        display: none;
    }

    .service-theme .subhero-card-image.subhero-card-control-access {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .service-theme .subhero-card-image.subhero-card-citofonia {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .service-theme .subhero-card-image.subhero-card-lockers {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .service-theme .subhero-card-image.subhero-card-camaras {
        mask-image: linear-gradient(to top, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .service-theme .subhero-card-image.subhero-card-alarmas {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .premier-theme .subhero-card-image.subhero-card-premier-nocturno,
    .premier-theme .subhero-card-image.subhero-card-premier-247 {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .subhero-card-company {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .subhero-card-image.subhero-card-gracias {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .landing-shell .subhero-card-image.subhero-card-landing-control-access {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }

    .landing-shell .subhero-card-image.subhero-card-landing-citofonia,
    .landing-shell .subhero-card-image.subhero-card-landing-lockers {
        mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.45) 26%, #000 42%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        background-position: center top;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        padding: 14px 0;
        position: relative;
        flex-direction: row;
        align-items: center;
    }

    .brand-logo {
        width: 88px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        flex: 0 0 auto;
    }

    .nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(147, 10, 1, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 42px rgba(17, 17, 17, 0.2);
        backdrop-filter: blur(16px);
    }

    .site-header.is-landing .nav {
        background: rgba(156, 31, 24, 0.97);
    }

    .service-theme .nav {
        background: color-mix(in srgb, var(--service-accent) 72%, #2f3a4a);
    }

    .premier-theme .nav {
        background: color-mix(in srgb, var(--premier-accent) 68%, #2f3a4a);
    }

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

    .nav a,
    .site-header.is-landing .nav a {
        width: 100%;
        color: #ffffff;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link-solutions {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        width: 100%;
        margin-top: 10px;
        padding: 12px 14px;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-dropdown a {
        width: 100%;
    }

    .nav a.button {
        justify-content: center;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero,
    .section,
    .subhero,
    .landing-hero {
        padding-top: 58px;
        padding-bottom: 42px;
    }

    .hero h1,
    .subhero h1,
    .landing-hero h1 {
        font-size: clamp(2.2rem, 13vw, 3.6rem);
    }

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

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

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

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

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

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

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

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

    .process-card:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -18px;
        width: 20px;
        height: 20px;
        border-top: 4px solid color-mix(in srgb, var(--brand) 46%, white);
        border-right: 4px solid color-mix(in srgb, var(--brand) 46%, white);
        box-shadow: 2px -2px 16px color-mix(in srgb, var(--brand) 18%, transparent);
        transform: translateX(50%) rotate(135deg);
    }
}

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

    .hero-point,
    .card,
    .benefit,
    .sector-card,
    .content-box,
    .proof-card,
    .comparison-box,
    .lead-form,
    .hero-aside,
    .subhero-card {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-card {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}
