/* HerramientaSEO — sistema base compartido */

:root {
    --blue: #0010ef;
    --blue-deep: #0008b8;
    --blue-soft: #e8ebff;
    --ink: #070b14;
    --ink-soft: #121a2c;
    --slate: #3d475c;
    --muted: #667085;
    --line: #e4e8f0;
    --paper: #f4f6fa;
    --white: #ffffff;
    --rank: #00b57a;
    --lime: #ade884;
    --warn: #c98900;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 24px 60px rgba(7, 11, 20, 0.12);
    --shadow-sm: 0 6px 20px rgba(7, 11, 20, 0.07);
    --font-display: "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "IBM Plex Sans", system-ui, sans-serif;
    --header-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container-max: 1380px;
    --content-pad: 3rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    font-size: 1.0625rem;
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--blue);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 9999;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    width: min(1380px, calc(100% - 3rem));
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    letter-spacing: -0.015em;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid transparent;
    padding: 0.95rem 1.45rem;
    cursor: pointer;
    transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

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

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 16, 239, 0.28);
}

.btn-primary:hover {
    background: var(--blue-deep);
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 16, 239, 0.36);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: #c8cfde;
    color: var(--ink);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding-inline: 0.9rem;
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-lg,
.btn-large {
    padding: 1rem 1.6rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.text-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    border-bottom-color: var(--blue);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(226, 230, 239, 0.85);
}

.nav-bar {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.brand-mark {
    display: inline-flex;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    line-height: 0;
}

.brand-mark img,
.brand-mark svg {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.25rem;
    list-style: none;
}

.nav-link,
.nav-sub-btn {
    font: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--slate);
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0.4rem 0;
}

.nav-link:hover,
.nav-sub-btn:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.has-sub {
    position: relative;
}

.nav-sub {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    list-style: none;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s var(--ease);
}

.has-sub:hover .nav-sub,
.has-sub:focus-within .nav-sub,
.has-sub.is-open .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.nav-sub a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
}

.nav-sub a:hover {
    background: var(--paper);
    color: var(--blue);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: 0.2s ease;
}

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

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

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

/* Footer */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 1.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer {
    color: #fff;
}

.brand-footer .brand-mark,
.brand-footer .brand-mark svg {
    width: 32px;
    height: 32px;
}

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

.footer-tagline {
    margin-top: 1rem;
    max-width: 28ch;
    font-size: 0.98rem;
}

.footer-company {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Feature pages (caracteristica.php) */
.feature-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.feature-hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.feature-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 18, 32, 0.95), rgba(0, 16, 239, 0.45));
}

.feature-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.feature-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.feature-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.feature-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-hero-description {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
    max-width: 48ch;
}

.feature-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-hero-buttons .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.feature-hero-image img {
    margin-inline: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.feature-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.feature-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.feature-breadcrumb a:hover {
    color: #fff;
}

.feature-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime, #ade884);
    margin-bottom: 0.85rem;
}

.feature-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    list-style: none;
    margin-top: 1.35rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.feature-trust li {
    position: relative;
    padding-left: 1rem;
}

.feature-trust li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime, #ade884);
}

