/* ═══════════════════════════════════════════════
   LAPS — Design System
   Shared across all pages. Brand: #CA1B22 / dark.
═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; }

/* ─── TOKENS ─── */
:root {
    --red: #ca1b22;
    --red-deep: #a91219;
    --red-dim: rgba(202,27,34,0.1);
    --red-border: rgba(202,27,34,0.2);
    --dark: #0d0d0d;
    --dark-mid: #1a1a1a;
    --surface: #f7f7f7;
    --border: rgba(0,0,0,0.08);
    --border-strong: rgba(0,0,0,0.14);
    --text: #0a0a0a;
    --text-body: #3f3f3f;
    --text-muted: #6b6b6b;
    --text-dim: #a3a3a3;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

h1, h2, h3 { text-wrap: balance; }

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.nav-solid {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(255,255,255,0.06);
}
.nav-logo img { height: 38px; display: block; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    letter-spacing: -0.01em;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: #fff; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.15s var(--ease-out);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #fff;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.mobile-nav a:last-child {
    border-bottom: none;
    margin-top: 0.75rem;
    background: var(--red);
    color: #fff;
    text-align: center;
    border-radius: 100px;
    padding: 0.875rem;
    font-weight: 600;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav a.active { color: #fff; font-weight: 600; }

/* ─── HERO (home) ─── */
.hero {
    background: var(--dark);
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(64px + 2.5rem) 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,27,34,0.12) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: flex-end;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 2rem;
}
.hero-label-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 2.5rem;
}
.hero-h1 em { font-style: normal; color: var(--red); }
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.15s var(--ease-out), box-shadow 0.2s;
    box-shadow: 0 0 0 0 rgba(202,27,34,0);
}
.btn-solid:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(202,27,34,0.35);
}
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    letter-spacing: -0.01em;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost-light:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.15s var(--ease-out);
}
.btn-dark:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #22c55e;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.15s var(--ease-out), box-shadow 0.2s;
}
.btn-wa:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34,197,94,0.35);
}
.btn-solid-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.2s, transform 0.15s var(--ease-out);
}
.btn-solid-light:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.14);
    letter-spacing: -0.01em;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost-wa:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

/* Hero right: photo + chips */
.hero-right { position: relative; padding-bottom: 2rem; }
.hero-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.07);
}
.hero-img-frame img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) saturate(0.9);
}
.hero-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.4) 0%, transparent 50%);
}
.hero-chip {
    position: absolute;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
}
.hero-chip-icon {
    width: 34px; height: 34px;
    background: var(--red-dim);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.hero-chip-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}
.hero-chip-lbl {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
    line-height: 1.3;
}
.hero-pills { display: flex; gap: 0.625rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    background: rgba(255,255,255,0.04);
}
.hero-pill strong { color: #fff; font-weight: 700; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
    background: var(--dark);
    padding: 10rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,27,34,0.12) 0%, transparent 70%);
    top: -250px; right: -150px;
    pointer-events: none;
}
.page-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-hero-h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.25rem;
}
.page-hero-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}
.page-hero-meta {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1.5rem;
}
.page-hero-meta strong { color: rgba(255,255,255,0.7); font-weight: 600; }

/* ─── SECTIONS / LAYOUT ─── */
.section { padding: 7rem 2rem; }
.section-alt { background: var(--surface); }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-narrow { max-width: 860px; margin: 0 auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
}
.eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

.section-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
}
.section-h2-light { color: #fff; }
.section-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    font-weight: 400;
}
.section-sub-light { color: rgba(255,255,255,0.5); }
.section-header { margin-bottom: 4rem; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* ─── CONTENT LAYOUT (article + sidebar) ─── */
.content-page { padding: 5rem 2rem; }
.content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 4rem;
    align-items: start;
}
.content-main { min-width: 0; }

