:root {
    --blue: #0082dc;
    --blue-dark: #0067ad;
    --gray: #555555;
    --ink: #1d2730;
    --muted: #66727f;
    --line: #dfe7ee;
    --soft: #f4f8fb;
    --white: #ffffff;
    --red: #d90000;
    --shadow: 0 18px 50px rgba(20, 45, 70, 0.12);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 850px; }

.topbar { background: var(--ink); color: #fff; font-size: 14px; }
.topbar__inner { display: flex; gap: 22px; justify-content: flex-end; align-items: center; min-height: 38px; }
.topbar a { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand img { width: 210px; display: block; }
.main-nav ul { display: flex; gap: 4px; align-items: center; margin: 0; padding: 0; list-style: none; }
.main-nav li { position: relative; }
.main-nav .has-menu:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}
.main-nav a { display: block; padding: 12px 13px; color: var(--ink); font-weight: 700; font-size: 15px; }
.main-nav a.is-active, .main-nav a:hover { color: var(--blue); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; }

.mega-menu {
    position: absolute;
    left: 0;
    right: auto;
    top: calc(100% + 12px);
    min-width: 760px;
    width: max-content;
    max-width: calc(100vw - 40px);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.mega-menu--compact { min-width: 360px; grid-template-columns: 1fr; }
.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu {
    display: grid;
}
.mega-menu strong { display: block; margin-bottom: 8px; color: var(--gray); }
.mega-menu a { padding: 7px 0; font-weight: 500; font-size: 14px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
    font-weight: 800;
    cursor: pointer;
}
.btn:hover { background: var(--blue-dark); color: #fff; }
.btn--ghost { background: #fff; color: var(--blue); }
.btn--ghost:hover { background: var(--soft); color: var(--blue-dark); }
.btn--white { background: #fff; color: var(--blue); border-color: #fff; }
.btn--small { min-height: 38px; padding: 8px 14px !important; color: #fff !important; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 54px;
    background:
        radial-gradient(circle at 72% 22%, rgba(0, 130, 220, 0.18), transparent 28%),
        radial-gradient(circle at 18% 18%, rgba(0, 130, 220, 0.10), transparent 24%),
        linear-gradient(135deg, #f7fbff 0%, #eef6fc 48%, #ffffff 100%);
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 130, 220, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 130, 220, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .86;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-grid,
.hero .container { position: relative; z-index: 1; }
.hero h1, .page-hero h1 { margin: 0 0 18px; font-size: clamp(36px, 5vw, 62px); line-height: 1.05; letter-spacing: 0; }
.hero p, .page-hero p { font-size: 19px; color: var(--gray); margin: 0 0 26px; }
.eyebrow { display: inline-block; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; margin-bottom: 12px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-panel { display: grid; gap: 16px; }
.hero-visual { align-self: stretch; }
.hero-image-card {
    position: relative;
    overflow: hidden;
    min-height: 315px;
    border: 1px solid rgba(0, 130, 220, 0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(0, 70, 125, 0.16);
}
.hero-image-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,130,220,.10));
    pointer-events: none;
}
.hero-image-card img {
    width: 100%;
    height: 100%;
    min-height: 315px;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
}
.signal-card { padding: 26px; border: 1px solid var(--line); background: rgba(255,255,255,.92); box-shadow: var(--shadow); border-radius: 8px; backdrop-filter: blur(10px); }
.signal-card strong { display: block; font-size: 28px; line-height: 1.1; margin-bottom: 8px; }
.signal-card span, .signal-stack span { color: var(--gray); }
.signal-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.signal-stack div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(18px) scale(.98);
    animation: signalCardIn .65s ease forwards;
}
.signal-stack div:nth-child(1) { animation-delay: .18s; }
.signal-stack div:nth-child(2) { animation-delay: .34s; }
.signal-stack div:nth-child(3) { animation-delay: .50s; }
.signal-stack b { display: block; color: var(--blue); margin-bottom: 4px; }

@keyframes signalCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .signal-stack div {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.media-placeholder, .placeholder-note {
    border: 2px dashed var(--red);
    color: var(--red);
    background: #fff5f5;
    border-radius: 8px;
}
.media-placeholder { min-height: 250px; display: grid; place-items: center; padding: 20px; font-weight: 800; text-align: center; }
.placeholder-note { padding: 12px; font-weight: 800; margin: 12px 0; }

.section { padding: 72px 0; }
.section--soft { background: var(--soft); }
.section--cta {
    position: relative;
    overflow: hidden;
    padding-top: 112px;
    background:
        linear-gradient(135deg, rgba(0, 103, 173, .96), rgba(0, 130, 220, 1) 52%, rgba(0, 103, 173, .92)),
        var(--blue);
    color: #fff;
}
.section--cta:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 78px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 38%, 78% 62%, 52% 34%, 25% 68%, 0 42%);
    pointer-events: none;
}
.section--cta:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(135deg, rgba(255,255,255,.22) 0 1px, transparent 1px 34px),
        linear-gradient(45deg, rgba(255,255,255,.12) 0 1px, transparent 1px 42px);
    background-size: 72px 72px;
    pointer-events: none;
}
.split-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: end; margin-bottom: 34px; }
.split-heading h2, .process h2, .two-col h2 { margin: 0; font-size: 38px; line-height: 1.12; }
.split-heading p { margin: 0; color: var(--gray); font-size: 18px; }

.service-grid, .cards-three, .ai-grid, .software-grid, .blog-grid { display: grid; gap: 20px; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .mini-card, .ai-card, .software-card, .post-card, .side-box, .contact-form, .contact-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
}
.service-card { min-height: 290px; }
.service-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(0, 130, 220, 0.10);
    color: var(--blue);
}
.service-icon svg {
    width: 24px;
    height: 24px;
}
.service-icon--white {
    background: rgba(255,255,255,.16);
    color: #fff;
}
.service-card h3, .mini-card h3, .ai-card h2, .software-card h2, .post-card h2 { margin-top: 0; line-height: 1.2; }
.service-card p, .mini-card p, .ai-card p, .software-card p, .post-card p { color: var(--gray); }
.service-card ul { padding-left: 18px; margin-bottom: 0; }
.service-card--blue { background: var(--blue); color: #fff; }
.service-card--blue p, .service-card--blue a { color: #fff; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; }
.process-intro p { color: var(--gray); }
.steps { display: grid; gap: 14px; }
.steps article { display: grid; grid-template-columns: 54px 1fr; gap: 0 16px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.steps article span { grid-row: span 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; }
.steps h3, .steps p { margin: 0; }
.steps p { color: var(--gray); }

.two-col, .detail-hero, .content-layout, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.product-list { display: grid; gap: 12px; }
.product-list a { display: block; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.product-list strong { display: block; color: var(--ink); margin-bottom: 5px; }
.product-list span { color: var(--gray); }
.cta { position: relative; z-index: 1; text-align: center; max-width: 820px; }
.cta h2 { margin: 0 0 12px; font-size: 40px; line-height: 1.1; }
.cta p { margin: 0 0 24px; font-size: 18px; color: rgba(255,255,255,.9); }

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 74px;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(0, 82, 140, .98) 0%, rgba(0, 130, 220, .92) 48%, rgba(0, 130, 220, .70) 100%),
        url("../images/hero-digital-artificium.webp") center right / cover no-repeat;
}
.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(255,255,255,.18), transparent 26%),
        linear-gradient(90deg, rgba(0, 40, 72, .28), transparent 68%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow, .page-hero p { color: #fff; }
.page-hero p { max-width: 760px; }
.page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    pointer-events: none;
    mix-blend-mode: screen;
}
.page-hero--services:after {
    background-image:
        linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px),
        radial-gradient(circle at 82% 32%, rgba(255,255,255,.28) 0 2px, transparent 3px);
    background-size: 42px 42px, 42px 42px, 96px 96px;
}
.page-hero--services {
    background:
        linear-gradient(105deg, rgba(0, 82, 140, .98) 0%, rgba(0, 130, 220, .90) 46%, rgba(0, 130, 220, .58) 100%),
        url("../images/hero-servicios.svg") center right / cover no-repeat;
}
.page-hero--software:after {
    background-image:
        linear-gradient(135deg, rgba(255,255,255,.20) 0 12px, transparent 12px 28px),
        radial-gradient(circle at 74% 40%, rgba(255,255,255,.28) 0 2px, transparent 3px);
    background-size: 74px 74px, 68px 68px;
}
.page-hero--software {
    background:
        linear-gradient(105deg, rgba(0, 82, 140, .98) 0%, rgba(0, 130, 220, .90) 46%, rgba(0, 130, 220, .58) 100%),
        url("../images/hero-software.svg") center right / cover no-repeat;
}
.page-hero--blog:after {
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.22) 0 1px, transparent 1px 19px),
        linear-gradient(90deg, transparent 0 62%, rgba(255,255,255,.20) 62% 63%, transparent 63%);
    background-size: 100% 100%, 78px 78px;
}
.page-hero--blog {
    background:
        linear-gradient(105deg, rgba(0, 82, 140, .98) 0%, rgba(0, 130, 220, .90) 46%, rgba(0, 130, 220, .58) 100%),
        url("../images/hero-blog.svg") center right / cover no-repeat;
}
.page-hero--about:after {
    background-image:
        radial-gradient(circle at 72% 30%, rgba(255,255,255,.30) 0 3px, transparent 4px),
        radial-gradient(circle at 84% 58%, rgba(255,255,255,.22) 0 2px, transparent 3px),
        linear-gradient(120deg, transparent 0 46%, rgba(255,255,255,.18) 46% 47%, transparent 47%);
    background-size: 92px 92px, 64px 64px, 86px 86px;
}
.page-hero--about {
    background:
        linear-gradient(105deg, rgba(0, 82, 140, .98) 0%, rgba(0, 130, 220, .90) 46%, rgba(0, 130, 220, .58) 100%),
        url("../images/hero-about.svg") center right / cover no-repeat;
}
.page-hero--contact:after {
    background-image:
        radial-gradient(ellipse at 76% 42%, rgba(255,255,255,.24) 0 2px, transparent 3px),
        repeating-radial-gradient(circle at 78% 46%, transparent 0 26px, rgba(255,255,255,.18) 27px 28px, transparent 29px 54px);
    background-size: 80px 80px, 520px 520px;
}
.page-hero--contact {
    background:
        linear-gradient(105deg, rgba(0, 82, 140, .98) 0%, rgba(0, 130, 220, .90) 46%, rgba(0, 130, 220, .58) 100%),
        url("../images/hero-contact.svg") center right / cover no-repeat;
}
.page-hero--blue {
    background:
        linear-gradient(105deg, rgba(0, 82, 140, .98) 0%, rgba(0, 130, 220, .92) 48%, rgba(0, 130, 220, .70) 100%),
        url("../images/hero-digital-artificium.webp") center right / cover no-repeat;
}
.page-hero--local {
    background:
        linear-gradient(105deg, rgba(0, 58, 98, .98) 0%, rgba(0, 130, 220, .88) 48%, rgba(0, 130, 220, .54) 100%),
        url("../images/ai-automation-hero.svg") center right / cover no-repeat;
}
.page-hero--detail { padding-bottom: 42px; }
.group-stack { display: grid; gap: 46px; }
.group-block { display: grid; grid-template-columns: .38fr .62fr; gap: 34px; }
.group-block > div:first-child {
    position: sticky;
    top: 118px;
    align-self: start;
}
.group-block h2 { font-size: 28px; line-height: 1.2; margin: 0; }
.group-content { display: grid; gap: 18px; }
.group-cta {
    grid-column: 1 / -1;
    display: grid;
    place-items: center;
    gap: 24px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 74px max(32px, calc((100vw - 1180px) / 2));
    text-align: center;
    color: #fff;
    background: var(--blue);
}
.group-cta h3 {
    max-width: 780px;
    margin: 0 auto 12px;
    font-size: 38px;
    line-height: 1.12;
}
.group-cta p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    font-weight: 700;
}
.group-cta .btn { min-width: 214px; }
.cards-three { grid-template-columns: repeat(2, 1fr); }
.mini-card { display: block; }
.mini-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(0, 130, 220, 0.10);
    color: var(--blue);
}
.mini-icon svg {
    width: 23px;
    height: 23px;
}
.mini-card:hover, .ai-card:hover, .software-card:hover, .post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.content-layout { grid-template-columns: minmax(0, 1fr) 330px; }
.service-hero-image {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(0, 40, 72, .24);
}
.service-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.rich-content h2, .article-body h2, .legal-content h2 { margin: 0 0 12px; font-size: 30px; line-height: 1.2; }
.rich-content section, .article-body section { margin-bottom: 38px; }
.rich-content p, .article-body p, .legal-content p { color: var(--gray); font-size: 17px; }
.section-visual {
    margin: 24px 0 0;
    overflow: hidden;
}
.section-visual img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}
.section-visual figcaption {
    margin: 0;
    padding: 11px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    background: #fff;
}
.rich-content section:nth-of-type(even) .section-visual img { object-position: center 38%; }
.side-box { position: sticky; top: 110px; }
.side-box h2 { margin-top: 0; font-size: 24px; }
.side-box--plain { position: static; }
.timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.timeline div, .feature-grid div { padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.timeline span { color: var(--blue); font-weight: 800; }
.timeline h3, .timeline p, .feature-grid h3, .feature-grid p { margin: 0; }
.timeline p, .feature-grid p { color: var(--gray); }
.faq-list details { border-top: 1px solid var(--line); padding: 16px 0; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.service-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.benefit-grid div {
    position: relative;
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(0, 130, 220, .06), transparent 44%),
        #fff;
    box-shadow: 0 12px 32px rgba(20, 45, 70, .06);
}
.benefit-grid .mini-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
}
.benefit-grid .mini-icon svg {
    width: 31px;
    height: 31px;
}
.benefit-grid h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 14px;
}
.service-type-grid article,
.method-list div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.benefit-grid p,
.service-type-grid h3,
.service-type-grid p,
.method-list h3,
.method-list p {
    margin: 0;
}
.benefit-grid p,
.service-type-grid p,
.method-list p {
    color: var(--gray);
}
.comparison-block {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: center;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 130, 220, .08), #fff 45%);
}
.comparison-block h2 { margin-bottom: 12px; }
.comparison-block img {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(20, 45, 70, .12);
}
.method-list {
    display: grid;
    gap: 14px;
}
.method-list div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
}
.method-list span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
}
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.pill-list li {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(0, 130, 220, .10);
    color: var(--blue);
    font-weight: 800;
}