.feature-shot {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.feature-shot-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-shot-chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.feature-shot-chrome em {
    margin-left: 0.5rem;
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.feature-shot img {
    display: block;
    width: 100%;
    height: auto;
    filter: none;
}

.section-header-left {
    text-align: left;
    max-width: 40rem;
}

.feature-detail-card-accent {
    background:
        radial-gradient(420px 180px at 100% 0%, rgba(0, 16, 239, 0.08), transparent 60%),
        var(--white);
}

.feature-related-section {
    padding: 4.5rem 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.feature-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.feature-related-card {
    display: block;
    padding: 1.4rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-related-card:hover {
    border-color: rgba(0, 16, 239, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(7, 11, 20, 0.08);
}

.feature-related-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(0, 16, 239, 0.08);
    color: var(--blue);
    margin-bottom: 0.9rem;
}

.feature-related-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.feature-related-card p {
    color: var(--slate);
    font-size: 0.94rem;
    line-height: 1.45;
}

.feature-cta .cta-brand {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lime, #ade884);
    margin-bottom: 0.75rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.feature-detail-section,
.how-it-works-section {
    padding: 4.5rem 0;
}

.feature-detail-section {
    background: var(--paper);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-detail-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.feature-detail-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.feature-detail-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.feature-detail-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--slate);
}

.feature-detail-list li i {
    color: var(--blue);
    margin-top: 0.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

.section-subtitle {
    color: var(--slate);
    margin-top: 0.65rem;
    font-size: 1.05rem;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.step-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--white);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.step-item h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.step-item p {
    color: var(--slate);
    font-size: 0.98rem;
}

.cta-section {
    padding: 4.5rem 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 16, 239, 0.18), transparent 50%),
        var(--ink);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .nav-panel {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        gap: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.28s var(--ease);
    }

    .nav-panel.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        display: none;
        padding-left: 0.5rem;
    }

    .has-sub.is-open .nav-sub {
        display: grid;
    }

    .nav-actions {
        flex-direction: column;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .footer-grid,
    .feature-hero .container,
    .feature-detail-grid,
    .how-it-works-steps,
    .feature-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.5rem, 1380px);
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* —— Layout amplio 1380 + acabado moderno —— */
:root {
    --container-max: 1380px;
    --content-pad: 3rem;
}

.container {
    width: min(var(--container-max), calc(100% - var(--content-pad)));
}

.site-header {
    backdrop-filter: saturate(1.2) blur(12px);
    background: rgba(255, 255, 255, 0.9);
}

.site-nav .nav-bar {
    min-height: calc(var(--header-h) + 4px);
}

.brand-name {
    letter-spacing: -0.03em;
}

.nav-list > li > .nav-link,
.nav-sub-btn {
    font-weight: 500;
}

.nav-sub {
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(10, 15, 28, 0.12);
    border: 1px solid var(--line);
    padding: 0.5rem;
}

.nav-sub a {
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
}

.nav-sub a:hover {
    background: var(--blue-soft);
    color: var(--blue);
}

.site-footer {
    background:
        radial-gradient(900px 320px at 10% -10%, rgba(0, 16, 239, 0.22), transparent 55%),
        linear-gradient(180deg, #0a0f1c 0%, #070b14 100%);
}

.footer-grid {
    gap: 2.5rem 3rem;
}

.feature-hero {
    min-height: clamp(420px, 62vh, 640px);
}

.feature-hero .container {
    padding-block: 4.5rem 3.5rem;
}

.feature-detail-card {
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.cta-section {
    background:
        radial-gradient(700px 280px at 80% 20%, rgba(0, 16, 239, 0.35), transparent 60%),
        linear-gradient(120deg, #050812, #0010ef 140%);
}

@media (min-width: 1200px) {
    .feature-hero .container {
        gap: 3.5rem;
    }
}

@media (max-width: 960px) {
    :root {
        --content-pad: 2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --content-pad: 1.5rem;
    }
}

/* Feature landings — alineado visión v2 */
.feature-hero {
    padding: 5.5rem 0 4.5rem;
}

.feature-hero-icon {
    border-radius: 10px;
    background: rgba(0, 16, 239, 0.85);
}

.feature-detail-card {
    border-radius: 12px;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--line);
}

.feature-detail-list li {
    gap: 0.75rem;
}

.how-it-works-steps .step-item {
    border-radius: 12px;
}

.cta-content h2 {
    font-family: var(--font-display);
    letter-spacing: -0.04em;
}

.btn-sm {
    padding: 0.55rem 0.95rem;
    font-size: 0.875rem;
}

/* Footer CTA strip */
.footer-cta {
    background:
        radial-gradient(500px 200px at 90% 50%, rgba(0, 16, 239, 0.45), transparent 60%),
        #050812;
    color: #fff;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-cta-brand {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lime);
    margin-bottom: 0.2rem;
}

.footer-cta-copy {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(7, 11, 20, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(110%);
    transition: transform 0.35s var(--ease);
}

.sticky-cta.is-visible {
    transform: none;
}

.sticky-cta-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: #fff;
    position: relative;
    padding-right: 1.5rem;
}

.sticky-cta-inner p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.sticky-cta-inner strong {
    color: var(--lime);
}

.sticky-cta-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.sticky-cta-close:hover {
    color: #fff;
}

body.has-sticky-cta {
    padding-bottom: 4.5rem;
}

/* Cookie bar */
.cookie-bar {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    max-width: 420px;
}

.cookie-bar-inner {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(7, 11, 20, 0.18);
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.85rem;
}

.cookie-bar-inner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.45;
}

.cookie-bar-inner a {
    color: var(--blue);
    font-weight: 600;
}

body.has-sticky-cta .cookie-bar {
    bottom: 5.25rem;
}

@media (max-width: 720px) {
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta-inner {
        justify-content: space-between;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: none;
    }
}

.feature-hero-icon svg,
.feature-related-icon svg,
.feature-detail-list svg {
    display: block;
    flex-shrink: 0;
}

.feature-detail-list li svg {
    margin-top: 0.15rem;
    color: var(--blue);
}

.back-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 55;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(7, 11, 20, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-top:hover {
    transform: translateY(-2px);
    color: var(--blue);
}

body.has-sticky-cta .back-top {
    bottom: 5rem;
}

@media print {
    .site-header,
    .site-footer,
    .footer-cta,
    .sticky-cta,
    .cookie-bar,
    .back-top,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .prose a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.85em;
        color: #555;
    }
}

.footer-company a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-company a:hover {
    color: #fff;
}

body.nav-open {
    overflow: hidden;
}