/* Prose */
.c-h2 {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 3.5rem 0 1.25rem;
    line-height: 1.2;
}
.content-main > .c-h2:first-child,
.content-main section:first-child .c-h2 { margin-top: 0; }
.c-h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 2rem 0 0.625rem;
}
.c-p {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 70ch;
    text-wrap: pretty;
}
.c-p strong { color: var(--text); }
.c-p a, .c-link { color: var(--red); text-decoration: none; font-weight: 600; }
.c-p a:hover, .c-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.65;
}
.check-list li strong { color: var(--text); }
.check-list .chk {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--red-dim);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Card (generic surface) */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.card-divided > * + * {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
}
.card h3, .card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.375rem;
}
.card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* Numbered signal rows */
.sig-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.sig-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    transition: border-color 0.2s;
}
.sig-item:hover { border-color: var(--red-border); }
.sig-num {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.04em;
    line-height: 1.2;
    flex-shrink: 0;
}
.sig-item h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 0.25rem; }
.sig-item p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

/* Info note (cross-links) */
.info-note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin-top: 3rem;
}
.info-note p { font-size: 0.9375rem; color: var(--text-body); line-height: 1.7; }
.info-note p + p { margin-top: 0.75rem; }
.info-note a { color: var(--red); font-weight: 600; text-decoration: none; }
.info-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Comparison table */
.table-scroll { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); border: 1px solid var(--border); }
.c-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 560px; }
.c-table thead th {
    background: var(--dark);
    color: #fff;
    text-align: left;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.c-table tbody td {
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--border);
    color: var(--text-body);
}
.c-table tbody tr:nth-child(even) { background: var(--surface); }
.c-table .td-brand { color: var(--red); font-weight: 700; }
.c-table .td-good { color: #15803d; font-weight: 700; }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 1.25rem; }
.side-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.side-card-accent { border-top: 3px solid var(--red); }
.side-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.side-card > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.side-card .btn-dark, .side-card .btn-wa { width: 100%; font-size: 0.875rem; padding: 12px 20px; }
.side-card .btn-dark { margin-bottom: 0.625rem; }
.side-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.side-links a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}
.side-links a:hover { color: var(--red); }
.side-links .arr { color: var(--red); font-weight: 700; flex-shrink: 0; }
.side-contact { font-size: 0.875rem; color: var(--text-body); line-height: 1.7; }
.side-contact p + p { margin-top: 0.5rem; }
.side-contact a { color: var(--red); text-decoration: none; font-weight: 600; }
.side-contact a:hover { text-decoration: underline; }

/* ─── FAQ ─── */
.faq-cat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 3.5rem 0 1.5rem;
}
.faq-cat:first-child { margin-top: 0; }
.faq-cat-n {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.375rem 1.625rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex-shrink: 0; color: var(--red); transition: transform 0.25s var(--ease); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-body {
    padding: 0 1.625rem 1.5rem;
    font-size: 0.9688rem;
    color: var(--text-body);
    line-height: 1.75;
}
.faq-body strong { color: var(--text); }
.faq-body a { color: var(--red); font-weight: 600; text-decoration: none; }
.faq-body a:hover { text-decoration: underline; text-underline-offset: 3px; }
.faq-body ul { list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-body ul li { display: flex; align-items: flex-start; gap: 8px; }
.faq-body ul .b { color: var(--red); font-weight: 700; flex-shrink: 0; }
.faq-body p { margin-top: 0.75rem; }

/* ─── FORM ─── */
.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.form-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1.75rem;
}
.form-field { margin-bottom: 1.375rem; }
.form-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 0.8125rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #767676; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-dim);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-submit {
    width: 100%;
    font-family: inherit;
    background: var(--red);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.15s var(--ease-out), box-shadow 0.2s;
}
.form-submit:hover {
    opacity: 0.93;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(202,27,34,0.3);
}

/* Contact info blocks */
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item + .contact-item { margin-top: 1.75rem; }
.contact-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--red-dim);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item h3 { font-size: 0.9375rem; font-weight: 700; color: var(--text); letter-spacing: -0.015em; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-decoration: none;
}
.contact-item a:hover { color: var(--red); }
.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 2.5rem;
}
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ─── DARK PANEL CTA (in-page) ─── */
.panel-dark {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 3.5rem;
}
.panel-dark::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,27,34,0.18) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}
.panel-dark > * { position: relative; z-index: 1; }
.panel-dark h2, .panel-dark h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}
.panel-dark p {
    font-size: 0.9688rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 1.75rem;
}
.panel-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

