:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #eef4fb;
    --surface-dark: #071a2c;
    --text: #132033;
    --muted: #5c6b7d;
    --line: #d9e2ec;
    --primary: #0a67c7;
    --primary-dark: #074a91;
    --accent: #19a974;
    --accent-dark: #0c7b52;
    --warning: #f6b73c;
    --shadow-sm: 0 10px 28px rgba(18, 45, 76, .08);
    --shadow-lg: 0 24px 70px rgba(10, 44, 80, .16);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--primary-dark);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover {
    color: var(--primary);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 .65em;
    line-height: 1.16;
    letter-spacing: -.025em;
}

h1 {
    font-size: clamp(2.35rem, 6vw, 4.75rem);
}

h2 {
    font-size: clamp(1.85rem, 3.6vw, 3.2rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
    margin: 0 0 1.2em;
}

ul,
ol {
    padding-left: 1.25rem;
}

address {
    font-style: normal;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.content-narrow {
    max-width: 880px;
}

.section {
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-compact {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-dark {
    color: #f7fbff;
    background:
        radial-gradient(circle at 12% 20%, rgba(30, 137, 222, .28), transparent 28rem),
        radial-gradient(circle at 82% 88%, rgba(25, 169, 116, .22), transparent 25rem),
        var(--surface-dark);
}

.section-header {
    max-width: 780px;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-dark .section-header p:last-child {
    color: #bdd0df;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 1rem;
    color: var(--primary-dark);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow-light {
    color: #a9ddff;
}

.lead {
    max-width: 760px;
    color: #d6e5f1;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: .75rem;
    left: .75rem;
    padding: .7rem 1rem;
    border-radius: .6rem;
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .78rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(10, 103, 199, .22);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    color: #fff;
    background: var(--primary-dark);
    box-shadow: 0 12px 28px rgba(10, 103, 199, .28);
    transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(10, 103, 199, .35);
    outline-offset: 3px;
}

.button-secondary {
    color: var(--primary-dark);
    background: #fff;
    border-color: #b9d1e8;
    box-shadow: none;
}

.button-secondary:hover {
    color: #fff;
    background: var(--primary-dark);
}

.button-light {
    color: var(--surface-dark);
    background: #fff;
    box-shadow: none;
}

.button-light:hover {
    color: var(--surface-dark);
    background: #dff3ff;
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, .45);
    background: transparent;
    box-shadow: none;
}

.button-ghost-light:hover {
    background: rgba(255, 255, 255, .12);
}

.button-small {
    min-height: 42px;
    padding: .65rem 1rem;
    font-size: .9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    content: "→";
    transition: transform .2s ease;
}

.text-link:hover::after {
    transform: translateX(.25rem);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(203, 216, 230, .76);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .72rem;
    color: var(--text);
    text-decoration: none;
}

.brand:hover {
    color: var(--text);
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    box-shadow: 0 8px 18px rgba(10, 103, 199, .22);
    font-size: 1.35rem;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    letter-spacing: .05em;
}

.brand-copy small {
    margin-top: .28rem;
    color: var(--muted);
    font-size: .68rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
}

.nav-link,
.nav-group-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: .3rem;
    padding: .55rem .72rem;
    border: 0;
    border-radius: 10px;
    color: #26384a;
    background: transparent;
    font-size: .9rem;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

.nav-link:hover,
.nav-group-toggle:hover,
.nav-link.is-active,
.nav-group-toggle.is-active {
    color: var(--primary-dark);
    background: #eaf3fc;
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + .55rem);
    left: 0;
    display: grid;
    min-width: 250px;
    padding: .55rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown a {
    padding: .72rem .8rem;
    border-radius: 10px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-dropdown a:hover {
    color: var(--primary-dark);
    background: var(--surface-soft);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    place-items: center;
    padding: .55rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 9% 10%, rgba(37, 154, 240, .35), transparent 28rem),
        radial-gradient(circle at 90% 90%, rgba(25, 169, 116, .3), transparent 26rem),
        linear-gradient(145deg, #061726 0%, #0b2a48 56%, #073d48 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .15;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-inner {
    position: relative;
    display: grid;
    min-height: 690px;
    align-items: center;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    padding-block: clamp(5rem, 9vw, 8.5rem);
}

.hero-copy h1 {
    max-width: 900px;
}

.hero-copy h1 span {
    color: #8ee8c8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.8rem;
    padding: 0;
    margin: 2.2rem 0 0;
    list-style: none;
    color: #c7dceb;
    font-size: .92rem;
}

.hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.hero-proof li::before {
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border-radius: 50%;
    color: #041c17;
    background: #8ee8c8;
    content: "✓";
    font-size: .75rem;
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.dashboard-card {
    position: absolute;
    inset: 6% 0 auto 7%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    background: rgba(255, 255, 255, .11);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    backdrop-filter: blur(16px);
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.dashboard-dots {
    display: flex;
    gap: .35rem;
}

.dashboard-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin-top: 1rem;
}

.metric-card {
    min-height: 112px;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .1);
}

.metric-card span {
    display: block;
    color: #bed2e1;
    font-size: .78rem;
}

.metric-card strong {
    display: block;
    margin-top: .5rem;
    font-size: 1.35rem;
}

.metric-card.wide {
    grid-column: 1 / -1;
}

.fake-chart {
    display: flex;
    height: 82px;
    align-items: end;
    gap: .4rem;
    margin-top: .8rem;
}

.fake-chart i {
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(to top, #19a974, #8ee8c8);
}

.float-card {
    position: absolute;
    display: grid;
    min-width: 180px;
    gap: .2rem;
    padding: .9rem 1rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(5, 29, 46, .9);
    box-shadow: var(--shadow-lg);
}

.float-card span {
    color: #9fb9cb;
    font-size: .75rem;
}

.float-card strong {
    font-size: .95rem;
}

.float-card-one {
    right: -3%;
    bottom: 18%;
}

.float-card-two {
    bottom: 3%;
    left: -2%;
}

.page-hero {
    color: #fff;
    background:
        radial-gradient(circle at 86% 12%, rgba(25, 169, 116, .3), transparent 23rem),
        radial-gradient(circle at 14% 86%, rgba(35, 139, 226, .22), transparent 25rem),
        linear-gradient(145deg, #061726 0%, #0b2a48 70%, #073d48 100%);
}

.page-hero-inner {
    display: grid;
    min-height: 510px;
    align-items: center;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.page-hero .lead {
    margin-bottom: 0;
}

.page-hero-card {
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 24px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 28px 70px rgba(0,0,0,.25);
    backdrop-filter: blur(15px);
}

.page-hero-card h2 {
    font-size: 1.15rem;
}

.page-hero-card ul {
    display: grid;
    gap: .8rem;
    padding: 0;
    margin: 1.25rem 0 0;
    list-style: none;
}

.page-hero-card li {
    display: flex;
    gap: .7rem;
    color: #d5e6f2;
}

.page-hero-card li::before {
    flex: 0 0 auto;
    color: #8ee8c8;
    content: "✓";
    font-weight: 900;
}

.breadcrumbs {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .65rem;
    width: min(calc(100% - 2rem), var(--container));
    padding: 0;
    margin: 0 auto;
    list-style: none;
    color: var(--muted);
    font-size: .86rem;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: .65rem;
    color: #9aacbd;
    content: "/";
}

.breadcrumbs a {
    text-decoration: none;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 1.25rem;
}

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

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

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

.card {
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.card h3 {
    margin-bottom: .55rem;
}

.card p:last-child,
.card ul:last-child {
    margin-bottom: 0;
}

.card-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    color: var(--primary-dark);
    background: #e6f2ff;
    font-size: 1.3rem;
    font-weight: 900;
}

.service-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.service-card p {
    color: var(--muted);
}

.service-card .text-link {
    margin-top: auto;
}

.feature-list {
    display: grid;
    gap: .8rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 1.7rem;
}

.feature-list li::before {
    position: absolute;
    top: .07rem;
    left: 0;
    color: var(--accent-dark);
    content: "✓";
    font-weight: 900;
}

.split {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
}

.split-top {
    align-items: start;
}

.visual-panel {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(25,169,116,.35), transparent 15rem),
        linear-gradient(145deg, #0a2945, #0b5a67);
    box-shadow: var(--shadow-lg);
}

.visual-panel::after {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    border: 45px solid rgba(255,255,255,.08);
    border-radius: 50%;
    content: "";
}

.visual-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .9rem;
}

.visual-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    background: rgba(255,255,255,.09);
}

.visual-row small {
    display: block;
    color: #bcd4e4;
}

.visual-row strong {
    font-size: .95rem;
}

.visual-pill {
    flex: 0 0 auto;
    padding: .28rem .55rem;
    border-radius: 999px;
    color: #052016;
    background: #8ee8c8;
    font-size: .72rem;
    font-weight: 900;
}

.stats-strip {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: var(--shadow-sm);
}

.stat {
    padding: 1.6rem;
    text-align: center;
}

.stat + .stat {
    border-left: 1px solid var(--line);
}

.stat strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.35rem;
}

.stat span {
    display: block;
    margin-top: .35rem;
    color: var(--muted);
    font-size: .85rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    counter-reset: process;
}

.process-step {
    position: relative;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    counter-increment: process;
}

.process-step::before {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    color: #fff;
    background: var(--primary);
    content: counter(process, decimal-leading-zero);
    font-size: .82rem;
    font-weight: 900;
}

.process-step p {
    color: var(--muted);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.tag-list li {
    padding: .45rem .72rem;
    border: 1px solid #b9d3e8;
    border-radius: 999px;
    color: var(--primary-dark);
    background: #eff7ff;
    font-size: .82rem;
    font-weight: 800;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    color: #fff;
    background: var(--surface-dark);
    font-size: .86rem;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table td:first-child {
    min-width: 190px;
    font-weight: 800;
}

.note {
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--warning);
    border-radius: 0 12px 12px 0;
    background: #fff8e8;
    color: #594315;
}

.faq-list {
    display: grid;
    gap: .8rem;
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(18,45,76,.05);
}

.faq-item summary {
    position: relative;
    padding: 1.15rem 3.2rem 1.15rem 1.2rem;
    list-style: none;
    font-weight: 850;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    content: "+";
    color: var(--primary);
    font-size: 1.4rem;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.2rem 1.15rem;
    color: var(--muted);
}

.faq-answer p:last-child {
    margin: 0;
}

.cta-section {
    padding-top: 0;
}

.cta-card {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3.6rem);
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(142,232,200,.25), transparent 18rem),
        linear-gradient(135deg, #08375e, #0b6b70);
    box-shadow: var(--shadow-lg);
}

.cta-card p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: #d3e7f2;
}

.cta-actions {
    display: grid;
    gap: .75rem;
}

.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: clamp(2rem, 6vw, 5rem);
}

.form-card,
.contact-card {
    padding: clamp(1.4rem, 4vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

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

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

.field-full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .88rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: .8rem .9rem;
    border: 1px solid #bfcddd;
    border-radius: 11px;
    color: var(--text);
    background: #fff;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field-honeypot {
    position: absolute;
    left: -9999px;
}

.form-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: .82rem;
}

.alert {
    padding: 1rem 1.15rem;
    margin-bottom: 1.2rem;
    border-radius: 12px;
}

.alert-error {
    border: 1px solid #efb3b3;
    color: #7b2020;
    background: #fff0f0;
}

.alert-success {
    border: 1px solid #a6dbc4;
    color: #155c42;
    background: #ebfff5;
}

.contact-list {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 1.4rem 0 0;
    list-style: none;
}

.contact-list li {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-list span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
    display: inline-block;
    margin-top: .25rem;
    color: var(--text);
    font-weight: 850;
    text-decoration: none;
}

.site-footer {
    padding: 4.5rem 0 1.5rem;
    color: #d8e4ee;
    background: #061522;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
    gap: 2rem;
}

.brand-footer {
    color: #fff;
}

.brand-footer:hover {
    color: #fff;
}

.brand-footer .brand-copy small {
    color: #9eb2c2;
}

.footer-intro {
    max-width: 350px;
    margin-top: 1rem;
    color: #9eb2c2;
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: .55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a {
    color: #c7d7e3;
    text-decoration: none;
}

.site-footer a:hover {
    color: #8ee8c8;
}

.site-footer address {
    color: #9eb2c2;
    line-height: 1.9;
}

.footer-whatsapp {
    display: inline-flex;
    margin-top: .8rem;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #8499a9;
    font-size: .82rem;
}

.footer-bottom p {
    margin: 0;
}

.error-page {
    display: grid;
    min-height: 65vh;
    place-items: center;
    text-align: center;
}

.error-code {
    margin-bottom: .2rem;
    color: var(--primary);
    font-size: clamp(4rem, 15vw, 9rem);
    font-weight: 950;
    line-height: 1;
}

@media (max-width: 1080px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: none;
        max-height: calc(100vh - var(--header-height));
        align-items: stretch;
        padding: 1rem;
        border-top: 1px solid var(--line);
        background: #fff;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .primary-nav.is-open {
        display: grid;
    }

    .nav-link,
    .nav-group-toggle {
        width: 100%;
        justify-content: space-between;
        padding: .8rem .9rem;
    }

    .nav-dropdown {
        position: static;
        display: none;
        min-width: 0;
        margin: .25rem 0 .6rem;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-group.is-open .nav-dropdown {
        display: grid;
    }

    .hero-inner,
    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

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

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

@media (max-width: 780px) {
    :root {
        --header-height: 70px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-visual {
        min-height: 410px;
    }

    .dashboard-card {
        inset: 0;
    }

    .float-card-one {
        right: 1%;
    }

    .float-card-two {
        left: 1%;
    }

    .grid-2,
    .grid-3,
    .split,
    .contact-layout,
    .cta-card {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .stat:nth-child(4) {
        border-top: 1px solid var(--line);
    }

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

    .field-full {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .section {
        padding-block: 4rem;
    }

    .hero-inner,
    .page-hero-inner {
        padding-block: 4.25rem;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 370px;
    }

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

    .metric-card.wide {
        grid-column: auto;
    }

    .float-card {
        min-width: 150px;
        padding: .72rem .8rem;
    }

    .grid-4,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: 1fr;
    }

    .stat + .stat,
    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Content and media helpers added for the multi-page SEO structure. */
.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(10, 103, 199, .22);
}

.media-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.media-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.media-card figcaption {
    padding: .8rem 1rem;
    color: var(--muted);
    font-size: .78rem;
}

.prose {
    max-width: 820px;
}

.prose > *:last-child {
    margin-bottom: 0;
}

.prose h2 {
    margin-top: 1.5em;
}

.prose h3 {
    margin-top: 1.35em;
}

.card-accent {
    border-top: 4px solid var(--accent);
}

.card-primary {
    border-top: 4px solid var(--primary);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem 1.4rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.check-grid li {
    position: relative;
    padding-left: 1.6rem;
}

.check-grid li::before {
    position: absolute;
    top: .05rem;
    left: 0;
    color: var(--accent-dark);
    content: "✓";
    font-weight: 900;
}

.inline-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.4rem;
    border: 1px solid #b9d3e8;
    border-radius: var(--radius);
    background: #eff7ff;
}

.inline-cta p {
    max-width: 700px;
    margin: 0;
}

.trademark-note {
    padding: 1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
    background: #f8fafc;
    font-size: .86rem;
}

.service-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.service-index a {
    display: block;
    min-height: 100%;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text);
    background: #fff;
    font-weight: 800;
    text-decoration: none;
}

.service-index a:hover {
    border-color: #9fc5e8;
    color: var(--primary-dark);
    background: #f5faff;
}

@media (max-width: 720px) {
    .check-grid,
    .service-index {
        grid-template-columns: 1fr;
    }
}

/* Componentes adicionales del sitio multipágina */
.brand-logo {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(10, 103, 199, .22);
}

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem .72rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #d9f3ff;
    background: rgba(255, 255, 255, .08);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.page-intro {
    max-width: 720px;
    color: #d6e5f1;
    font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.card-number {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    font-weight: 900;
}

.card-accent {
    border-color: #b8d9f5;
    background: linear-gradient(145deg, #fff, #f3f9ff);
}

.card-dark {
    color: #f7fbff;
    border-color: rgba(255,255,255,.12);
    background: #0b263d;
}

.card-dark p,
.card-dark li {
    color: #c4d7e5;
}

.card-dark h3,
.card-dark a {
    color: #fff;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem 1.2rem;
    padding: 0;
    margin: 1.6rem 0 0;
    list-style: none;
}

.check-grid li {
    position: relative;
    padding: .9rem 1rem .9rem 2.8rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.check-grid li::before {
    position: absolute;
    top: .88rem;
    left: 1rem;
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent-dark);
    content: "✓";
    font-size: .72rem;
    font-weight: 900;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.5rem;
}

.pill-link {
    display: inline-flex;
    align-items: center;
    padding: .55rem .82rem;
    border: 1px solid #b9d3e8;
    border-radius: 999px;
    color: var(--primary-dark);
    background: #fff;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
}

.pill-link:hover {
    color: #fff;
    border-color: var(--primary-dark);
    background: var(--primary-dark);
}

.callout {
    padding: 1.25rem 1.35rem;
    border: 1px solid #b9d7ec;
    border-left: 5px solid var(--primary);
    border-radius: 0 16px 16px 0;
    background: #f2f8fe;
}

.callout p:last-child {
    margin-bottom: 0;
}

.callout-warning {
    border-color: #ead5a4;
    border-left-color: var(--warning);
    background: #fff9ec;
}

.trademark-note {
    padding: 1rem 1.15rem;
    margin-top: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
    background: #fff;
    font-size: .84rem;
}

.source-list {
    display: grid;
    gap: .55rem;
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.source-list a {
    font-weight: 750;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-top: 1.25rem;
    color: #b9cfde;
    font-size: .84rem;
}

.related-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.related-card p {
    color: var(--muted);
}

.related-card .text-link {
    margin-top: auto;
}

.list-clean {
    display: grid;
    gap: .75rem;
    padding: 0;
    margin: 1.2rem 0 0;
    list-style: none;
}

.list-clean li {
    padding: .9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.list-clean strong {
    display: block;
    margin-bottom: .2rem;
}

.service-label {
    display: inline-block;
    padding: .32rem .55rem;
    margin-bottom: .9rem;
    border-radius: 999px;
    color: var(--primary-dark);
    background: #e7f3ff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hero-contact {
    display: grid;
    gap: .75rem;
    margin-top: 1.6rem;
}

.hero-contact a {
    color: #fff;
    font-weight: 800;
}

.fake-chart .bar-1 { height: 36%; }
.fake-chart .bar-2 { height: 58%; }
.fake-chart .bar-3 { height: 47%; }
.fake-chart .bar-4 { height: 77%; }
.fake-chart .bar-5 { height: 69%; }
.fake-chart .bar-6 { height: 92%; }
.fake-chart .bar-7 { height: 83%; }

.metric-note {
    margin-top: .35rem;
    color: #bcd4e4;
    font-size: .76rem;
}

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

.choice-box {
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.choice-box h3 {
    color: var(--primary-dark);
}

.choice-box ul {
    display: grid;
    gap: .6rem;
    margin-bottom: 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.4rem;
}

.form-card button {
    cursor: pointer;
}

.legal-copy {
    color: var(--muted);
    font-size: .82rem;
}

.legal-copy a {
    font-weight: 750;
}

.vendor-card {
    position: relative;
    overflow: hidden;
}

.vendor-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-anchor {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 780px) {
    .check-grid,
    .compare-choice {
        grid-template-columns: 1fr;
    }
}

/* Componentes adicionales del sitio multipagina */
.brand-logo {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(10, 103, 199, .2);
    object-fit: cover;
}

button.button {
    cursor: pointer;
}

.article-meta {
    margin: 1.2rem 0 0;
    color: #a9c2d5;
    font-size: .9rem;
}

.media-frame {
    overflow: hidden;
    min-height: 360px;
    border-radius: var(--radius-lg);
    background: #dfe9f2;
    box-shadow: var(--shadow-lg);
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.prose {
    max-width: 850px;
}

.prose h2,
.prose h3 {
    margin-top: 1.6em;
}

.prose p,
.prose li {
    color: #435569;
}

.content-list {
    display: grid;
    gap: .8rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.content-list li {
    position: relative;
    padding: .9rem 1rem .9rem 2.8rem;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.content-list li::before {
    position: absolute;
    top: .92rem;
    left: 1rem;
    color: var(--accent-dark);
    content: "✓";
    font-weight: 900;
}

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

.decision-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.decision-card.is-highlighted {
    border-color: #8cc7b2;
    background: #effcf7;
}

.decision-card p:last-child,
.decision-card ul:last-child {
    margin-bottom: 0;
}

.trademark-note,
.editorial-note {
    padding: 1rem 1.2rem;
    border: 1px solid #c9d6e3;
    border-radius: 14px;
    color: #4a5d70;
    background: #f7fafc;
    font-size: .88rem;
}

.trademark-note strong,
.editorial-note strong {
    color: var(--text);
}

.source-list {
    display: grid;
    gap: .7rem;
    padding: 0;
    margin: 1.2rem 0 0;
    list-style: none;
}

.source-list li {
    padding: .85rem 1rem;
    border-left: 3px solid var(--primary);
    background: #f2f7fc;
}

.source-list a {
    font-weight: 800;
}

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

.keyword-path {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: 17px;
    color: var(--text);
    background: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.keyword-path:hover {
    color: var(--text);
    border-color: #a8c8e5;
    transform: translateY(-2px);
}

.keyword-path strong {
    display: block;
    margin-bottom: .45rem;
}

.keyword-path span {
    color: var(--muted);
    font-size: .9rem;
}

.numbered-list {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
    counter-reset: item;
}

.numbered-list li {
    position: relative;
    min-height: 56px;
    padding: .8rem .8rem .8rem 4rem;
    counter-increment: item;
}

.numbered-list li::before {
    position: absolute;
    top: .6rem;
    left: 0;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--primary);
    content: counter(item);
    font-weight: 900;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.contact-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: .7rem;
    color: var(--muted);
    font-size: .86rem;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    margin-top: .15rem;
}

.footer-legal {
    margin-top: 1rem !important;
}

.related-section {
    background: #fff;
}

.brand-reference {
    font-weight: 900;
    letter-spacing: .01em;
}

@media (max-width: 1080px) {
    .keyword-paths {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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

    .media-frame,
    .media-frame img {
        min-height: 260px;
    }
}

.page-hero-compact .page-hero-inner {
    min-height: auto;
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
