:root {
    --nexus-blue: #0071e3;
    --nexus-blue-hover: #0077ed;
    --nexus-black: #000000;
    --nexus-ink: #1d1d1f;
    --nexus-muted: #6e6e73;
    --nexus-soft: #f5f5f7;
    --nexus-line: rgba(0, 0, 0, 0.1);
    --nexus-white: #ffffff;
    --nexus-radius: 22px;
    --nexus-shadow: 0 14px 40px rgba(0, 0, 0, 0.055);
}

html {
    scroll-behavior: smooth;
}

body.nexus-inicio-activo {
    margin: 0;
    overflow-x: hidden;
    color: var(--nexus-ink);
    background: var(--nexus-white);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nexus-inicio-activo *,
body.nexus-inicio-activo *::before,
body.nexus-inicio-activo *::after {
    box-sizing: border-box;
}

body.nexus-inicio-activo a {
    color: inherit;
}

body.nexus-inicio-activo img {
    display: block;
    max-width: 100%;
}

body.nexus-inicio-activo h1,
body.nexus-inicio-activo h2,
body.nexus-inicio-activo h3,
body.nexus-inicio-activo p {
    margin-top: 0;
}

body.nexus-inicio-activo h1,
body.nexus-inicio-activo h2,
body.nexus-inicio-activo h3 {
    color: var(--nexus-ink);
    font-weight: 600;
    letter-spacing: -0.035em;
}

body.nexus-inicio-activo h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: 1.03;
}

body.nexus-inicio-activo h2 {
    margin-bottom: 14px;
    font-size: clamp(29px, 3vw, 40px);
    line-height: 1.07;
}

body.nexus-inicio-activo h3 {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.16;
}

.nexus-container {
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
}

.nexus-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--nexus-white);
    background: var(--nexus-black);
    border-radius: 999px;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

.nexus-topbar {
    color: var(--nexus-ink);
    background: var(--nexus-soft);
    font-size: 12px;
    letter-spacing: 0.01em;
}

.nexus-topbar .nexus-container {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nexus-device-line {
    text-align: center;
}

.nexus-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

body.admin-bar .nexus-header {
    top: 32px;
}

.nexus-header__inner {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 22px;
}

.nexus-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.nexus-brand img {
    width: auto;
    height: 36px;
    object-fit: contain;
}

.nexus-brand--header img {
    height: 42px;
}

.nexus-nav--desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nexus-nav--desktop a {
    position: relative;
    color: #3a3a3c;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.nexus-nav-services {
    position: relative;
    color: #3a3a3c;
    font-size: 13px;
    font-weight: 500;
}

.nexus-nav-services summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.nexus-nav-services summary::-webkit-details-marker {
    display: none;
}

.nexus-nav-services summary::before {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--nexus-ink);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nexus-nav-services summary::after {
    width: 5px;
    height: 5px;
    margin-top: -2px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.nexus-nav-services[open] summary::after {
    margin-top: 3px;
    transform: rotate(225deg);
}

.nexus-nav-services summary:hover::before,
.nexus-nav-services summary:focus-visible::before,
.nexus-nav-services[open] summary::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nexus-nav-services__panel {
    position: absolute;
    z-index: 1100;
    top: calc(100% + 17px);
    left: 50%;
    width: 260px;
    padding: 7px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    backdrop-filter: saturate(180%) blur(24px);
    transform: translateX(-50%);
}

.nexus-nav-services__panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--nexus-ink);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.nexus-nav-services__panel a::after {
    display: none;
}

.nexus-nav-services__panel a:hover,
.nexus-nav-services__panel a:focus-visible {
    background: rgba(0, 0, 0, 0.045);
}

.nexus-nav--desktop a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--nexus-ink);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nexus-nav--desktop a:hover::after,
.nexus-nav--desktop a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nexus-header__cta {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    color: var(--nexus-white) !important;
    background: var(--nexus-blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
}

.nexus-header__cta:hover {
    background: var(--nexus-blue-hover);
    transform: translateY(-1px);
}

.nexus-menu-button,
.nexus-nav--mobile {
    display: none;
}

.nexus-hero {
    padding: 56px 0 76px;
    background: var(--nexus-white);
}

.nexus-hero__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 4.5vw, 54px);
}