.ai-grid { grid-template-columns: repeat(3, 1fr); }
.ai-card { display: block; }
.ai-card span { display: inline-block; color: #fff; background: var(--blue); border-radius: 999px; padding: 4px 9px; margin-bottom: 12px; font-size: 12px; font-weight: 800; }
.ai-card h2 { margin-bottom: 18px; }
.ai-impact {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 44px;
    align-items: start;
}
.ai-impact h2,
.ai-workflow__intro h2,
.ai-use-cases h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.05;
}
.ai-impact p,
.ai-workflow__intro p {
    margin: 0 0 14px;
    color: var(--gray);
    font-size: 18px;
}
.ai-impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.ai-impact-metrics article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue);
    background: #fff;
}
.ai-impact-metrics strong {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 42px;
    line-height: 1;
}
.ai-impact-metrics span {
    color: var(--gray);
    font-weight: 800;
}
.ai-parallax {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(0, 58, 98, .96) 0%, rgba(0, 130, 220, .78) 54%, rgba(0, 130, 220, .38) 100%),
        url("../images/hero-digital-artificium.webp") center / cover fixed;
}
.ai-parallax:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.20) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
}
.ai-parallax__inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
}
.ai-parallax .eyebrow,
.ai-parallax p {
    color: #fff;
}
.ai-parallax h2 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.04;
}
.ai-parallax p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 19px;
}
.ai-parallax--dark {
    background:
        linear-gradient(105deg, rgba(10, 24, 38, .98) 0%, rgba(0, 82, 140, .86) 58%, rgba(0, 130, 220, .42) 100%),
        url("../images/ai-automation-hero.svg") center / cover fixed;
}
.ai-large-heading {
    margin-bottom: 34px;
}
.ai-workflow {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 34px;
    align-items: start;
}
.ai-workflow__steps {
    display: grid;
    gap: 14px;
}
.ai-workflow__steps article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 16px;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}
.ai-workflow__steps span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
}
.ai-workflow__steps h3,
.ai-workflow__steps p {
    margin: 0;
}
.ai-workflow__steps p {
    color: var(--gray);
}
.ai-use-cases {
    display: grid;
    grid-template-columns: .36fr .64fr;
    gap: 34px;
    align-items: start;
}
.ai-use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ai-use-case-grid article {
    min-height: 160px;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}
