:root {
    --landing-bg: #030d18;
    --landing-bg-2: #061827;
    --landing-panel: rgba(8, 28, 48, .76);
    --landing-panel-strong: rgba(10, 36, 61, .9);
    --landing-line: rgba(142, 178, 214, .22);
    --landing-text: #f7fbff;
    --landing-muted: #a7b5ca;
    --landing-soft: #dbe8f5;
    --landing-blue: #1268ff;
    --landing-cyan: #13c8e8;
    --landing-green: #19d5a3;
    --landing-orange: #ff8e3d;
    --landing-purple: #8a5bff;
    --landing-red: #ff4c55;
    --landing-radius: 12px;
    --landing-radius-sm: 8px;
    --landing-shadow: 0 28px 90px rgba(0, 0, 0, .42);
    --landing-container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-page {
    margin: 0;
    min-height: 100vh;
    color: var(--landing-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    background:
        radial-gradient(circle at 18% 4%, rgba(18, 104, 255, .22), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(19, 200, 232, .12), transparent 32%),
        linear-gradient(135deg, var(--landing-bg) 0%, var(--landing-bg-2) 55%, #020812 100%);
    overflow-x: hidden;
}

body.landing-page::before,
body.landing-page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

body.landing-page::before {
    background-image:
        linear-gradient(rgba(18,104,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,104,255,.08) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(circle at 50% 12%, #000 0, transparent 55%);
}

body.landing-page::after {
    background:
        linear-gradient(120deg, transparent 10%, rgba(18, 104, 255, .2) 10.5%, transparent 11%),
        linear-gradient(145deg, transparent 19%, rgba(19, 200, 232, .12) 19.4%, transparent 20%),
        linear-gradient(28deg, transparent 72%, rgba(138, 91, 255, .12) 72.4%, transparent 73%);
    opacity: .8;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-150%);
    padding: 10px 14px;
    border-radius: var(--landing-radius-sm);
    background: var(--landing-blue);
    color: #fff;
    font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
    outline: 3px solid rgba(19, 200, 232, .9);
    outline-offset: 3px;
}

.section-wrap {
    width: min(var(--landing-container), calc(100% - 48px));
    margin-inline: auto;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    margin-inline: auto;
    padding-inline: max(24px, calc((100vw - var(--landing-container)) / 2));
    border-bottom: 1px solid var(--landing-line);
    background: rgba(3, 13, 24, .78);
    backdrop-filter: blur(18px);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 22px;
    font-weight: 850;
    white-space: nowrap;
}

.landing-brand img {
    width: 176px;
    height: auto;
}

.brand-symbol {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--landing-cyan), var(--landing-blue) 62%, #0b42a6);
    box-shadow: 0 12px 34px rgba(18,104,255,.38);
}

.landing-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    color: var(--landing-soft);
    font-size: 14px;
    font-weight: 650;
}

.landing-nav a,
.link-action {
    color: var(--landing-soft);
    transition: color .18s ease, transform .18s ease;
}

.landing-nav a:hover,
.link-action:hover { color: #fff; }

.header-actions,
.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-sm);
    background: rgba(11, 32, 54, .64);
    color: #fff;
    font-weight: 850;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); border-color: rgba(19, 200, 232, .45); }
.button.primary {
    border-color: transparent;
    background: linear-gradient(135deg, #1678ff, #0757f8);
    box-shadow: 0 18px 48px rgba(18,104,255,.32);
}
.button.ghost { background: rgba(4, 17, 29, .58); }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-sm);
    background: rgba(10, 35, 59, .8);
}
.menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    border-radius: 999px;
    background: #fff;
}

.hero {
    min-height: 570px;
    display: grid;
    grid-template-columns: minmax(390px, .76fr) minmax(560px, 1.24fr);
    gap: 24px;
    align-items: start;
    padding: 64px 0 24px;
}

.kicker,
.mock-filter,
.recommended-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(18,104,255,.34);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(18,104,255,.11);
    color: #9fd0ff;
    font-size: 13px;
    font-weight: 850;
}

.hero h1 {
    max-width: 660px;
    margin: 0 0 18px;
    font-size: clamp(42px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 600px;
    margin: 0 0 28px;
    color: var(--landing-muted);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.5;
}

.hero .kicker,
.hero .micro-benefits {
    display: none;
}

.micro-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
    color: var(--landing-soft);
}
.micro-benefits li {
    padding: 9px 12px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    background: rgba(8, 28, 48, .48);
}
.micro-benefits li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--landing-green);
}