.nexus-eyebrow {
    margin-bottom: 12px;
    color: var(--nexus-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: none;
}

.nexus-lead {
    max-width: 570px;
    margin-bottom: 22px;
    color: var(--nexus-muted);
    font-size: clamp(17px, 1.4vw, 19.5px);
    line-height: 1.45;
}

.nexus-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.nexus-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nexus-button:hover {
    transform: translateY(-2px);
}

.nexus-button--primary {
    color: var(--nexus-white) !important;
    background: var(--nexus-blue);
}

.nexus-button--primary:hover {
    background: var(--nexus-blue-hover);
}

.nexus-button--secondary {
    color: var(--nexus-blue) !important;
    border-color: var(--nexus-blue);
    background: transparent;
}

.nexus-button--secondary:hover {
    color: var(--nexus-white) !important;
    background: var(--nexus-blue);
}

.nexus-button--light {
    color: var(--nexus-black) !important;
    background: var(--nexus-white);
}

.nexus-button--light:hover {
    background: #e8e8ed;
}

.nexus-hero__visual {
    position: relative;
}

.nexus-hero__visual > img {
    width: 100%;
    min-height: 380px;
    border-radius: var(--nexus-radius);
    box-shadow: var(--nexus-shadow);
    object-fit: cover;
    object-position: center;
}

.nexus-hero__badge {
    position: absolute;
    left: clamp(22px, 3vw, 38px);
    bottom: clamp(22px, 3vw, 34px);
    z-index: 2;
    display: block;
    max-width: 260px;
    padding: 0;
    color: #1d1d1f;
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.72);
}

.nexus-hero__badge strong {
    display: block;
    color: #1d1d1f;
    font-size: clamp(12px, 1.05vw, 14px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.nexus-hero__badge span {
    display: block;
    margin-top: 2px;
    color: #1d1d1f;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.nexus-section {
    padding: 76px 0;
    scroll-margin-top: 100px;
}

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

.nexus-section-heading {
    max-width: 680px;
}

.nexus-section-heading--center {
    margin: 0 auto 34px;
    text-align: center;
}

.nexus-section-heading > p:not(.nexus-eyebrow) {
    margin-bottom: 0;
    color: var(--nexus-muted);
    font-size: 16.5px;
}

.nexus-repair-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.nexus-repair-card {
    --nexus-hover-y: 0px;
    --nexus-reveal-y: 0px;
    display: flex;
    min-height: 174px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 22px 20px;
    background: var(--nexus-white);
    border: 1px solid transparent;
    border-radius: 20px;
    color: inherit;
    text-align: center;
    text-decoration: none;
    transform: translateY(calc(var(--nexus-reveal-y) + var(--nexus-hover-y)));
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nexus-repair-card:hover {
    --nexus-hover-y: -2px;
    border-color: rgba(0, 113, 227, 0.2);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
}

.nexus-repair-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    overflow: visible;
    color: var(--nexus-blue);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.nexus-repair-icon__fill {
    fill: currentColor;
    opacity: 0.14;
    stroke: none;
}

.nexus-repair-card p {
    margin-bottom: 0;
    color: var(--nexus-muted);
    font-size: 14px;
    line-height: 1.45;
}

.nexus-center-action {
    margin-top: 26px;
    text-align: center;
}

.nexus-motion-ready .nexus-reveal:not(.nexus-repair-card) {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--nexus-reveal-delay, 0ms);
}

.nexus-motion-ready .nexus-repair-card.nexus-reveal {
    --nexus-reveal-y: 18px;
    opacity: 0;
    transition-delay: var(--nexus-reveal-delay, 0ms);
}

.nexus-motion-ready .nexus-reveal.is-visible:not(.nexus-repair-card) {
    opacity: 1;
    transform: translateY(0);
}

.nexus-motion-ready .nexus-repair-card.nexus-reveal.is-visible {
    --nexus-reveal-y: 0px;
    opacity: 1;
}

.nexus-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nexus-blue) !important;
    font-weight: 600;
    text-decoration: none;
}

.nexus-text-link span {
    transition: transform 180ms ease;
}

.nexus-text-link:hover span {
    transform: translateX(4px);
}

.nexus-lab {
    color: #f5f5f7;
    background: var(--nexus-black);
}

.nexus-split {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(34px, 5vw, 60px);
}

.nexus-split__media img {
    width: 100%;
    min-height: 380px;
    border-radius: var(--nexus-radius);
    object-fit: cover;
}

.nexus-lab h2 {
    color: var(--nexus-white) !important;
}

.nexus-split__copy > p:not(.nexus-eyebrow) {
    color: #a1a1a6;
    font-size: 17px;
}

.nexus-check-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.nexus-check-list li {
    position: relative;
    padding-left: 28px;
    color: #d2d2d7;
}

.nexus-check-list li::before {
    position: absolute;
    top: 0.48em;
    left: 2px;
    width: 9px;
    height: 9px;
    background: var(--nexus-blue);
    border-radius: 50%;
    content: "";
}

.nexus-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.nexus-feature-card {
    position: relative;
    display: flex;
    min-height: 440px;
    flex-direction: column;
    overflow: hidden;
    background: var(--nexus-soft);
    border-radius: var(--nexus-radius);
}

.nexus-feature-card--wide {
    min-height: 500px;
    grid-column: 1 / -1;
}

.nexus-feature-card__copy {
    position: relative;
    z-index: 2;
    max-width: 670px;
    padding: clamp(28px, 3.5vw, 42px);
}

.nexus-feature-card__copy h2 {
    max-width: 680px;
}

.nexus-feature-card__copy > p:not(.nexus-eyebrow) {
    max-width: 620px;
    color: var(--nexus-muted);
    font-size: 16px;
}

.nexus-feature-card > img {
    width: 100%;
    height: 240px;
    margin-top: auto;
    object-fit: cover;
}