.ai-use-case-grid h3,
.ai-use-case-grid p {
    margin: 0;
}
.ai-use-case-grid h3 {
    margin-bottom: 8px;
}
.ai-use-case-grid p {
    color: var(--gray);
}
.local-intro {
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    gap: 44px;
    align-items: start;
}
.local-intro h2,
.local-workflow__intro h2,
.local-signals h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.05;
}
.local-intro p,
.local-workflow__intro p {
    color: var(--gray);
    font-size: 18px;
}
.local-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.local-metrics article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue);
    background: #fff;
}
.local-metrics strong {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 42px;
    line-height: 1;
}
.local-metrics span {
    color: var(--gray);
    font-weight: 800;
}
.local-parallax {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(0, 58, 98, .96) 0%, rgba(0, 130, 220, .78) 54%, rgba(0, 130, 220, .38) 100%),
        url("../images/hero-digital-artificium.webp") center / cover fixed;
}
.local-parallax:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.20) 1px, transparent 1px);
    background-size: 54px 54px;
}
.local-parallax__inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
}
.local-parallax .eyebrow,
.local-parallax p {
    color: #fff;
}
.local-parallax h2 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.04;
}
.local-parallax p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 19px;
}
.local-parallax--dark {
    background:
        linear-gradient(105deg, rgba(10, 24, 38, .98) 0%, rgba(0, 82, 140, .86) 58%, rgba(0, 130, 220, .42) 100%),
        url("../images/hero-servicios.svg") center / cover fixed;
}
.page-hero--local-seo {
    background-color: #0876b9;
}
.local-parallax--seo {
    background:
        linear-gradient(105deg, rgba(0, 74, 125, .95) 0%, rgba(0, 130, 220, .78) 58%, rgba(0, 43, 76, .7) 100%),
        url("../images/seo-local-nearby-search.svg") center / cover fixed;
}
.local-large-heading { margin-bottom: 34px; }
.local-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.local-feature-grid article {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(0, 130, 220, .06), transparent 45%),
        #fff;
}
.local-feature-grid h3,
.local-feature-grid p {
    margin: 0;
}
.local-feature-grid h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.2;
}
.local-feature-grid p {
    color: var(--gray);
}
.local-workflow {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 34px;
    align-items: start;
}
.local-workflow__steps {
    display: grid;
    gap: 14px;
}
.local-workflow__steps article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 16px;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}
.local-workflow__steps span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
}
.local-workflow__steps h3,
.local-workflow__steps p {
    margin: 0;
}
.local-workflow__steps p {
    color: var(--gray);
}
.local-signals {
    display: grid;
    grid-template-columns: .36fr .64fr;
    gap: 34px;
    align-items: start;
}
.local-signal-grid,
.local-city-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.local-province-grid {
    display: grid;
    gap: 34px;
}
.local-province h3 {
    margin: 0 0 16px;
    font-size: 26px;
    line-height: 1.2;
}
.local-signal-grid article,
.local-city-links a {
    display: block;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
}
.local-city-links a:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.local-service-links {
    padding: 28px;
    border: 1px solid rgba(0, 130, 220, .24);
    background:
        linear-gradient(135deg, rgba(0, 130, 220, .08), #fff 48%),
        #fff;
}
.local-service-links p {
    max-width: 680px;
}
.local-service-links__actions {
    margin: 18px 0;
}
.local-city-links--compact {
    grid-template-columns: repeat(2, 1fr);
}
.local-inline-cta {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(0, 82, 140, .98), rgba(0, 130, 220, .94) 56%, rgba(0, 103, 173, .96)),
        var(--blue);
}
.local-inline-cta:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.20) 1px, transparent 1px);
    background-size: 46px 46px;
}
.local-inline-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}
.local-inline-cta .eyebrow,
.local-inline-cta p {
    color: #fff;
}
.local-inline-cta h2 {
    max-width: 820px;
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.12;
}
.local-inline-cta p {
    max-width: 780px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 18px;
}
.local-inline-cta .btn {
    min-width: 190px;
}
.software-grid { grid-template-columns: repeat(2, 1fr); }
.software-card { display: block; min-height: 220px; }
.software-card span { font-weight: 800; }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 42px;
}
.audience-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
}
.audience-grid svg {
    width: 21px;
    height: 21px;
    color: var(--blue);
    flex: 0 0 auto;
}
.software-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.software-modules article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.software-modules h3 { margin: 0 0 10px; }
.software-modules p { margin: 0; color: var(--gray); }