/* ─── STATS STRIP ─── */
.stats-strip { background: #fff; border-bottom: 1px solid var(--border); }
.stats-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item { padding: 2.75rem 2rem; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-num span { color: var(--red); }
.stat-label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; letter-spacing: -0.01em; }

/* ─── SERVICES GRID (home) ─── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.svc-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
    cursor: default;
}
.svc-card:hover { border-color: rgba(202,27,34,0.25); transform: translateY(-4px); }
.svc-card-top-bar {
    position: absolute;
    top: 0; left: 2.5rem; right: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}
.svc-card:hover .svc-card-top-bar { opacity: 1; }
.svc-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--red-dim);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.svc-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.75rem; }
.svc-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; margin-bottom: 1.75rem; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.svc-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.svc-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--red-dim);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: gap 0.2s var(--ease);
}
.svc-link:hover { gap: 10px; }

/* ─── PROCESS (home) ─── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}
.process-step { padding: 2.75rem 2.25rem; border-right: 1px solid var(--border); position: relative; transition: background 0.2s; }
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--surface); }
.step-n {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-n::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.step-title { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.025em; color: var(--text); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── WHY LAPS (home) ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-col { position: relative; }
.why-img-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.why-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-badge {
    position: absolute;
    bottom: -1rem; right: -1rem;
    background: var(--red);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(202,27,34,0.3);
}
.why-badge-val { font-size: 2.25rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.why-badge-lbl { font-size: 0.75rem; font-weight: 500; opacity: 0.8; margin-top: 3px; line-height: 1.3; }
.feat-list { display: flex; flex-direction: column; gap: 0; }
.feat-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.2s var(--ease);
}
.feat-row:first-child { padding-top: 0; }
.feat-row:last-child { border-bottom: none; padding-bottom: 0; }
.feat-row:hover { padding-left: 4px; }
.feat-ico {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.2s, border-color 0.2s;
}
.feat-row:hover .feat-ico { background: var(--red-dim); border-color: var(--red-border); }
.feat-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.feat-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ─── VALUES GRID (nosotros) ─── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: border-color 0.2s, transform 0.2s var(--ease);
}
.value-card:hover { border-color: var(--red-border); transform: translateY(-3px); }
.value-ico {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--red-dim);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    margin-bottom: 1.125rem;
}
.value-card h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 0.375rem; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Mission/vision pair */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.mv-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 1rem;
}
.mv-card h3 svg { color: var(--red); flex-shrink: 0; }
.mv-card p { font-size: 0.9688rem; color: var(--text-muted); line-height: 1.75; }

/* ─── CTA SECTION ─── */
.cta-section { background: var(--dark); padding: 7rem 2rem; position: relative; overflow: hidden; }
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.cta-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,27,34,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.25rem;
}
.cta-h2 em { font-style: normal; color: var(--red); }
.cta-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-sub a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; }
.cta-sub a:hover { color: #fff; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); padding: 4.5rem 2rem 2.5rem; }
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; margin-top: 1rem; }
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col li { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: -0.01em;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(34,197,94,0.35);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
    z-index: 50;
    text-decoration: none;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(34,197,94,0.45); }