.nexus-feature-card--wide > img {
    height: clamp(310px, 31vw, 360px);
}

.nexus-feature-card--trade {
    color: var(--nexus-white);
    background:
        radial-gradient(circle at 78% 75%, rgba(0, 113, 227, 0.72), transparent 32%),
        linear-gradient(145deg, #121214 0%, #000 76%);
}

.nexus-feature-card--trade h2 {
    color: var(--nexus-white) !important;
}

.nexus-feature-card--trade .nexus-feature-card__copy > p:not(.nexus-eyebrow) {
    color: #a1a1a6;
}

.nexus-trade-orb {
    position: absolute;
    right: -32px;
    bottom: -48px;
    display: grid;
    width: 180px;
    height: 180px;
    place-items: center;
    color: var(--nexus-white);
    background: var(--nexus-blue);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(0, 113, 227, 0.4);
}

.nexus-trade-orb svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.nexus-trust {
    background: var(--nexus-soft);
}

.nexus-review-carousel {
    max-width: 760px;
    margin: 0 auto 22px;
}

.nexus-review-viewport {
    overflow: hidden;
    border-radius: 22px;
}

.nexus-review-track {
    display: flex;
    transform: translateX(0);
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.nexus-review-slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 1px;
}

.nexus-review-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: clamp(28px, 4vw, 42px);
    background: var(--nexus-white);
    border: 1px solid var(--nexus-line);
    border-radius: 22px;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nexus-review-card:hover {
    border-color: rgba(0, 113, 227, 0.18);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
    transform: translateY(-2px);
}

.nexus-review-card__stars {
    color: #e8a400;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1;
}

.nexus-review-card blockquote {
    margin: 22px 0 30px;
    color: var(--nexus-ink);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.18;
}

.nexus-review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.nexus-review-avatar {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    overflow: hidden;
    place-items: center;
    color: var(--nexus-blue);
    background: #eaf4ff;
    border: 1px solid rgba(0, 113, 227, 0.12);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nexus-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nexus-review-avatar--initials {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.62), transparent),
        #dceeff;
}

.nexus-review-card__author-copy {
    display: grid;
    gap: 1px;
}

.nexus-review-card__author-copy strong {
    color: var(--nexus-ink);
    font-size: 14px;
}

.nexus-review-card__author-copy > span {
    color: var(--nexus-muted);
    font-size: 12px;
}

.nexus-review-controls {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.nexus-review-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nexus-review-dots button,
.nexus-review-toggle {
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    cursor: pointer;
}

.nexus-review-dots button {
    width: 8px;
    height: 8px;
    background: #b9b9be;
    border-radius: 50%;
    transition: background 180ms ease, transform 180ms ease;
}

.nexus-review-dots button:hover,
.nexus-review-dots button.is-active {
    background: var(--nexus-blue);
}

.nexus-review-dots button.is-active {
    transform: scale(1.2);
}

.nexus-review-toggle {
    width: 32px;
    height: 32px;
    color: var(--nexus-muted);
    background: rgba(0, 0, 0, 0.055);
    border-radius: 50%;
    transition: color 180ms ease, background 180ms ease;
}

.nexus-review-toggle:hover {
    color: var(--nexus-blue);
    background: rgba(0, 113, 227, 0.09);
}

.nexus-review-toggle svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.nexus-review-toggle__play {
    display: none;
    fill: currentColor;
    stroke: none;
}

.nexus-review-toggle.is-paused .nexus-review-toggle__pause {
    display: none;
}

.nexus-review-toggle.is-paused .nexus-review-toggle__play {
    display: block;
}

.nexus-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--nexus-white);
    border: 1px solid var(--nexus-line);
    border-radius: var(--nexus-radius);
}

.nexus-stat {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-right: 1px solid var(--nexus-line);
    text-align: center;
    text-decoration: none;
}

.nexus-stat:last-child {
    border-right: 0;
}

a.nexus-stat {
    transition: background 180ms ease;
}

a.nexus-stat:hover {
    background: rgba(0, 113, 227, 0.045);
}

.nexus-stat__icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    place-items: center;
    color: var(--nexus-blue);
    background: rgba(0, 113, 227, 0.08);
    border-radius: 50%;
}

.nexus-stat__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.nexus-stat strong {
    color: var(--nexus-ink);
    font-size: clamp(21px, 1.9vw, 26px);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.nexus-stat > span:not(.nexus-stat__icon) {
    margin-top: 8px;
    color: var(--nexus-ink);
    font-size: 14px;
    font-weight: 600;
}

.nexus-stat small {
    margin-top: 4px;
    color: var(--nexus-muted);
    font-size: 13px;
}

.nexus-faq__grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 6vw, 84px);
}

.nexus-faq .nexus-section-heading {
    position: sticky;
    top: 120px;
}

.nexus-accordion {
    border-top: 1px solid var(--nexus-line);
}

.nexus-accordion details {
    border-bottom: 1px solid var(--nexus-line);
}