.product-stage {
    position: relative;
    min-height: 430px;
    margin-top: -36px;
}

.product-stage-image {
    min-height: 430px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: -26px;
}

.hero-product-image,
.hero-dashboard-asset {
    width: min(100%, 708px);
    max-width: 708px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 28px 50px rgba(0, 87, 255, .2));
}

.glass-card {
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background:
        linear-gradient(145deg, rgba(13, 42, 68, .88), rgba(4, 18, 31, .78)),
        var(--landing-panel);
    box-shadow: var(--landing-shadow);
}

.mock-dashboard {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 650px);
    padding: 16px;
}
.mock-top,
.card-row,
.report-head,
.landing-footer,
.platform-strip,
.expense-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.mock-top strong,
.vehicle-card strong,
.report-head strong { display: block; }
.mock-top span,
.vehicle-card span,
.report-head span,
.mock-metrics span,
.mock-metrics small,
.profit-stack span,
.profit-stack small {
    color: var(--landing-muted);
}

.mock-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.mock-metrics div {
    min-height: 88px;
    padding: 12px;
    border: 1px solid rgba(142,178,214,.16);
    border-radius: var(--landing-radius-sm);
    background: rgba(4, 17, 29, .54);
}
.mock-metrics strong {
    display: block;
    margin: 7px 0;
    font-size: 20px;
}
.mock-metrics small { color: var(--landing-green); }
.mock-metrics small.warn { color: var(--landing-orange); }

