*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: #fdfcf8;
    color: #1a2b3c;
}
h1, h2, h3 {
    font-family: "Playfair Display", serif;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button {
    font: inherit;
    cursor: pointer;
    border: none;
}

:root {
    --navy: #1a2b3c;
    --bg: #fdfcf8;
    --bg-soft: #f5f2ec;
    --border: #e8e4dd;
    --t1: #1a2b3c;
    --t2: #4a5b6c;
    --t3: #8a9bac;
    --gold: #b8976a;
    --green: #2d7a5f;
    --green-dk: #246b52;
    --blue: #5b7fa6;
    --max-w: 1200px;
    --px: clamp(16px, 4vw, 24px);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 43, 60, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo svg {
    color: var(--gold);
    flex-shrink: 0;
}
.nav-logo span {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #fff;
}
.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s !important;
}
.nav-cta:hover {
    background: var(--green-dk) !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}
.mob-menu {
    display: none;
    flex-direction: column;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px var(--px) 20px;
}
.mob-menu.open {
    display: flex;
}
.mob-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mob-menu a:last-child {
    border: none;
}

/* HERO */
#hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    margin-top: 64px;
}
.h-bg {
    position: absolute;
    inset: 0;
}
.h-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.h-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #1a2b3c 0%,
        rgba(26, 43, 60, 0.95) 55%,
        rgba(26, 43, 60, 0.7) 100%
    );
}
.h-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.04;
}
.h-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px var(--px);
}
.h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}
.h-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}
.h-h1 {
    font-size: clamp(38px, 5.5vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    max-width: 640px;
    margin-bottom: 24px;
}
.h-h1 span {
    color: var(--gold);
}
.h-sub {
    font-size: 18px;
    color: var(--t3);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.h-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.btn-g {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(45, 122, 95, 0.25);
    transition:
        background 0.2s,
        transform 0.15s;
}
.btn-g:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
}
.btn-gh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition:
        border-color 0.2s,
        color 0.2s;
}
.btn-gh:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.h-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 52px;
}
.h-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.h-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.h-stat {
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.h-stat-n {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.h-stat-l {
    font-size: 11px;
    color: var(--t3);
    margin-top: 4px;
}

/* TRUST */
#trust {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px var(--px);
}
.trust-w {
    max-width: var(--max-w);
    margin: 0 auto;
}
.trust-lbl {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--t2);
    margin-bottom: 18px;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.t-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(74, 91, 108, 0.5);
    transition: color 0.2s;
}
.t-item:hover {
    color: rgba(26, 43, 60, 0.7);
}

/* SECTION SHARED */
.s-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.s-h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 16px;
}
.s-desc {
    font-size: 16px;
    color: var(--t2);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}
.s-header {
    text-align: center;
    margin-bottom: 60px;
}
.wrap {
    max-width: var(--max-w);
    margin: 0 auto;
}

/* PILARES */
#pilares {
    background: var(--bg);
    padding: 96px var(--px);
}
.p-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.p-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(26, 43, 60, 0.04);
    transition:
        box-shadow 0.4s,
        transform 0.3s;
}
.p-card:hover {
    box-shadow: 0 20px 40px rgba(26, 43, 60, 0.07);
    transform: translateY(-2px);
}
.p-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.p-img {
    position: relative;
    min-height: 320px;
}
.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 43, 60, 0.5), transparent);
}
.p-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}
.p-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.p-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.p-h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 12px;
    line-height: 1.2;
}
.p-desc {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 24px;
}
.p-feats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.p-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.p-ficon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.p-finfo strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--t1);
}
.p-finfo span {
    font-size: 12px;
    color: var(--t2);
}

/* CTA DARK BANNER */
.cta-bar {
    background: var(--navy);
    border-radius: 16px;
    padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 52px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 48px;
}
.cta-bar h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.cta-bar p {
    font-size: 14px;
    color: var(--t3);
}
.btn-gw {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(45, 122, 95, 0.25);
    transition:
        background 0.2s,
        transform 0.15s;
    white-space: nowrap;
}
.btn-gw:hover {
    background: var(--green-dk);
    transform: translateY(-1px);
}

/* TECNOLOGÍA */
#tecnologia {
    background: var(--navy);
    padding: 96px var(--px);
    position: relative;
    overflow: hidden;
}
.dot-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 1) 1px,
        transparent 0
    );
    background-size: 32px 32px;
    opacity: 0.03;
}
#tecnologia .wrap {
    position: relative;
    z-index: 2;
}
#tecnologia .s-h2 {
    color: #fff;
}
#tecnologia .s-desc {
    color: var(--t3);
}
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.t-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition:
        background 0.3s,
        border-color 0.3s;
}
.t-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}
.t-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}
.t-ico {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-ico svg {
    color: var(--gold);
}
.t-sn {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: right;
}
.t-sl {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t3);
    text-align: right;
}
.t-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.t-card p {
    font-size: 13px;
    color: var(--t3);
    line-height: 1.65;
}