.nexus-accordion summary {
    position: relative;
    padding: 20px 50px 20px 0;
    color: var(--nexus-ink);
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    list-style: none;
}

.nexus-accordion summary::-webkit-details-marker {
    display: none;
}

.nexus-accordion summary::after {
    position: absolute;
    top: 14px;
    right: 4px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--nexus-blue);
    background: var(--nexus-soft);
    border-radius: 50%;
    content: "+";
    font-size: 22px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.nexus-accordion details[open] summary::after {
    transform: rotate(45deg);
}

.nexus-accordion details p {
    max-width: 700px;
    margin: -3px 58px 24px 0;
    color: var(--nexus-muted);
    font-size: 15px;
}

.nexus-contact {
    color: var(--nexus-white);
    background:
        radial-gradient(circle at 22% 18%, rgba(0, 113, 227, 0.45), transparent 28%),
        var(--nexus-black);
}

.nexus-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
    gap: 52px;
}

.nexus-contact h2 {
    max-width: 720px;
    color: var(--nexus-white) !important;
}

.nexus-contact address {
    color: #d2d2d7;
    font-size: 17px;
    font-style: normal;
}

.nexus-contact__details {
    display: grid;
    align-content: center;
    gap: 20px;
}

.nexus-contact__details > div:not(.nexus-actions) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.nexus-contact__details span {
    display: block;
    margin-bottom: 4px;
    color: #86868b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nexus-contact__details strong,
.nexus-contact__details a {
    color: var(--nexus-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.nexus-contact__details p {
    margin: 3px 0 0;
    color: #a1a1a6;
}

.nexus-contact__details > div:nth-child(2) {
    display: grid;
}

.nexus-contact__details > div:nth-child(2) a + a {
    margin-top: 4px;
    color: #7cbcff;
}

.nexus-contact .nexus-button--secondary {
    color: var(--nexus-white) !important;
    border-color: rgba(255, 255, 255, 0.65);
}

.nexus-contact .nexus-button--secondary:hover {
    border-color: var(--nexus-white);
    background: var(--nexus-white);
    color: var(--nexus-black) !important;
}

.nexus-footer {
    padding: 36px 0 24px;
    color: var(--nexus-muted);
    background: var(--nexus-soft);
    font-size: 12px;
    line-height: 1.45;
}

.nexus-footer__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--nexus-line);
}

.nexus-footer__identity p {
    margin: 10px 0 0;
    color: var(--nexus-muted);
}

.nexus-brand--footer img {
    height: 32px;
}

.nexus-footer__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
    color: #86868b;
    font-size: 12px;
}

.nexus-footer__contact a,
.nexus-footer__link-group a,
.nexus-footer__link-group button[data-nexus-cookie-settings] {
    color: var(--nexus-muted);
    font: inherit;
    text-decoration: none;
    transition: color 160ms ease;
}

.nexus-footer__contact a:hover,
.nexus-footer__link-group a:hover,
.nexus-footer__link-group button[data-nexus-cookie-settings]:hover {
    color: var(--nexus-blue);
}

.nexus-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px;
    padding: 24px 0;
    border-bottom: 1px solid var(--nexus-line);
}

.nexus-footer__link-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
}

.nexus-footer__label {
    flex-basis: 100%;
    margin-bottom: 2px;
    color: var(--nexus-ink);
    font-size: 12px;
    font-weight: 600;
}

.nexus-footer__link-group button[data-nexus-cookie-settings] {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nexus-footer__funding {
    display: grid;
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid var(--nexus-line);
}

.nexus-footer__funding-copy span {
    display: block;
    margin-bottom: 4px;
    color: var(--nexus-ink);
    font-size: 12px;
    font-weight: 600;
}

.nexus-footer__funding-copy p {
    max-width: 330px;
    margin: 0;
    color: var(--nexus-muted);
    font-size: 11px;
}

.nexus-footer__funding img {
    display: block;
    width: min(100%, 690px);
    height: auto;
    margin-left: auto;
}

.nexus-footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
}

.nexus-footer__bottom > p {
    margin: 0;
}

.nexus-footer__legal {
    max-width: 590px;
    color: #6e6e73;
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
}

.nexus-mobile-actions {
    display: none;
}

body.nexus-inicio-activo a:focus-visible,
body.nexus-inicio-activo button:focus-visible,
body.nexus-inicio-activo summary:focus-visible {
    outline: 3px solid rgba(0, 113, 227, 0.65);
    outline-offset: 4px;
}

[data-nexus-mobile-menu][hidden] {
    display: none !important;
}

@media (max-width: 1080px) {
    .nexus-nav--desktop {
        gap: 16px;
    }

    .nexus-nav--desktop a {
        font-size: 13px;
    }

    .nexus-hero__grid {
        grid-template-columns: 1fr;
    }

    .nexus-hero__copy {
        max-width: 860px;
    }

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

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

    .nexus-stat:nth-child(2) {
        border-right: 0;
    }

    .nexus-stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--nexus-line);
    }
}