.mock-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(190px, .8fr);
    gap: 14px;
}
.bar-chart,
.mini-bars {
    min-height: 154px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(142,178,214,.14);
    border-radius: var(--landing-radius-sm);
    background:
        linear-gradient(rgba(142,178,214,.12) 1px, transparent 1px) 0 0 / 100% 25%,
        rgba(4,17,29,.48);
}
.bar-chart i,
.mini-bars i {
    min-height: 30px;
    height: var(--h);
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--landing-cyan), var(--landing-blue));
    box-shadow: 0 0 18px rgba(18,104,255,.25);
}
.bar-chart i:nth-child(even),
.mini-bars i:nth-child(even) { background: linear-gradient(180deg, var(--landing-orange), #ff6d1a); }

.donut-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(142,178,214,.14);
    border-radius: var(--landing-radius-sm);
    background: rgba(4,17,29,.48);
}
.donut,
.report-donut {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: conic-gradient(var(--landing-blue) 0 38%, var(--landing-cyan) 38% 62%, var(--landing-purple) 62% 76%, var(--landing-orange) 76% 88%, #6f7f91 88% 100%);
    position: relative;
}
.donut::after,
.report-donut::after {
    content: "";
    position: absolute;
    inset: 24%;
    border-radius: inherit;
    background: #081827;
}
.donut-card ul,
.feature-list,
.price-card ul,
.profit-copy ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.donut-card li {
    margin: 6px 0;
    color: var(--landing-muted);
    font-size: 12px;
}
.donut-card b {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 999px;
    background: var(--landing-blue);
}
.donut-card li:nth-child(2) b { background: var(--landing-cyan); }
.donut-card li:nth-child(3) b { background: var(--landing-purple); }
.donut-card li:nth-child(4) b { background: var(--landing-orange); }

.vehicle-card {
    position: absolute;
    left: 8px;
    top: 286px;
    width: 326px;
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    padding: 16px;
    transform: rotate(6deg);
}
.vehicle-illustration {
    width: 118px;
    height: auto;
    align-self: center;
    border-radius: 0;
    background: none;
    box-shadow: none;
}
.vehicle-card em {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(25,213,163,.15);
    color: var(--landing-green);
    font-style: normal;
    font-size: 12px;
}
.vehicle-card dl {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 8px 0;
}
.vehicle-card dt {
    color: var(--landing-muted);
    font-size: 12px;
}
.vehicle-card dd {
    margin: 5px 0 0;
    color: var(--landing-green);
    font-weight: 900;
}
.vehicle-card a,
.expense-widget a,
.compare-link {
    color: #50a4ff;
    font-weight: 850;
}

.report-card {
    position: absolute;
    right: 4px;
    bottom: 30px;
    width: 450px;
    min-height: 184px;
    padding: 18px;
    color: #102033;
    background: linear-gradient(145deg, #f8fbff, #dce9f8);
    transform: rotate(4deg);
}
.report-head span { color: #5d6b7a; }
.report-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin: 12px 0;
}
.report-stats span {
    padding: 7px;
    border-radius: 7px;
    background: rgba(18,104,255,.08);
    color: #20364e;
    font-size: 11px;
    font-weight: 800;
}
.line-chart {
    width: 270px;
    height: 74px;
    border-radius: 8px;
    background:
        linear-gradient(140deg, transparent 8%, #1268ff 8.5% 10%, transparent 10.5% 20%, #1268ff 20.5% 22%, transparent 22.5% 35%, #1268ff 35.5% 37%, transparent 37.5% 48%, #1268ff 48.5% 50%, transparent 50.5%),
        linear-gradient(rgba(18,104,255,.16) 1px, transparent 1px) 0 0 / 100% 25%,
        #eef5ff;
}
.report-donut {
    position: absolute;
    right: 28px;
    bottom: 20px;
}

.platform-strip {
    min-height: 76px;
    margin-top: 0;
    padding: 18px 60px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: rgba(8, 28, 48, .6);
}
.platform-strip span {
    max-width: 170px;
    color: var(--landing-muted);
}
.platform-strip div {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(80px, 1fr));
    gap: 20px;
    text-align: center;
}
.platform-strip strong {
    font-size: 22px;
    font-weight: 780;
}

.section-heading {
    max-width: 960px;
    margin: 44px auto 22px;
    text-align: center;
}
.section-heading h2,
.profit-copy h2,
.faq-section h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.12;
    font-weight: 800;
}
.section-heading p {
    margin: 7px 0 0;
    color: var(--landing-muted);
    font-size: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.feature-card {
    min-height: 292px;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-content: start;
    column-gap: 12px;
    padding: 17px;
    overflow: hidden;
}
.feature-icon {
    position: relative;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 0;
    border-radius: 10px;
    background: none;
    color: transparent;
    font-weight: 950;
    box-shadow: none;
    object-fit: contain;
}
.feature-card h3,
.step-card h3,
.price-card h3,
.faq-item h3 {
    margin: 0;
    font-size: 17px;
}
.feature-card h3 {
    align-self: center;
}
.feature-card p {
    grid-column: 1 / -1;
    min-height: 62px;
    margin: 9px 0 14px;
    color: var(--landing-muted);
    font-size: 15px;
    line-height: 1.48;
}
.feature-visual-img {
    width: 100%;
    height: auto;
    margin-top: 2px;
    border-radius: 8px;
}
.feature-module-image {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 3;
    object-fit: contain;
    margin-top: 2px;
    border-radius: 8px;
}
.report-visual-img {
    margin-top: 8px;
}
.report-assets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}
.report-assets img {
    width: 100%;
    height: 74px;
    object-fit: contain;
    padding: 14px;
    border: 1px solid var(--landing-line);
    border-radius: 10px;
    background: rgba(4,17,29,.38);
}
.feature-card > .feature-visual-img,
.feature-card > .feature-list,
.feature-card > .report-assets {
    display: none;
}
.mini-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-bottom: 10px;
    padding: 4px;
    border: 1px solid rgba(142,178,214,.16);
    border-radius: 8px;
    background: rgba(4,17,29,.54);
    color: var(--landing-muted);
    text-align: center;
    font-size: 12px;
}
.mini-tabs .active {
    border-radius: 6px;
    background: var(--landing-blue);
    color: #fff;
}
.mini-bars {
    position: relative;
    min-height: 76px;
    padding: 12px;
    gap: 8px;
    overflow: hidden;
}
.mini-bars.compare {
    grid-template-columns: repeat(5, 1fr);
}
.mini-bars::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(142,178,214,.11) 1px, transparent 1px) 0 0 / 100% 33%,
        rgba(4,17,29,.1);
    pointer-events: none;
}
.mini-bars::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 30px;
    height: 32px;
    background:
        linear-gradient(158deg, transparent 0 15%, var(--landing-cyan) 16% 18%, transparent 19% 100%),
        linear-gradient(26deg, transparent 0 38%, var(--landing-cyan) 39% 41%, transparent 42% 100%),
        linear-gradient(153deg, transparent 0 60%, var(--landing-cyan) 61% 63%, transparent 64% 100%);
    opacity: .9;
    pointer-events: none;
}
.mini-bars i {
    position: relative;
    z-index: 1;
    min-height: 20px;
}
.feature-list li,
.profit-copy li,
.price-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 9px 0;
    color: var(--landing-muted);
    font-size: 15px;
}
.feature-list li::before,
.profit-copy li::before,
.price-card li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    border-radius: 999px;
    color: var(--landing-green);
    border: 1px solid rgba(25,213,163,.5);
    font-size: 12px;
}
.feature-list em {
    margin-left: auto;
    min-width: 22px;
    min-height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--landing-blue);
    color: #fff;
    font-style: normal;
    font-size: 12px;
}
.feature-list b {
    margin-left: auto;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--landing-green);
}
.report-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}
.report-options span {
    position: relative;
    min-height: 74px;
    display: grid;
    place-items: center;
    border: 1px solid var(--landing-line);
    border-radius: 10px;
    color: #fff;
    font-weight: 900;
    padding-top: 26px;
}
.report-options span::before {
    content: "";
    position: absolute;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid currentColor;
    opacity: .95;
}
.report-options span:first-child { border-color: rgba(255,76,85,.55); color: #ff8b92; }
.report-options span:last-child { border-color: rgba(25,213,163,.55); color: var(--landing-green); }

.profit-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 48px;
    align-items: center;
    padding-top: 46px;
}
.profit-visual {
    display: block;
}
.profit-insights-asset {
    width: min(100%, 663px);
    height: auto;
    filter: drop-shadow(0 24px 44px rgba(0, 87, 255, .18));
}
.profit-visual .expense-widget,
.profit-visual .profit-stack {
    display: none;
}
.expense-widget,
.profit-stack article {
    padding: 18px;
}
.expense-widget h3 {
    margin: 0 0 14px;
}
.donut.large {
    width: 132px;
    height: 132px;
}
.expense-body ul {
    display: grid;
    gap: 8px;
    color: var(--landing-muted);
}
.profit-stack {
    display: grid;
    gap: 16px;
}
.profit-stack strong {
    display: block;
    margin: 8px 0;
    font-size: 26px;
}
.profit-stack small {
    color: var(--landing-green);
}
.profit-copy ul {
    margin-top: 22px;
}
.profit-copy li {
    color: var(--landing-soft);
    font-size: 19px;
}