/* Cellaris */
.cellaris-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 82px;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(5, 43, 61, .98) 0%, rgba(0, 101, 129, .95) 54%, rgba(22, 181, 183, .86) 100%);
}
.cellaris-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
    background-size: 58px 58px;
}
.cellaris-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
}
.cellaris-hero .eyebrow { color: #8ee8e5; }
.cellaris-hero h1 {
    max-width: 720px;
    margin: 0 0 22px;
    font-size: 58px;
    line-height: 1.02;
}
.cellaris-hero__content > p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 20px;
    line-height: 1.6;
}
.cellaris-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}
.cellaris-text-link {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.cellaris-text-link:hover,
.cellaris-text-link:focus {
    color: #fff;
}
.cellaris-logo-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 350px;
    border: 1px solid rgba(255,255,255,.44);
    background: #fff;
}
.cellaris-logo-stage img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: contain;
}
.cellaris-intro__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: start;
}
.cellaris-intro h2,
.cellaris-section-heading h2,
.cellaris-documents h2,
.cellaris-search h2,
.cellaris-codes h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.06;
}
.cellaris-intro p,
.cellaris-section-heading > p,
.cellaris-documents > div:last-child > p,
.cellaris-search__intro p,
.cellaris-codes > div:first-child p {
    color: var(--gray);
    font-size: 18px;
}
.cellaris-intro p { margin: 0 0 14px; }
.cellaris-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.cellaris-summary article {
    min-height: 168px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.cellaris-summary strong,
.cellaris-summary svg {
    display: block;
    margin-bottom: 16px;
    color: #008f9c;
}
.cellaris-summary strong {
    font-size: 46px;
    line-height: 1;
}
.cellaris-summary svg { width: 36px; height: 36px; }
.cellaris-summary span { color: var(--gray); font-weight: 800; }
.cellaris-parallax {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(4, 38, 54, .97) 0%, rgba(0, 107, 132, .87) 56%, rgba(25, 181, 182, .72) 100%),
        url("../images/cellaris-logo.png") center 48% / cover fixed;
}
.cellaris-parallax:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 100%;
}
.cellaris-parallax__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.cellaris-parallax .eyebrow { color: #9cf3ed; }
.cellaris-parallax h2 {
    margin: 0 0 18px;
    font-size: 50px;
    line-height: 1.04;
}
.cellaris-parallax p {
    max-width: 780px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 20px;
    line-height: 1.55;
}
.cellaris-section-heading {
    max-width: 880px;
    margin-bottom: 34px;
}
.cellaris-section-heading > p { margin: 0; }
.cellaris-patient__layout {
    display: grid;
    grid-template-columns: .36fr .64fr;
    gap: 20px;
}
.cellaris-patient__core {
    padding: 28px;
    color: #fff;
    background: #07546a;
}
.cellaris-patient__core svg {
    width: 38px;
    height: 38px;
    margin-bottom: 26px;
    color: #8ee8e5;
}
.cellaris-patient__core h3 { margin: 0 0 18px; font-size: 25px; }
.cellaris-patient__core ul { margin: 0; padding-left: 20px; }
.cellaris-patient__core li { margin: 8px 0; color: rgba(255,255,255,.88); }
.cellaris-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.cellaris-data-grid article {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 800;
}
.cellaris-data-grid svg {
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    color: #008f9c;
}
.cellaris-large-heading { align-items: start; }
.cellaris-report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.cellaris-report-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-top: 4px solid #1cb5b5;
    background: #fff;
}
.cellaris-report-card--featured {
    border-top-color: #0082dc;
}
.cellaris-report-card__heading {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.cellaris-report-card__heading > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: #e8f7f7;
    color: #007b86;
    font-weight: 900;
}
.cellaris-report-card small {
    display: block;
    color: var(--gray);
    font-weight: 800;
    text-transform: uppercase;
}
.cellaris-report-card h3 { margin: 2px 0 0; font-size: 27px; }
.cellaris-report-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}
.cellaris-report-card li {
    position: relative;
    padding-left: 20px;
    color: #37434c;
}
.cellaris-report-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #1cb5b5;
}
.cellaris-report-card p {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--gray);
}
.cellaris-documents {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}
.cellaris-documents__visual {
    position: relative;
    min-height: 460px;
    padding: 42px 74px 72px 34px;
    background: #e8f4f6;
}
.cellaris-document {
    min-height: 345px;
    padding: 34px;
    border-top: 6px solid #0082dc;
    background: #fff;
}
.cellaris-document__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 44px;
}
.cellaris-document__top span:first-child { width: 42%; height: 22px; background: #0a6479; }
.cellaris-document__top span:last-child { width: 18%; height: 22px; background: #1cb5b5; }
.cellaris-document__line {
    width: 100%;
    height: 10px;
    margin: 18px 0;
    background: #dce5e9;
}
.cellaris-document__line--strong { width: 70%; height: 15px; background: #8999a3; }
.cellaris-document__line--short { width: 58%; }
.cellaris-document__signature {
    width: 120px;
    margin: 54px 0 0 auto;
    padding-top: 10px;
    border-top: 1px solid #9aabb4;
    color: #71818a;
    text-align: center;
    font-size: 13px;
}
.cellaris-document-badge {
    position: absolute;
    right: 22px;
    bottom: 26px;
    display: flex;
    gap: 12px;
    align-items: center;
    width: 230px;
    padding: 18px;
    color: #fff;
    background: #07546a;
    font-weight: 800;
}
.cellaris-document-badge svg { flex: 0 0 auto; color: #8ee8e5; }
.cellaris-documents h2 { max-width: 700px; }
.cellaris-documents > div:last-child > p { margin: 0 0 14px; }
.cellaris-parallax--centers {
    background:
        linear-gradient(110deg, rgba(5, 35, 49, .98) 0%, rgba(0, 80, 109, .90) 58%, rgba(0, 130, 220, .68) 100%),
        url("../images/hero-software.svg") center / cover fixed;
}
.cellaris-operations {
    display: grid;
    grid-template-columns: .38fr .62fr;
    gap: 44px;
    align-items: start;
}
.cellaris-operations .cellaris-section-heading {
    position: sticky;
    top: 118px;
}
.cellaris-operations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cellaris-operations__grid article {
    min-height: 250px;
    padding: 24px;
    border: 1px solid var(--line);
    background: #fff;
}
.cellaris-operations__grid svg {
    width: 34px;
    height: 34px;
    margin-bottom: 28px;
    color: #008f9c;
}
.cellaris-operations__grid h3 { margin: 0 0 10px; font-size: 22px; }
.cellaris-operations__grid p { margin: 0; color: var(--gray); }
.cellaris-search-section {
    background: #07546a;
    color: #fff;
}
.cellaris-search {
    display: grid;
    grid-template-columns: .45fr .55fr;
    gap: 50px;
    align-items: center;
}
.cellaris-search .eyebrow { color: #8ee8e5; }
.cellaris-search__intro p { color: rgba(255,255,255,.82); }
.cellaris-search__filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.cellaris-search__filters span {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 60px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    font-weight: 800;
}
.cellaris-search__filters svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: #8ee8e5;
}
.cellaris-codes {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
}
.cellaris-codes > div:first-child p { margin: 0 0 14px; }
.cellaris-code-flow {
    display: grid;
    gap: 12px;
}
.cellaris-code-flow > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}
.cellaris-code-flow > div > span { color: var(--gray); font-weight: 800; }
.cellaris-code-flow strong {
    color: #07546a;
    font-size: 25px;
    letter-spacing: 0;
}
.cellaris-code-flow .cellaris-code-flow__check {
    justify-content: flex-start;
    color: #fff;
    background: #008f9c;
}
.cellaris-code-flow__check svg { flex: 0 0 auto; }
.cellaris-code-flow__check span { color: #fff !important; }
.cellaris-workflow-section {
    color: #fff;
    background: #182934;
}
.cellaris-section-heading--light .eyebrow { color: #8ee8e5; }
.cellaris-section-heading--light h2 { color: #fff; }
.cellaris-workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.22);
    border-left: 1px solid rgba(255,255,255,.22);
}
.cellaris-workflow article {
    min-height: 240px;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
}
.cellaris-workflow article > span {
    display: block;
    margin-bottom: 42px;
    color: #73ddd9;
    font-weight: 900;
}
.cellaris-workflow h3 { margin: 0 0 10px; font-size: 24px; }
.cellaris-workflow p { margin: 0; color: rgba(255,255,255,.72); }

/* Solicitud de demos de software */
.demo-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    color: #fff;
    background:
        linear-gradient(112deg, rgba(5, 43, 61, .98) 0%, rgba(0, 101, 129, .94) 58%, rgba(0, 130, 220, .78) 100%),
        url("../images/hero-software.svg") center / cover no-repeat;
}
.demo-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 58px 58px;
}
.demo-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.demo-hero .eyebrow { color: #9cf3ed; }
.demo-hero h1 {
    margin: 0 0 20px;
    font-size: 52px;
    line-height: 1.04;
}
.demo-hero p {
    max-width: 800px;
    margin: 8px 0 0;
    color: rgba(255,255,255,.9);
    font-size: 19px;
    line-height: 1.55;
}
.demo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 38px;
    align-items: start;
}
.demo-form { padding: 30px; }
.demo-product {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-left: 4px solid #008f9c;
    background: #eef8f8;
}
.demo-product svg {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    color: #008f9c;
}
.demo-product span {
    display: block;
    margin-bottom: 3px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.demo-product strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
}
.demo-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
}
.demo-fields label { min-width: 0; }
.demo-field--wide { grid-column: 1 / -1; }
.demo-submit { width: 100%; }
.demo-benefits {
    position: sticky;
    top: 118px;
    padding: 30px;
    color: #fff;
    background: #07546a;
}
.demo-benefits .eyebrow { color: #8ee8e5; }
.demo-benefits h2 {
    margin: 0 0 26px;
    font-size: 32px;
    line-height: 1.1;
}
.demo-benefits__list {
    display: grid;
    border-top: 1px solid rgba(255,255,255,.2);
}
.demo-benefits__list article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.demo-benefits__list svg {
    width: 28px;
    height: 28px;
    color: #8ee8e5;
}
.demo-benefits__list strong,
.demo-benefits__list span {
    display: block;
}
.demo-benefits__list strong { margin-bottom: 4px; }
.demo-benefits__list span {
    color: rgba(255,255,255,.74);
    line-height: 1.45;
}

/* Software para escuelas de idiomas */
.academy-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    color: #fff;
    background:
        linear-gradient(112deg, rgba(7, 34, 91, .99) 0%, rgba(0, 100, 174, .94) 57%, rgba(63, 35, 170, .82) 100%);
}
.academy-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image:
        linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 56px 56px;
}
.academy-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
    align-items: center;
}
.academy-hero .eyebrow { color: #72e7ef; }
.academy-hero h1 {
    margin: 0 0 22px;
    font-size: 57px;
    line-height: 1.02;
}
.academy-hero__grid > div:first-child > p {
    max-width: 690px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 20px;
    line-height: 1.58;
}
.academy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}
.academy-text-link,
.academy-text-link:hover,
.academy-text-link:focus {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.aulenza-logo-stage {
    display: grid;
    place-items: center;
    min-height: 400px;
    border: 1px solid rgba(255,255,255,.42);
    background: #fff;
}
.aulenza-logo-stage img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: contain;
}
.academy-dashboard {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.96);
    color: var(--ink);
}
.academy-dashboard__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
}
.academy-dashboard__top svg { color: #7130b9; }
.academy-dashboard__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}
.academy-dashboard__metrics article {
    min-height: 130px;
    padding: 18px;
    border: 1px solid var(--line);
}
.academy-dashboard__metrics svg {
    width: 27px;
    height: 27px;
    margin-bottom: 18px;
    color: #0082dc;
}
.academy-dashboard__metrics strong,
.academy-dashboard__metrics span { display: block; }
.academy-dashboard__metrics span { margin-top: 4px; color: var(--gray); font-size: 13px; }
.academy-dashboard__activity {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 76px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #eff5f7;
}
.academy-dashboard__activity span {
    flex: 1;
    background: #17bfce;
}
.academy-dashboard__activity span:nth-child(1) { height: 35%; }
.academy-dashboard__activity span:nth-child(2) { height: 58%; }
.academy-dashboard__activity span:nth-child(3) { height: 78%; }
.academy-dashboard__activity span:nth-child(4) { height: 100%; background: #0082dc; }
.academy-overview__grid,
.academy-payments,
.academy-billing__grid,
.academy-debt,
.academy-email,
.academy-campaign {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 52px;
    align-items: center;
}
.academy-overview h2,
.academy-section-heading h2,
.academy-payments h2,
.academy-billing h2,
.academy-debt h2,
.academy-email h2,
.academy-campaign h2,
.academy-email-warning h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.06;
}
.academy-overview p,
.academy-section-heading > p,
.academy-payments__intro p,
.academy-billing p,
.academy-debt > div:last-child p,
.academy-email__intro p,
.academy-campaign > div:last-child p,
.academy-email-warning p {
    color: var(--gray);
    font-size: 18px;
}
.academy-overview p { margin: 0 0 14px; }
.academy-module-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
}
.academy-module-map article {
    display: flex;
    gap: 13px;
    align-items: center;
    min-height: 88px;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    font-weight: 800;
}
.academy-module-map svg { color: #7130b9; }
.academy-parallax {
    position: relative;
    overflow: hidden;
    padding: 98px 0;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(7, 34, 91, .98) 0%, rgba(0, 101, 174, .89) 58%, rgba(113, 48, 185, .68) 100%),
        url("../images/hero-software.svg") center / cover fixed;
}
.academy-parallax:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background: repeating-linear-gradient(90deg, #fff 0 1px, transparent 1px 72px);
}
.academy-parallax__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.academy-parallax .eyebrow { color: #72e7ef; }
.academy-parallax h2 {
    margin: 0 0 18px;
    font-size: 50px;
    line-height: 1.04;
}
.academy-parallax p {
    max-width: 780px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 20px;
}
.academy-section-heading {
    max-width: 880px;
    margin-bottom: 34px;
}
.academy-section-heading > p { margin: 0; }
.academy-course__layout { display: grid; gap: 20px; }
.academy-course__timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 24px;
    color: #fff;
    background: #1d3654;
}
.academy-course__timeline > div { text-align: center; }
.academy-course__timeline span,
.academy-course__timeline strong { display: block; }
.academy-course__timeline span {
    margin-bottom: 6px;
    color: #72e7ef;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.academy-course__timeline svg { color: rgba(255,255,255,.5); }
.academy-course__fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.academy-course__fields article {
    display: grid;
    align-content: start;
    min-height: 120px;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 800;
}
.academy-course__fields svg {
    width: 25px;
    height: 25px;
    margin-bottom: 18px;
    color: #7130b9;
}
.academy-payments { align-items: start; }
.academy-payments__intro p { margin: 0 0 14px; }
.academy-receipt-flow {
    display: grid;
    gap: 14px;
    padding: 26px;
    border: 1px solid var(--line);
    background: #fff;
}
.academy-receipt-flow__course {
    padding: 20px;
    color: #fff;
    background: #1d3654;
}
.academy-receipt-flow__course span,
.academy-receipt-flow__course strong,
.academy-receipt-flow__course small { display: block; }
.academy-receipt-flow__course span { color: #72e7ef; font-weight: 900; }
.academy-receipt-flow__course strong { margin: 5px 0; font-size: 22px; }
.academy-receipt-flow > svg { margin: 0 auto; color: #0082dc; }
.academy-receipt-flow__months {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.academy-receipt-flow__months span {
    padding: 10px 5px;
    border: 1px solid var(--line);
    color: var(--gray);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}
.academy-receipt-flow__result {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 3px 14px;
    align-items: center;
    padding: 18px;
    background: #f2effb;
}
.academy-receipt-flow__result svg {
    grid-row: span 2;
    color: #7130b9;
}
.academy-receipt-flow__result span { color: var(--gray); }
.academy-large-heading { align-items: start; }
.academy-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.academy-profile {
    padding: 26px;
    border: 1px solid var(--line);
    border-top: 4px solid #7130b9;
    background: #fff;
}
.academy-profile--student { border-top-color: #0082dc; }
.academy-profile__heading {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}
.academy-profile__heading svg { color: #7130b9; }
.academy-profile__heading h3 { margin: 0; font-size: 25px; }
.academy-profile > p { color: var(--gray); }
.academy-profile ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}
.academy-profile li {
    position: relative;
    padding-left: 18px;
}
.academy-profile li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    background: #7130b9;
}
.academy-billing {
    padding: 82px 0;
    color: #fff;
    background: #1d3654;
}
.academy-billing .eyebrow { color: #72e7ef; }
.academy-billing p { color: rgba(255,255,255,.78); }
.academy-invoice-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
}
.academy-invoice-visual > div {
    display: grid;
    place-items: center;
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.24);
    text-align: center;
    font-weight: 800;
}
.academy-invoice-visual > div:last-child { background: #7130b9; }
.academy-invoice-visual div svg { margin-bottom: 14px; }
.academy-invoice-visual > svg { margin: 0 8px; color: rgba(255,255,255,.5); }
.academy-debt__visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.academy-debt__counter {
    min-height: 210px;
    padding: 28px;
    border: 1px solid var(--line);
    background: #fff;
}
.academy-debt__counter strong {
    display: block;
    margin-bottom: 18px;
    color: #0082dc;
    font-size: 58px;
    line-height: 1;
}
.academy-debt__counter span { color: var(--gray); font-weight: 800; }
.academy-debt__counter--alert { color: #fff; background: #1d3654; }
.academy-debt__counter--alert strong { color: #72e7ef; }
.academy-debt__counter--alert span { color: rgba(255,255,255,.8); }
.academy-debt__arrow { padding: 10px; color: #7130b9; }
.academy-debt > div:last-child p { margin: 0 0 14px; }
.academy-email-section {
    color: #fff;
    background: #006b80;
}
.academy-email { align-items: start; }
.academy-email .eyebrow { color: #72e7ef; }
.academy-email__intro p { color: rgba(255,255,255,.82); }
.academy-email__audiences {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.academy-email__audiences article {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 76px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    font-weight: 800;
}
.academy-email__audiences svg {
    flex: 0 0 auto;
    color: #72e7ef;
}
.academy-campaign__example {
    border: 1px solid var(--line);
    background: #fff;
}
.academy-campaign__header {
    padding: 22px;
    color: #fff;
    background: #1d3654;
}
.academy-campaign__header span,
.academy-campaign__header strong { display: block; }
.academy-campaign__header span { color: #72e7ef; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.academy-campaign__header strong { margin-top: 5px; font-size: 20px; }
.academy-campaign__body { padding: 28px; }
.academy-campaign__line {
    display: block;
    width: 100%;
    height: 10px;
    margin: 14px 0;
    background: #e1e8ec;
}
.academy-campaign__line--title { width: 62%; height: 16px; background: #82939d; }
.academy-campaign__line--short { width: 74%; }
.academy-campaign__body button {
    margin-top: 24px;
    padding: 11px 18px;
    border: 0;
    background: #0082dc;
    color: #fff;
    font: inherit;
    font-weight: 800;
    pointer-events: none;
}
.academy-campaign > div:last-child p { margin: 0; }
.academy-email-warning {
    padding: 62px 0;
    color: #fff;
    background: #26333d;
}
.academy-email-warning__inner {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 26px;
    align-items: start;
}
.academy-email-warning__inner > svg {
    width: 54px;
    height: 54px;
    color: #f2c14e;
}
.academy-email-warning .eyebrow { color: #f2c14e; }
.academy-email-warning p {
    max-width: 980px;
    margin: 0;
    color: rgba(255,255,255,.78);
}
.academy-settings__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.academy-settings__grid article {
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}
.academy-settings__grid svg {
    width: 31px;
    height: 31px;
    margin-bottom: 30px;
    color: #7130b9;
}
.academy-settings__grid h3 { margin: 0 0 8px; }
.academy-settings__grid p { margin: 0; color: var(--gray); }
.academy-workflow-section {
    padding: 78px 0;
    color: #fff;
    background: #17283b;
}
.academy-section-heading--light .eyebrow { color: #72e7ef; }
.academy-section-heading--light h2 { color: #fff; }
.academy-workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 1px solid rgba(255,255,255,.2);
}
.academy-workflow article {
    min-height: 230px;
    padding: 26px;
    border-right: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.academy-workflow article > span {
    display: block;
    margin-bottom: 40px;
    color: #72e7ef;
    font-weight: 900;
}
.academy-workflow h3 { margin: 0 0 9px; font-size: 23px; }
.academy-workflow p { margin: 0; color: rgba(255,255,255,.72); }

.check-list { padding-left: 0; list-style: none; }
.check-list li { padding: 12px 0 12px 34px; position: relative; border-bottom: 1px solid var(--line); }
.check-list li:before { content: ""; position: absolute; left: 0; top: 18px; width: 14px; height: 8px; border-left: 3px solid var(--blue); border-bottom: 3px solid var(--blue); transform: rotate(-45deg); }

.blog-index {
    padding: 58px 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.blog-index .container {
    display: grid;
    grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
    gap: 64px;
    align-items: start;
}
.blog-index__heading h2,
.blog-category__header h2 {
    margin: 7px 0 0;
    font-size: 36px;
    line-height: 1.12;
}
.blog-index__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.blog-index__links a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
}
.blog-index__links strong { color: var(--blue); }
.blog-category { scroll-margin-top: 90px; }
.blog-category:nth-of-type(even) { background: var(--soft); }
.blog-category__header { margin-bottom: 30px; }
.blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.post-card {
    display: grid;
    grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
    min-height: 300px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}
.post-card__media {
    display: block;
    min-height: 100%;
    overflow: hidden;
    background: var(--soft);
}
.post-card__media img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
}
.post-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
}
.post-card span { color: var(--blue); font-weight: 800; font-size: 12px; }
.post-card h3 {
    margin: 12px 0 11px;
    font-size: 24px;
    line-height: 1.16;
}
.post-card h3 a { color: var(--ink); }
.post-card p { margin: 0 0 22px; color: var(--gray); }
.post-card__link { margin-top: auto; font-weight: 900; }

.article-header {
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}
.article-header__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 64px;
    align-items: center;
}
.article-back {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--gray);
    font-weight: 800;
}
.article-header h1 {
    max-width: 850px;
    margin: 10px 0 18px;
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.04;
}
.article-header p { max-width: 760px; margin: 0; font-size: 20px; color: var(--gray); }
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 22px;
    margin-top: 25px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 800;
}
.article-featured-media {
    height: 440px;
    margin: 0;
    overflow: hidden;
    background: #fff;
}
.article-featured-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-featured-media--contain { background: #fff; }
.article-featured-media--contain img { object-fit: contain; }
.article-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 780px);
    gap: 74px;
    justify-content: center;
    align-items: start;
    padding-top: 70px;
    padding-bottom: 80px;
}
.article-toc {
    position: sticky;
    top: 100px;
    padding-top: 6px;
    border-top: 3px solid var(--blue);
}
.article-toc > strong { display: block; padding: 16px 0 10px; font-size: 15px; }
.article-toc nav { display: grid; }
.article-toc a {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    color: var(--gray);
    font-size: 14px;
    line-height: 1.35;
}
.article-toc a:hover { color: var(--blue); }
.article-body { max-width: none; padding: 0; }
.article-body section {
    scroll-margin-top: 100px;
    padding: 0 0 42px;
    margin: 0 0 42px;
    border-bottom: 1px solid var(--line);
}
.article-body section:last-child { margin-bottom: 0; }
.article-body h2 { margin: 0 0 18px; font-size: 34px; line-height: 1.15; }
.article-body p { margin: 0 0 17px; color: #3d4650; font-size: 18px; line-height: 1.78; }
.article-body ul { display: grid; gap: 11px; margin: 21px 0 0; padding: 0; list-style: none; }
.article-body li {
    position: relative;
    padding-left: 29px;
    color: #3d4650;
    font-size: 17px;
    line-height: 1.65;
}
.article-body li:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;
    width: 9px;
    height: 5px;
    border-left: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    transform: rotate(-45deg);
}
.article-note {
    margin-top: 26px;
    padding: 22px 24px;
    border-left: 4px solid var(--blue);
    background: var(--soft);
    color: var(--ink);
    font-weight: 800;
    line-height: 1.6;
}
.article-inline-cta {
    margin: 38px 0 8px;
    padding: 34px;
    background: var(--blue);
    color: #fff;
}
.article-inline-cta h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
}
.article-inline-cta p {
    margin: 0 0 22px;
    color: #fff;
    font-size: 17px;
}
.article-inline-cta .btn {
    margin: 0;
}
.article-step-image {
    margin: 30px 0 4px;
}
.article-step-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--line);
}
.article-step-image--landscape img {
    height: 480px;
    object-fit: cover;
    object-position: center 64%;
}
.article-step-image figcaption {
    padding: 11px 0 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}
.article-image-gallery {
    display: grid;
    gap: 26px;
}
.article-sources a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.article-affiliate {
    margin-top: 6px;
    padding: 26px 28px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--blue);
    background: #fff;
}
.article-affiliate > span {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.article-affiliate h2 {
    margin: 0 0 9px;
    font-size: 25px;
}
.article-affiliate p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.6;
}
.article-affiliate a { font-weight: 900; }
.article-affiliate small {
    display: block;
    margin-top: 14px;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.5;
}
.article-cta {
    padding: 72px 0;
    background: var(--blue);
    color: #fff;
    text-align: center;
}
.article-cta h2 { margin: 0 0 12px; font-size: 38px; line-height: 1.1; }
.article-cta p { max-width: 690px; margin: 0 auto 26px; font-size: 18px; }
.related-posts > .container > h2 { margin: 8px 0 30px; font-size: 36px; }
.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.related-posts__grid article {
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.related-posts__grid h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.2; }
.related-posts__grid h3 a { color: var(--ink); }
.related-posts__grid p { margin: 0; color: var(--gray); }

.contact-grid { grid-template-columns: 1.2fr .8fr; }
.contact-form {
    display: grid;
    gap: 18px;
}
.contact-form__intro h2 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.15;
}
.contact-form__intro p {
    margin: 0;
    color: var(--gray);
}
.contact-form label { display: block; font-weight: 800; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    display: block;
    margin-top: 7px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px;
    font: inherit;
}
.contact-fields {
    display: grid;
}
.service-picker {
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 130, 220, .05), #fff 52%);
}
.service-picker legend {
    padding: 0 8px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
}
.service-picker__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.service-check {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 44px;
    margin: 0 !important;
    padding: 10px 12px 10px 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.service-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.service-check:before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #b9c8d6;
    border-radius: 6px;
    background: #fff;
    transform: translateY(-50%);
}
.service-check:after {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transform: translateY(-62%) rotate(-45deg);
}
.service-check span {
    line-height: 1.25;
}
.service-check:hover {
    border-color: rgba(0, 130, 220, .45);
}
.service-check:has(input:checked) {
    border-color: rgba(0, 130, 220, .55);
    background: rgba(0, 130, 220, .08);
    color: var(--blue-dark);
}
.service-check:has(input:checked):before {
    border-color: var(--blue);
    background: var(--blue);
}
.service-check:has(input:checked):after {
    opacity: 1;
}
.contact-form .check { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.contact-form .check input { width: auto; margin-top: 6px; }
.contact-legal {
    padding: 16px 18px;
    border-left: 3px solid var(--blue);
    background: #f6f9fb;
    color: #5c6871;
    font-size: 12px;
    line-height: 1.55;
}
.contact-legal p { margin: 0; }
.contact-legal p + p { margin-top: 8px; }
.contact-consents {
    display: grid;
    gap: 12px;
}
.contact-consents .check {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: #fff;
}
.contact-consents .check a { color: var(--blue); text-decoration: underline; }
.contact-box h2 { margin-top: 0; }
.form-alert { padding: 12px; border-radius: 6px; margin: 12px 0 18px; font-weight: 800; }
.form-alert--ok { background: #edf9f1; color: #176b33; border: 1px solid #b8e6c5; }
.form-alert--error { background: #fff1f1; color: #b00000; border: 1px solid #f0b8b8; }
.legal-content { max-width: 860px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-grid a { display: block; margin: 7px 0; }
.sitemap-grid h3 { font-size: 16px; margin: 18px 0 6px; color: var(--gray); }

.site-footer { background: #1d2730; color: rgba(255,255,255,.82); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-logo { width: 190px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.site-footer h2 { color: #fff; font-size: 17px; margin: 0 0 12px; }
.site-footer a { display: block; color: rgba(255,255,255,.82); margin: 7px 0; }
.site-footer a:hover { color: #fff; }
.footer-contact {
    display: grid;
    gap: 14px;
}
.footer-contact p,
.footer-social a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    margin: 0;
}
.footer-contact svg,
.footer-social svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: #fff;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    margin-top: 3px;
}
.footer-social {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 14px;
    margin-top: 16px;
}
.footer-social a { margin: 0; }
.footer-social svg { stroke-width: 1.8; }
.footer-social a[href*="facebook"] svg { fill: currentColor; stroke: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); font-size: 14px; }
.footer-bottom a { display: inline; }
.footer-cookie-settings,
.legal-cookie-settings {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.legal-cookie-settings {
    color: var(--blue);
    font-weight: 800;
}
.legal-table-wrap {
    margin: 24px 0 34px;
    overflow-x: auto;
}
.legal-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}
.legal-table th,
.legal-table td {
    padding: 16px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.legal-table th {
    background: var(--soft);
    color: var(--ink);
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.cookie-main,
.cookie-settings {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}
.cookie-banner p { margin: 4px 0 0; color: var(--gray); }
.cookie-banner a { display: inline-block; margin-top: 6px; font-weight: 800; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    min-width: 118px;
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.cookie-btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.cookie-options {
    display: grid;
    gap: 10px;
}
.cookie-option {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
}
.cookie-option input { margin-top: 4px; accent-color: var(--blue); }
.cookie-option b { display: block; }
.cookie-option small { display: block; color: var(--gray); line-height: 1.4; }
.cookie-actions--settings { align-self: end; }
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--blue);
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 32px rgba(20, 45, 70, .18);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}
.back-to-top svg {
    width: 23px;
    height: 23px;
}

@media (max-width: 980px) {
    .topbar__inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
    .nav-toggle { display: block; }
    .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); padding: 10px 16px 18px; }
    .main-nav.is-open { display: block; }
    .main-nav ul { display: block; }
    .main-nav a { padding: 10px 0; }
    .main-nav .has-menu:after { display: none; }
    .mega-menu { position: static; display: block; width: auto; box-shadow: none; border: 0; padding: 0 0 8px 16px; }
    .mega-menu--compact { grid-template-columns: 1fr; }
    .has-menu:hover .mega-menu,
    .has-menu:focus-within .mega-menu { display: block; }
    .hero-grid, .split-heading, .process, .two-col, .detail-hero, .content-layout, .contact-grid, .group-block, .ai-impact, .ai-workflow, .ai-use-cases, .local-intro, .local-workflow, .local-signals, .local-inline-cta__inner, .cellaris-hero__grid, .cellaris-intro__grid, .cellaris-documents, .cellaris-operations, .cellaris-search, .cellaris-codes, .demo-layout, .academy-hero__grid, .academy-overview__grid, .academy-payments, .academy-billing__grid, .academy-debt, .academy-email, .academy-campaign { grid-template-columns: 1fr; }
    .group-block > div:first-child {
        position: static;
    }
    .service-grid, .ai-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-impact-metrics,
    .local-metrics { grid-template-columns: repeat(3, 1fr); }
    .group-cta { place-items: center; }
    .side-box { position: static; }
    .cellaris-hero__content { max-width: 760px; }
    .cellaris-logo-stage { min-height: 300px; }
    .cellaris-operations .cellaris-section-heading { position: static; }
    .cellaris-workflow { grid-template-columns: repeat(2, 1fr); }
    .demo-benefits { position: static; }
    .academy-course__fields,
    .academy-settings__grid { grid-template-columns: repeat(2, 1fr); }
    .academy-workflow { grid-template-columns: repeat(2, 1fr); }
    .blog-index .container,
    .article-header__grid { grid-template-columns: 1fr; }
    .blog-index__links { grid-template-columns: repeat(2, 1fr); }
    .article-featured-media { height: 420px; }
    .article-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 42px; }
    .post-card { grid-template-columns: 1fr; }
    .post-card__media,
    .post-card__media img { min-height: 240px; height: 240px; }
    .related-posts__grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .brand img { width: 170px; }
    .hero, .page-hero, .section { padding: 46px 0; }
    .section--cta { padding-top: 82px; }
    .section--cta:before { height: 52px; }
    .hero h1, .page-hero h1 { font-size: 36px; }
    .split-heading h2, .process h2, .two-col h2, .cta h2, .group-cta h3, .ai-impact h2, .ai-workflow__intro h2, .ai-use-cases h2, .ai-parallax h2, .local-intro h2, .local-workflow__intro h2, .local-signals h2, .local-parallax h2, .local-inline-cta h2, .cellaris-intro h2, .cellaris-section-heading h2, .cellaris-documents h2, .cellaris-search h2, .cellaris-codes h2, .cellaris-parallax h2, .academy-overview h2, .academy-section-heading h2, .academy-payments h2, .academy-billing h2, .academy-debt h2, .academy-email h2, .academy-campaign h2, .academy-email-warning h2, .academy-parallax h2 { font-size: 30px; }
    .service-grid, .cards-three, .ai-grid, .software-grid, .blog-grid, .timeline, .feature-grid, .footer-grid, .sitemap-grid, .signal-stack, .audience-grid, .software-modules, .benefit-grid, .service-type-grid, .method-list div, .comparison-block, .ai-impact-metrics, .ai-use-case-grid, .ai-workflow__steps article, .local-metrics, .local-feature-grid, .local-workflow__steps article, .local-signal-grid, .local-city-links, .service-picker__grid, .cellaris-summary, .cellaris-patient__layout, .cellaris-data-grid, .cellaris-report-grid, .cellaris-report-card ul, .cellaris-operations__grid, .cellaris-search__filters, .cellaris-workflow, .academy-dashboard__metrics, .academy-module-map, .academy-course__fields, .academy-profile-grid, .academy-profile ul, .academy-email__audiences, .academy-settings__grid, .academy-workflow { grid-template-columns: 1fr; }
    .ai-parallax {
        padding: 62px 0;
        background-attachment: scroll;
    }
    .local-parallax {
        padding: 62px 0;
        background-attachment: scroll;
    }
    .cellaris-hero { padding: 58px 0; }
    .cellaris-hero h1 { font-size: 38px; }
    .cellaris-hero__content > p { font-size: 18px; }
    .cellaris-logo-stage { min-height: 230px; }
    .cellaris-parallax {
        padding: 66px 0;
        background-attachment: scroll;
    }
    .cellaris-documents__visual {
        min-height: 390px;
        padding: 26px 42px 74px 20px;
    }
    .cellaris-document { min-height: 300px; padding: 24px; }
    .cellaris-document-badge { right: 12px; bottom: 18px; width: 220px; }
    .cellaris-workflow article { min-height: 0; }
    .demo-hero { padding: 54px 0; }
    .demo-hero h1 { font-size: 36px; }
    .demo-hero p { font-size: 17px; }
    .demo-form { padding: 22px 18px; }
    .demo-fields { grid-template-columns: 1fr; }
    .demo-field--wide { grid-column: auto; }
    .demo-benefits { padding: 24px; }
    .academy-hero { padding: 58px 0; }
    .academy-hero h1 { font-size: 38px; }
    .academy-hero__grid > div:first-child > p { font-size: 18px; }
    .academy-dashboard { padding: 18px; }
    .aulenza-logo-stage { min-height: 230px; }
    .academy-parallax {
        padding: 66px 0;
        background-attachment: scroll;
    }
    .academy-course__timeline {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .blog-index { padding: 44px 0; }
    .blog-index .container { gap: 28px; }
    .blog-index__links { grid-template-columns: 1fr; }
    .blog-index__heading h2,
    .blog-category__header h2,
    .related-posts > .container > h2 { font-size: 30px; }
    .article-header { padding: 46px 0; }
    .article-header h1 { font-size: 38px; }
    .article-header p { font-size: 18px; }
    .article-featured-media { height: 280px; }
    .article-layout { display: block; padding-top: 44px; padding-bottom: 50px; }
    .article-toc { position: static; margin-bottom: 46px; }
    .article-body h2 { font-size: 29px; }
    .article-body p { font-size: 17px; }
    .article-inline-cta { padding: 26px 22px; }
    .article-inline-cta h3 { font-size: 24px; }
    .article-step-image--landscape img { height: 300px; }
    .article-cta { padding: 54px 0; }
    .article-cta h2 { font-size: 32px; }
    .academy-course__timeline > svg {
        margin: 0 auto;
        transform: rotate(90deg);
    }
    .academy-receipt-flow__months { grid-template-columns: repeat(2, 1fr); }
    .academy-invoice-visual {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .academy-invoice-visual > svg {
        margin: 0 auto;
        transform: rotate(90deg);
    }
    .academy-debt__visual { grid-template-columns: 1fr; gap: 8px; }
    .academy-debt__arrow { text-align: center; transform: rotate(90deg); }
    .academy-email-warning__inner { grid-template-columns: 1fr; }
    .academy-workflow article { min-height: 0; }
    .ai-impact-metrics article,
    .ai-use-case-grid article,
    .local-metrics article,
    .local-feature-grid article {
        min-height: 0;
    }
    .ai-workflow__steps span {
        grid-row: auto;
        margin-bottom: 12px;
    }
    .local-workflow__steps span {
        grid-row: auto;
        margin-bottom: 12px;
    }
    .footer-bottom, .cookie-actions { flex-direction: column; align-items: stretch; }
    .cookie-main,
    .cookie-settings { grid-template-columns: 1fr; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }
}