@media (max-width: 899px) {
    body.nexus-menu-open {
        overflow: hidden;
    }

    .nexus-header__inner {
        min-height: 58px;
    }

    .nexus-brand--header img {
        height: 40px;
    }

    .nexus-nav--desktop,
    .nexus-header__cta {
        display: none;
    }

    .nexus-menu-button {
        display: grid;
        width: 42px;
        height: 42px;
        margin-left: auto;
        place-content: center;
        gap: 6px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .nexus-menu-button span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--nexus-ink);
        transition: transform 180ms ease;
    }

    .nexus-menu-button[aria-expanded="true"] span:first-child {
        transform: translateY(3.75px) rotate(45deg);
    }

    .nexus-menu-button[aria-expanded="true"] span:last-child {
        transform: translateY(-3.75px) rotate(-45deg);
    }

    .nexus-nav--mobile {
        position: absolute;
        z-index: 999;
        top: 100%;
        right: 0;
        left: 0;
        display: flex;
        height: calc(100vh - 58px);
        height: calc(100dvh - 58px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
    }

    .nexus-nav--mobile > a:not(.nexus-button) {
        padding: 16px 4px;
        border-bottom: 1px solid var(--nexus-line);
        color: var(--nexus-ink);
        font-size: 21px;
        font-weight: 600;
        letter-spacing: -0.03em;
        text-decoration: none;
    }

    .nexus-mobile-services {
        border-bottom: 1px solid var(--nexus-line);
    }

    .nexus-mobile-services summary {
        position: relative;
        padding: 16px 34px 16px 4px;
        color: var(--nexus-ink);
        font-size: 21px;
        font-weight: 600;
        letter-spacing: -0.03em;
        list-style: none;
        cursor: pointer;
    }

    .nexus-mobile-services summary::-webkit-details-marker {
        display: none;
    }

    .nexus-mobile-services summary::after {
        position: absolute;
        top: 50%;
        right: 8px;
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #86868b;
        border-bottom: 1.5px solid #86868b;
        content: "";
        transform: translateY(-65%) rotate(45deg);
        transition: transform 180ms ease;
    }

    .nexus-mobile-services[open] summary::after {
        transform: translateY(-30%) rotate(225deg);
    }

    .nexus-mobile-services__links {
        display: grid;
        padding: 0 4px 14px 16px;
    }

    .nexus-mobile-services__links a {
        padding: 9px 0;
        color: #515154;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: -0.01em;
        text-decoration: none;
    }

    .nexus-nav--mobile .nexus-button {
        margin-top: 28px;
    }

    .nexus-section {
        padding: 68px 0;
    }

    .nexus-split,
    .nexus-contact__grid,
    .nexus-faq__grid {
        grid-template-columns: 1fr;
    }

    .nexus-split__media {
        order: 2;
    }

    .nexus-faq .nexus-section-heading {
        position: static;
    }

    .nexus-feature-card {
        min-height: 440px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .nexus-header {
        top: 46px;
    }

}

@media (max-width: 700px) {
    body.nexus-inicio-activo {
        padding-bottom: 72px;
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
        font-size: 16px;
    }

    body.nexus-inicio-activo #qlwapp,
    body.nexus-inicio-activo .qlwapp,
    body.nexus-inicio-activo .qlwapp-toggle,
    body.nexus-inicio-activo #cmplz-manage-consent,
    body.nexus-inicio-activo .cmplz-manage-consent {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .nexus-footer__link-group button[data-nexus-cookie-settings]:not([hidden]) {
        display: inline;
    }

    .nexus-container {
        width: min(100% - 32px, 1200px);
    }

    .nexus-topbar .nexus-container {
        min-height: 42px;
        gap: 5px;
        flex-wrap: wrap;
        padding-block: 6px;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
    }

    .nexus-header__inner {
        min-height: 56px;
    }

    .nexus-brand--header img {
        height: 38px;
    }

    .nexus-nav--mobile {
        height: calc(100vh - 56px);
        height: calc(100dvh - 56px);
    }

    .nexus-hero {
        padding: 42px 0 58px;
    }

    body.nexus-inicio-activo h1 {
        font-size: clamp(34px, 10.5vw, 42px);
    }

    body.nexus-inicio-activo h2 {
        font-size: clamp(27px, 8.4vw, 34px);
    }

    .nexus-eyebrow {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .nexus-lead {
        font-size: 17px;
    }

    .nexus-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .nexus-button {
        width: 100%;
    }

    .nexus-hero__visual > img {
        min-height: 300px;
        object-position: 61% center;
    }

    .nexus-hero__badge {
        right: auto;
        bottom: 20px;
        left: 20px;
        max-width: 210px;
    }

    .nexus-hero__badge strong {
        font-size: 12px;
    }

    .nexus-hero__badge span {
        font-size: clamp(25px, 8vw, 31px);
    }

    .nexus-section {
        padding: 58px 0;
    }

    .nexus-section-heading--center {
        margin-bottom: 28px;
        text-align: left;
    }

    .nexus-repair-grid {
        grid-template-columns: 1fr;
    }

    .nexus-repair-card {
        min-height: 0;
        padding: 20px;
    }

    .nexus-repair-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 14px;
    }

    .nexus-split {
        gap: 30px;
    }

    .nexus-split__media img {
        min-height: 300px;
        object-position: 67% center;
    }

    .nexus-feature-grid {
        grid-template-columns: 1fr;
    }

    .nexus-feature-card,
    .nexus-feature-card--wide {
        min-height: 400px;
        grid-column: auto;
    }

    .nexus-feature-card__copy {
        padding: 28px 22px;
    }

    .nexus-feature-card--wide > img {
        min-height: 0;
        height: 250px;
    }

    .nexus-trade-orb {
        right: -34px;
        bottom: -48px;
        width: 160px;
        height: 160px;
    }

    .nexus-review-card {
        min-height: 230px;
        padding: 22px;
    }

    .nexus-review-card blockquote {
        font-size: 22px;
    }

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

    .nexus-stat {
        min-height: 178px;
        padding: 20px 16px;
        border-bottom: 1px solid var(--nexus-line);
    }

    .nexus-stat__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 13px;
    }

    .nexus-stat__icon svg {
        width: 22px;
        height: 22px;
    }

    .nexus-stat:nth-child(odd) {
        border-right: 1px solid var(--nexus-line);
    }

    .nexus-stat:nth-child(even) {
        border-right: 0;
    }

    .nexus-stat:nth-child(3) {
        border-bottom: 0;
    }

    .nexus-stat:last-child {
        border-bottom: 0;
    }

    .nexus-accordion summary {
        padding-right: 50px;
        font-size: 16px;
    }

    .nexus-accordion details p {
        margin-right: 10px;
    }

    .nexus-contact__grid {
        gap: 36px;
    }

    .nexus-footer {
        padding-bottom: 28px;
    }

    .nexus-footer__top,
    .nexus-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .nexus-footer__contact {
        justify-content: flex-start;
    }

    .nexus-footer__links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nexus-footer__link-group {
        gap: 8px 16px;
    }

    .nexus-footer__funding {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nexus-footer__funding img {
        width: 100%;
        margin-left: 0;
    }

    .nexus-footer__legal {
        max-width: 100%;
        text-align: left;
    }

    .nexus-mobile-actions {
        position: fixed !important;
        z-index: 1200;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        display: grid;
        width: 100% !important;
        max-width: 100vw;
        grid-template-columns: 0.82fr 1.18fr;
        gap: 8px;
        margin: 0 !important;
        padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
        background: var(--nexus-white);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.07);
        transform: none !important;
        translate: none !important;
        isolation: isolate;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .nexus-mobile-actions a {
        display: grid;
        min-height: 48px;
        place-items: center;
        border: 1px solid var(--nexus-blue);
        border-radius: 999px;
        color: var(--nexus-blue) !important;
        font-weight: 700;
        text-decoration: none;
    }

    .nexus-mobile-actions a:last-child {
        color: var(--nexus-white) !important;
        background: var(--nexus-blue);
    }
}

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

    body.nexus-inicio-activo *,
    body.nexus-inicio-activo *::before,
    body.nexus-inicio-activo *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .nexus-motion-ready .nexus-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ==========================================================
   Páginas internas NEXUS · v1.0.11
   Estas reglas están totalmente acotadas a .nexus-internal-page
   para no alterar el diseño de la portada.
   ========================================================== */
body.nexus-internal-page .nexus-service-hero {
    padding: 78px 0 64px;
    background: var(--nexus-white);
}

body.nexus-internal-page .nexus-service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    align-items: center;
    gap: 64px;
}

body.nexus-internal-page .nexus-service-hero__copy {
    max-width: 620px;
}

body.nexus-internal-page .nexus-service-hero__copy h1 {
    max-width: 620px;
}

body.nexus-internal-page .nexus-service-hero__lead {
    max-width: 600px;
    margin: 0 0 28px;
    color: var(--nexus-muted);
    font-size: clamp(17px, 1.4vw, 19.5px);
    line-height: 1.55;
}

body.nexus-internal-page .nexus-service-hero__image {
    overflow: hidden;
    border-radius: 28px;
    background: var(--nexus-soft);
    box-shadow: var(--nexus-shadow);
}

body.nexus-internal-page .nexus-service-hero__image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

body.nexus-internal-page .nexus-service-facts {
    padding: 0 0 72px;
    background: var(--nexus-white);
}

body.nexus-internal-page .nexus-service-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--nexus-line);
    border-radius: var(--nexus-radius);
    background: var(--nexus-soft);
}