/* PROCESO */
#proceso {
    background: var(--bg);
    padding: 96px var(--px);
}
.pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.pr-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow 0.3s;
}
.pr-card:hover {
    box-shadow: 0 8px 24px rgba(26, 43, 60, 0.07);
}
.pr-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.pr-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%);
    z-index: 10;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    align-items: center;
    justify-content: center;
}
.pr-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.pr-title h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--t1);
}
.pr-card p {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.7;
}
.res-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}
.res-ico {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(45, 122, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.res-ico svg {
    color: var(--green);
}
.res-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 6px;
}
.res-card p {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.7;
}

/* FAQ */
.faq-hd {
    text-align: center;
    margin-bottom: 32px;
}
.faq-hd h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--t1);
}
.faq-list {
    max-width: 640px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}
.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 8px;
}
.faq-item p {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.75;
}
.faq-cta {
    text-align: center;
    margin-top: 56px;
}

.doc-list {
    margin: 18px 0;
    padding-left: 0;
}

.doc-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--t2);
}

/* ICONO */
.doc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 60px var(--px);
    min-height: 200px;
    margin-top: auto;
}
footer a {
    color: rgba(255,255,255,0.7);
}

footer a:hover {
    color: #fff;
}
.ft-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.ft-logo svg {
    color: var(--gold);
}
.ft-logo span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.ft-brand p {
    font-size: 14px;
    color: var(--t3);
    line-height: 1.7;
    max-width: 280px;
}
.ft-col h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft-col ul li a {
    font-size: 14px;
    color: var(--t3);
    transition: color 0.2s;
}
.ft-col ul li a:hover {
    color: #fff;
}
.ct-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.ct-item svg {
    color: var(--t3);
    flex-shrink: 0;
    margin-top: 2px;
}
.ct-item a,
.ct-item span {
    font-size: 14px;
    color: var(--t3);
    transition: color 0.2s;
}
.ct-item a:hover {
    color: #fff;
}
.soc-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t3);
    font-size: 12px;
    font-weight: 600;
    transition:
        background 0.2s,
        color 0.2s;
}
.soc-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.ft-bot {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.ft-bot p,
.ft-bot span {
    font-size: 12px;
    color: var(--t3);
}

/* HERO LEGAL PREMIUM */
.legal-hero {
    margin-top: 64px;
    padding: 80px var(--px) 60px;
    background: linear-gradient(to bottom, #fdfcf8, #f5f2ec);
    border-bottom: 1px solid var(--border);
}

.legal-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* TOP */
.legal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* BREADCRUMB */
.legal-breadcrumb {
    font-size: 13px;
    color: var(--t3);
}

.legal-breadcrumb a:hover {
    color: var(--t1);
}

/* BADGE */
.legal-badge {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(184,151,106,.15);
    color: var(--gold);
    font-weight: 600;
}

.toc-link.active {
    color: var(--t1);
    font-weight: 600;
}

/* TITLE */
.legal-hero h1 {
    font-size: clamp(34px, 4vw, 44px);
    margin-bottom: 16px;
}

/* META */
.legal-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--t2);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* LEGAL LAYOUT FIX */
.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px var(--px);
}

/* SIDEBAR */
.legal-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.legal-toc h4 {
    margin-bottom: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--t3);
}

.legal-toc a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--t2);
}

.legal-toc a:hover {
    color: var(--t1);
}

/* CONTENT */
.legal-content {
    max-width: 760px;
}

/* SECCIONES */
.legal-section {
    margin-bottom: 56px;
    scroll-margin-top: 80px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.legal-section h3 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* TEXTO */
.legal-section p {
    margin-bottom: 16px;
    color: var(--t2);
    line-height: 1.75;
}

/* LISTAS */
.doc-list {
    margin: 16px 0;
    padding-left: 18px;
}

.doc-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--t2);
}

/* CAJAS */
.warn-box,
.info-box {
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.warn-box {
    background: rgba(184,151,106,.1);
    border: 1px solid rgba(184,151,106,.2);
}

.info-box {
    background: rgba(91,127,166,.08);
    border: 1px solid rgba(91,127,166,.2);
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .pr-arrow {
        display: flex;
    }
}
@media (max-width: 1024px) {
    .p-grid {
        grid-template-columns: 1fr;
    }
    .p-img {
        min-height: 280px;
        order: 0 !important;
    }
    .p-body {
        order: 0 !important;
    }
    .t-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .h-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-grid {
        grid-template-columns: 1fr;
    }
    .t-grid {
        grid-template-columns: 1fr;
    }
    .cta-bar {
        flex-direction: column;
        text-align: center;
    }
    .res-card {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 540px) {
    .h-pills {
        display: none;
    }
    .ft-grid {
        grid-template-columns: 1fr;
    }
    .ft-bot {
        flex-direction: column;
        text-align: center;
    }
    .p-body {
        padding: 24px 20px;
    }
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: relative;
        top: auto;
        margin-bottom: 30px;
    }
}