/* ─── 404 ─── */
.nf-wrap { max-width: 640px; margin: 0 auto; padding: 10rem 2rem 6rem; text-align: center; }
.nf-code { font-size: 6rem; font-weight: 900; letter-spacing: -0.05em; color: var(--red); line-height: 1; }
.nf-h1 { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin: 1rem 0 0.75rem; }
.nf-p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.nf-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.nf-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-img-col { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .content-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sidebar { position: static; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .hero { padding-bottom: 3rem; }
    .hero-h1 { font-size: clamp(2.5rem, 9vw, 3.5rem); }
    .section { padding: 5rem 1.25rem; }
    .content-page { padding: 3.5rem 1.25rem; }
    .page-hero { padding: 8rem 1.25rem 3.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { border-right: none; border-bottom: 1px solid var(--border); }
    .process-step:last-child { border-bottom: none; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .mv-grid { grid-template-columns: 1fr; }
    .nf-links { grid-template-columns: 1fr; }
    .form-card { padding: 1.75rem; }
}
@media (max-width: 480px) {
    .section { padding: 4rem 1rem; }
    .cta-actions, .panel-actions { flex-direction: column; align-items: stretch; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ═══ EXPERIENCE LAYER ═══ */

/* Preloader */
.preloader {
    position: fixed; inset: 0;
    background: var(--dark);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader img { height: 44px; }
.pre-num {
    font-size: 0.8125rem; font-weight: 700;
    color: rgba(255,255,255,0.4);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}
.pre-bar {
    width: 160px; height: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden; border-radius: 2px;
}
.pre-bar::after {
    content: ''; display: block; height: 100%;
    background: var(--red);
    animation: pre-fill 1.15s cubic-bezier(0.65,0,0.35,1) forwards;
}
@keyframes pre-fill { from { width: 0; } to { width: 100%; } }

/* Hero canvas */
.hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Split-text line masks */
.split-line { display: block; overflow: hidden; }
.split-inner { display: block; will-change: transform; }

/* Cursor dot */
.cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    pointer-events: none;
    z-index: 300;
    transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
    mix-blend-mode: difference;
}
.cursor-dot.grow { width: 8px; height: 8px; opacity: 0.5; transform-origin: center; scale: 3.2; }
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* Marquee */
.marquee {
    background: var(--red);
    color: #fff;
    overflow: hidden;
    padding: 1.1rem 0;
    white-space: nowrap;
    position: relative;
}
.marquee-track {
    display: inline-flex;
    gap: 3rem;
    padding-right: 3rem;
    animation: marquee-scroll 28s linear infinite;
    will-change: transform;
}
.marquee span {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 3rem;
}
.marquee .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); display: inline-block; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Link micro-interaction: animated underline */
.footer-col a, .c-p a, .info-note a, .faq-body a, .side-links a {
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.3s var(--ease), color 0.2s;
}
.footer-col a:hover, .c-p a:hover, .info-note a:hover, .faq-body a:hover, .side-links a:hover {
    background-size: 100% 1px;
    text-decoration: none;
}

/* Card hover lift refinement */
.svc-card, .value-card, .sig-item, .faq-item, .mv-card, .side-card {
    will-change: transform;
}
.mv-card { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }

/* Focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Dynamic layer */
.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform-origin: 0 0;
    transform: scaleX(0);
    z-index: 150;
    pointer-events: none;
}
.nav { transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.35s var(--ease); }
.nav.nav-hidden { transform: translateY(-100%); }
.svc-card, .mv-card, .value-card { transform-style: preserve-3d; }

/* Hero text-protection shade (sits between 3D canvas and content) */
.hero-shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.55) 42%, rgba(13,13,13,0.1) 75%, transparent 100%),
        linear-gradient(to top, rgba(13,13,13,0.75) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ═══ COVERAGE + TRUST BAND ═══ */
.credbar { background: #fff; border-bottom: 1px solid var(--border); padding: 4rem 2rem; }
.credbar-inner { max-width: 1200px; margin: 0 auto; }
.cov-head { text-align: center; margin-bottom: 2rem; }
.cov-title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1.15; }
.cov-zones { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.zone {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 0.9375rem; font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    background: #fff;
    transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
    cursor: default;
}
.zone svg { color: var(--red); flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.zone:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    background: var(--red-dim);
    box-shadow: 0 6px 18px rgba(202,27,34,0.12);
}
.zone:hover svg { transform: scale(1.15); }

.trust-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: 3.5rem;
    border-top: 1px solid var(--border);
}
.trust-item {
    padding: 2.25rem 1.5rem 0;
    text-align: center;
    border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-ico {
    width: 46px; height: 46px;
    margin: 0 auto 1.125rem;
    border-radius: 13px;
    background: var(--red-dim);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s var(--ease-out), background 0.3s var(--ease);
}
.trust-item:hover .trust-ico { transform: translateY(-3px) scale(1.05); background: rgba(202,27,34,0.16); }
.trust-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 0.4rem; }
.trust-sub { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; max-width: 22ch; margin: 0 auto; }

@media (max-width: 768px) {
    .credbar { padding: 3rem 1.25rem; }
    .trust-row { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
    .trust-item { padding: 1.5rem 1rem 0; }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
}
@media (max-width: 480px) {
    .trust-row { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.75rem; }
    .trust-item:last-child { border-bottom: none; }
    .zone { padding: 9px 16px; font-size: 0.875rem; }
}

/* Interior page-hero: animated backdrop + pulsing glow */
.page-hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero::after { animation: ph-glow 7s ease-in-out infinite; }
@keyframes ph-glow {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.2); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .page-hero::after { animation: none; }
}