.how-section {
    position: relative;
    padding-top: 18px;
}
.steps-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 82px;
}
.steps-line {
    position: absolute;
    left: 18%;
    right: 18%;
    top: 175px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--landing-blue), transparent);
}
.step-card {
    min-height: 112px;
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 12px;
    padding: 18px;
}
.step-card span {
    width: 66px;
    height: 73px;
    display: grid;
    place-items: center;
    grid-row: span 2;
    border: 1px solid rgba(18,104,255,.5);
    border-radius: 12px;
    background-color: rgba(18,104,255,.18);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60px;
    color: transparent;
    font-weight: 950;
}
.step-card:nth-child(1) span { background-image: url("../ruta-clara/svg/icon-registra-flota.svg"); }
.step-card:nth-child(2) span { background-image: url("../ruta-clara/svg/icon-anota-movimientos.svg"); }
.step-card:nth-child(3) span { background-image: url("../ruta-clara/svg/icon-analiza-decidi.svg"); }
.step-card p {
    margin: 4px 0 0;
    color: var(--landing-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    width: min(940px, 100%);
    margin: 0 auto;
}
.price-card {
    position: relative;
    min-height: 312px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    text-align: center;
}
.price-card.recommended {
    transform: translateY(-1px);
    border-color: rgba(18,104,255,.95);
    box-shadow: 0 0 0 1px rgba(18,104,255,.45), 0 28px 90px rgba(18,104,255,.2);
}
.recommended-badge {
    align-self: center;
    min-height: 32px;
    margin: -8px auto 12px;
    background: var(--landing-blue);
    color: #fff;
}
.price-card p {
    margin: 12px 0 4px;
    color: var(--landing-muted);
}
.price-card p strong {
    color: #fff;
    font-size: 30px;
}
.price-card > span {
    display: block;
    color: var(--landing-muted);
}
.price-card ul {
    flex: 1;
    margin: 22px 0;
    text-align: left;
}
.price-card .button {
    margin-top: auto;
    width: 100%;
}
.compare-link {
    display: block;
    width: fit-content;
    margin: 16px auto 0;
}

.faq-section {
    margin-top: 44px;
    padding: 18px 24px 22px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: rgba(8, 28, 48, .48);
}
.faq-section h2 {
    margin-bottom: 12px;
}
.faq-item {
    border: 1px solid rgba(142,178,214,.16);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(4,17,29,.42);
}
.faq-item + .faq-item {
    margin-top: 8px;
}
.faq-item button {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 12px 16px;
    background: transparent;
    color: #fff;
    text-align: left;
    font-weight: 850;
}
.faq-item button::after {
    content: "⌄";
    color: var(--landing-muted);
}
.faq-item button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
.faq-item div {
    padding: 0 16px 15px;
    color: var(--landing-muted);
    line-height: 1.55;
}
.faq-item p {
    margin: 0;
}

.final-cta {
    margin-top: 18px;
    padding: 42px 20px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background:
        url("../ruta-clara/svg/fondo-red-neon.svg") center / cover no-repeat,
        radial-gradient(circle at 12% 28%, rgba(18,104,255,.25), transparent 35%),
        radial-gradient(circle at 84% 46%, rgba(19,200,232,.18), transparent 32%),
        rgba(8,28,48,.62);
    text-align: center;
}
.final-cta h2 {
    margin-bottom: 24px;
}
.final-cta .hero-actions {
    justify-content: center;
}

.landing-footer {
    width: min(var(--landing-container), calc(100% - 48px));
    margin: 34px auto 0;
    padding: 28px 0 36px;
    border-top: 1px solid var(--landing-line);
    align-items: flex-start;
}
.landing-footer .landing-brand img {
    width: 166px;
}
.landing-footer p,
.landing-footer small,
.landing-footer a,
.landing-footer address {
    color: var(--landing-muted);
    font-style: normal;
}
.landing-footer nav,
.landing-footer address {
    display: grid;
    gap: 8px;
}
.landing-footer strong {
    color: #fff;
}
.landing-footer a:hover {
    color: #fff;
}

.legal-page {
    min-height: 100vh;
    display: grid;
    align-content: center;
    gap: 24px;
    padding: 54px 0;
}
.legal-page article {
    max-width: 840px;
    padding: 28px;
}
.legal-page h1 {
    margin: 14px 0;
    font-size: clamp(34px, 5vw, 52px);
}
.legal-page p {
    color: var(--landing-muted);
    font-size: 18px;
    line-height: 1.65;
}
.legal-page .button {
    width: fit-content;
    margin-top: 10px;
}

@media (max-width: 1080px) {
    .landing-header {
        grid-template-columns: auto auto;
        gap: 14px;
        padding-block: 10px;
    }
    .menu-toggle { display: block; justify-self: end; }
    .landing-nav,
    .header-actions {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
    }
    .landing-nav.is-open,
    .header-actions.is-open {
        display: grid;
    }
    .landing-nav {
        justify-self: stretch;
        gap: 4px;
        padding-top: 8px;
    }
    .landing-nav a {
        padding: 12px 4px;
        border-bottom: 1px solid rgba(142,178,214,.1);
    }
    .header-actions {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 10px;
    }
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 38px;
    }
    .product-stage {
        min-height: 430px;
        max-width: 720px;
        width: 100%;
        margin-top: 0;
        margin-inline: auto;
    }
    .feature-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .feature-grid article:last-child {
        grid-column: span 2;
    }
    .profit-section,
    .profit-visual {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        gap: 24px;
    }
    .steps-line {
        display: none;
    }
}

@media (max-width: 720px) {
    .section-wrap,
    .landing-footer {
        width: min(100% - 28px, var(--landing-container));
    }
    .landing-header {
        padding-inline: 14px;
    }
    .landing-brand img {
        width: 154px;
    }
    .hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }
    .hero-actions,
    .header-actions.is-open {
        grid-template-columns: 1fr;
        display: grid;
    }
    .button {
        width: 100%;
    }
    .product-stage {
        min-height: auto;
        display: grid;
        gap: 14px;
    }
    .mock-dashboard,
    .vehicle-card,
    .report-card {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
    }
    .mock-grid,
    .mock-metrics,
    .donut-card,
    .platform-strip,
    .platform-strip div,
    .feature-grid,
    .pricing-grid,
    .steps-grid,
    .landing-footer {
        grid-template-columns: 1fr;
    }
    .platform-strip {
        display: grid;
        padding: 18px;
        text-align: center;
    }
    .platform-strip span {
        max-width: none;
    }
    .feature-grid article:last-child {
        grid-column: auto;
    }
    .steps-grid {
        gap: 14px;
    }
    .report-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .line-chart {
        width: 70%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