body.nexus-internal-page .nexus-service-fact {
    padding: 24px 28px;
    text-align: center;
}

body.nexus-internal-page .nexus-service-fact + .nexus-service-fact {
    border-left: 1px solid var(--nexus-line);
}

body.nexus-internal-page .nexus-service-fact strong {
    display: block;
    margin-bottom: 4px;
    color: var(--nexus-ink);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

body.nexus-internal-page .nexus-service-fact span {
    color: var(--nexus-muted);
    font-size: 13px;
}

body.nexus-internal-page .nexus-service-content {
    padding: 82px 0;
    background: var(--nexus-soft);
}

body.nexus-internal-page .nexus-service-heading {
    max-width: 710px;
    margin-bottom: 34px;
}

body.nexus-internal-page .nexus-service-heading p {
    max-width: 680px;
    margin: 0;
    color: var(--nexus-muted);
    font-size: 17px;
    line-height: 1.55;
}

body.nexus-internal-page .nexus-service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.nexus-internal-page .nexus-service-card {
    min-height: 170px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--nexus-radius);
    background: var(--nexus-white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
}

body.nexus-internal-page .nexus-service-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

body.nexus-internal-page .nexus-service-card p {
    margin: 0;
    color: var(--nexus-muted);
    font-size: 14px;
    line-height: 1.55;
}

body.nexus-internal-page .nexus-service-steps {
    padding: 82px 0;
    background: var(--nexus-white);
}

body.nexus-internal-page .nexus-service-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

body.nexus-internal-page .nexus-service-step {
    padding-top: 20px;
    border-top: 1px solid var(--nexus-line);
}

body.nexus-internal-page .nexus-service-step__number {
    display: block;
    margin-bottom: 18px;
    color: var(--nexus-blue);
    font-size: 13px;
    font-weight: 600;
}

body.nexus-internal-page .nexus-service-step h3 {
    font-size: 18px;
}

body.nexus-internal-page .nexus-service-step p {
    margin: 0;
    color: var(--nexus-muted);
    font-size: 14px;
}

body.nexus-internal-page .nexus-service-notice {
    margin-top: 34px;
    padding: 20px 22px;
    border-radius: 16px;
    color: var(--nexus-muted);
    background: var(--nexus-soft);
    font-size: 13px;
    line-height: 1.55;
}

body.nexus-internal-page .nexus-service-cta {
    padding: 76px 0;
    color: var(--nexus-white);
    background: var(--nexus-black);
}

body.nexus-internal-page .nexus-service-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

body.nexus-internal-page .nexus-service-cta h2 {
    max-width: 620px;
    color: var(--nexus-white);
}

body.nexus-internal-page .nexus-service-cta p {
    max-width: 610px;
    margin: 0;
    color: #a1a1a6;
    font-size: 16px;
}

body.nexus-internal-page .nexus-service-cta .nexus-actions {
    flex: 0 0 auto;
    margin: 0;
}

body.nexus-internal-page .nexus-service-cta .nexus-button--secondary {
    color: var(--nexus-white) !important;
    border-color: rgba(255,255,255,.6);
}

@media (max-width: 899px) {
    body.nexus-internal-page .nexus-service-hero__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body.nexus-internal-page .nexus-service-hero__image img {
        height: min(58vw, 460px);
        min-height: 320px;
    }

    body.nexus-internal-page .nexus-service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.nexus-internal-page .nexus-service-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    body.nexus-internal-page .nexus-service-hero {
        padding: 42px 0 46px;
    }

    body.nexus-internal-page .nexus-service-hero__image img {
        height: 310px;
        min-height: 0;
    }

    body.nexus-internal-page .nexus-service-facts {
        padding-bottom: 54px;
    }

    body.nexus-internal-page .nexus-service-facts__grid,
    body.nexus-internal-page .nexus-service-cards,
    body.nexus-internal-page .nexus-service-steps__grid {
        grid-template-columns: 1fr;
    }

    body.nexus-internal-page .nexus-service-fact + .nexus-service-fact {
        border-top: 1px solid var(--nexus-line);
        border-left: 0;
    }

    body.nexus-internal-page .nexus-service-content,
    body.nexus-internal-page .nexus-service-steps,
    body.nexus-internal-page .nexus-service-cta {
        padding: 58px 0;
    }

    body.nexus-internal-page .nexus-service-card {
        min-height: 0;
    }
}

/* ==========================================================
   Páginas de contenido NEXUS · v1.0.12
   Acotado a .nexus-content-page para no modificar la Home.
   ========================================================== */
body.nexus-content-page .nexus-nav-services[open] > summary,
body.nexus-content-page .nexus-mobile-services[open] > summary { color: var(--nexus-blue); }
body.nexus-content-page .nexus-nav-services__panel a:hover,
body.nexus-content-page .nexus-nav-services__panel a:focus-visible,
body.nexus-content-page .nexus-mobile-services__links a:hover,
body.nexus-content-page .nexus-mobile-services__links a:focus-visible { color: var(--nexus-blue); background: rgba(0,113,227,.07); }

body.nexus-content-page .nexus-content-hero { padding: 76px 0 82px; background: #fff; }
body.nexus-content-page .nexus-content-hero__grid { display:grid; grid-template-columns:minmax(0,.94fr) minmax(360px,1.06fr); align-items:center; gap:64px; }
body.nexus-content-page .nexus-content-hero__media { overflow:hidden; border-radius:28px; background:var(--nexus-soft); box-shadow:var(--nexus-shadow); }
body.nexus-content-page .nexus-content-hero__media img { width:100%; height:470px; object-fit:cover; }
body.nexus-content-page .nexus-content-hero--apple .nexus-content-hero__media img { object-position:center; }

body.nexus-content-page .nexus-content-dark { padding:84px 0; color:#f5f5f7; background:#000; }
body.nexus-content-page .nexus-content-dark__inner { max-width:820px; }
body.nexus-content-page .nexus-content-dark h2,
body.nexus-content-page .nexus-content-dark h3 { color:#fff !important; }
body.nexus-content-page .nexus-content-dark p:not(.nexus-eyebrow) { color:#d2d2d7; font-size:17px; line-height:1.6; }
body.nexus-content-page .nexus-content-dark .nexus-eyebrow { color:#2997ff; }

body.nexus-content-page .nexus-device-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
body.nexus-content-page .nexus-device-tags span { padding:8px 13px; border:1px solid rgba(255,255,255,.22); border-radius:999px; color:#fff; font-size:12px; font-weight:600; }
body.nexus-content-page .nexus-device-tags--light span { border-color:rgba(0,0,0,.10); color:var(--nexus-ink); background:var(--nexus-soft); }
body.nexus-content-page .nexus-content-hero--apple .nexus-actions--after-tags { margin-top:34px; }

body.nexus-content-page .nexus-content-grid { display:grid; gap:16px; margin-top:34px; }
body.nexus-content-page .nexus-content-grid--4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
body.nexus-content-page .nexus-content-grid--3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
body.nexus-content-page .nexus-content-grid--2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
body.nexus-content-page .nexus-content-grid article { padding:28px; border:1px solid rgba(0,0,0,.06); border-radius:22px; background:#fff; }
body.nexus-content-page .nexus-content-grid article p:last-child { margin-bottom:0; color:var(--nexus-muted); }

body.nexus-content-page .nexus-subtle-note { max-width:880px; margin:0 auto; color:var(--nexus-muted); font-size:13px; line-height:1.6; text-align:center; }
body.nexus-content-page .nexus-wa-icon { width:18px; height:18px; flex:0 0 18px; color:#fff; }
body.nexus-content-page .nexus-button--wa { gap:8px; }
body.nexus-content-page .nexus-button--wa svg { color:#fff !important; fill:#fff !important; }

body.nexus-content-page .nexus-refurb-grid { display:grid; grid-template-columns:minmax(0,.82fr) minmax(420px,1.18fr); align-items:center; gap:58px; }
body.nexus-content-page .nexus-refurb-media { overflow:hidden; border-radius:28px; background:#f5f5f7; }
body.nexus-content-page .nexus-refurb-media img { width:100%; min-height:390px; object-fit:cover; }
body.nexus-content-page .nexus-refurb-meta { margin-top:24px !important; color:#a1a1a6 !important; font-size:13px !important; }
body.nexus-content-page .nexus-premium { background:#fff; }
body.nexus-content-page .nexus-premium__inner { max-width:760px; text-align:center; }
body.nexus-content-page .nexus-premium__inner .nexus-actions { justify-content:center; }
body.nexus-content-page .nexus-premium__inner > p:not(.nexus-eyebrow) { color:var(--nexus-muted); font-size:17px; }

body.nexus-content-page .nexus-contact-hero .nexus-section-heading { max-width:760px; }
body.nexus-content-page .nexus-contact-cards { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin:34px 0 26px; }
body.nexus-content-page .nexus-contact-cards a { display:flex; min-height:150px; flex-direction:column; justify-content:space-between; padding:26px; border:1px solid var(--nexus-line); border-radius:22px; background:var(--nexus-soft); text-decoration:none; transition:transform 180ms ease,border-color 180ms ease; }
body.nexus-content-page .nexus-contact-cards a:hover { transform:translateY(-2px); border-color:rgba(0,113,227,.25); }
body.nexus-content-page .nexus-contact-cards span { color:var(--nexus-blue); font-size:13px; font-weight:600; }
body.nexus-content-page .nexus-contact-cards strong { color:var(--nexus-ink); font-size:16px; font-weight:600; line-height:1.45; }

@media (max-width: 900px) {
 body.nexus-content-page .nexus-content-hero__grid,
 body.nexus-content-page .nexus-refurb-grid { grid-template-columns:1fr; gap:34px; }
 body.nexus-content-page .nexus-content-grid--4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
 body.nexus-content-page .nexus-contact-cards { grid-template-columns:1fr; }
}
@media (max-width: 700px) {
 body.nexus-content-page .nexus-content-hero { padding:46px 0 58px; }
 body.nexus-content-page .nexus-content-hero__media img { height:310px; }
 body.nexus-content-page .nexus-content-dark { padding:60px 0; }
 body.nexus-content-page .nexus-content-grid--4,
 body.nexus-content-page .nexus-content-grid--3,
 body.nexus-content-page .nexus-content-grid--2 { grid-template-columns:1fr; }
 body.nexus-content-page .nexus-refurb-media img { min-height:300px; }
}
