:root {
    --cbx-charcoal: #1a2330;
    --cbx-navy: #12191c;
    --cbx-navy-mid: #1a2330;
    --cbx-navy-soft: #243044;
    --cbx-slate: #4e565a;
    --cbx-red: #e31e24;
    --cbx-red-dark: #b8181d;
    --cbx-red-light: #fdeaea;
    --cbx-red-soft: rgba(227, 30, 36, 0.12);
    --cbx-red-glow: rgba(227, 30, 36, 0.35);
    --cbx-white: #ffffff;
    --cbx-gray-50: #f2f4f6;
    --cbx-gray-100: #e4e7ec;
    --cbx-gray-200: #d5dde8;
    --cbx-gray-400: #6b7a8d;
    --cbx-gray-600: #4e565a;
    --cbx-gray-800: #2b3444;
    --cbx-shadow-sm: 0 8px 24px rgba(18, 25, 28, 0.06);
    --cbx-shadow-md: 0 20px 50px rgba(18, 25, 28, 0.12);
    --cbx-shadow-lg: 0 32px 80px rgba(18, 25, 28, 0.18);
    --cbx-radius: 16px;
    --cbx-radius-lg: 24px;
    --cbx-header-h: 82px;
    --cbx-font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--cbx-font);
    color: var(--cbx-navy-mid);
    background: var(--cbx-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.cbx-landing-container {
    width: min(1200px, calc(100% - 2.5rem));
    margin: 0 auto;
}

/* ── Header ── */
.cbx-landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--cbx-header-h);
    background: #fff;
    border-bottom: 1px solid var(--cbx-gray-100);
    box-shadow: 0 1px 0 rgba(18, 25, 28, 0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
}

.cbx-landing-header.is-scrolled {
    box-shadow: var(--cbx-shadow-sm);
    border-bottom-color: rgba(227, 30, 36, 0.14);
}

.cbx-landing-header.is-scrolled::after {
    opacity: 1;
}

.cbx-landing-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cbx-red), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.cbx-landing-header__inner {
    height: var(--cbx-header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.cbx-landing-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
}

.cbx-landing-brand__logo {
    display: block;
    height: 46px;
    width: auto;
    max-width: min(180px, 46vw);
    object-fit: contain;
}

.cbx-brand-logo-surface {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(18, 25, 28, 0.12);
}

.cbx-brand-logo-surface__img {
    display: block;
    width: auto;
    object-fit: contain;
}

.cbx-brand-logo-surface--panel {
    padding: 0.7rem 1rem;
    margin-bottom: 0.65rem;
}

.cbx-brand-logo-surface--panel .cbx-brand-logo-surface__img {
    height: 30px;
}

.cbx-brand-logo-surface--footer {
    padding: 0.8rem 1.15rem;
    margin-bottom: 1.15rem;
}

.cbx-brand-logo-surface--footer .cbx-brand-logo-surface__img {
    height: 34px;
}

.cbx-landing-nav {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.cbx-landing-nav a {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cbx-charcoal);
    transition: color 0.2s, background 0.2s;
}

.cbx-landing-nav a:hover {
    color: var(--cbx-red-dark);
    background: var(--cbx-red-light);
}

.cbx-landing-nav a.is-active {
    color: var(--cbx-red);
    background: var(--cbx-red-light);
}

.cbx-landing-header .cbx-btn--outline {
    background: var(--cbx-gray-50);
    color: var(--cbx-charcoal);
    border: 1.5px solid var(--cbx-gray-200);
}

.cbx-landing-header .cbx-btn--outline i {
    color: var(--cbx-red);
}

.cbx-landing-header .cbx-btn--outline:hover {
    background: #fff;
    color: var(--cbx-red-dark);
    border-color: rgba(227, 30, 36, 0.35);
    box-shadow: var(--cbx-shadow-sm);
}

.cbx-landing-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cbx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.35rem;
    border-radius: 999px;
    border: none;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

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

.cbx-btn--primary {
    background: linear-gradient(135deg, var(--cbx-red), var(--cbx-red-dark));
    color: #fff;
    box-shadow: 0 12px 28px var(--cbx-red-glow);
}

.cbx-btn--outline {
    background: #fff;
    color: var(--cbx-navy-mid);
    border: 1.5px solid var(--cbx-gray-200);
}

.cbx-btn--outline:hover {
    border-color: var(--cbx-navy-mid);
    box-shadow: var(--cbx-shadow-sm);
}

.cbx-btn--whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.cbx-btn--lg { padding: 0.95rem 1.65rem; font-size: 0.95rem; }

.cbx-btn--ghost-light {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.cbx-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--cbx-gray-200);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.cbx-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--cbx-navy-mid);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.cbx-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cbx-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.cbx-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.cbx-hero {
    position: relative;
    padding: calc(var(--cbx-header-h) + 2.5rem) 0 0;
    background: var(--cbx-navy);
    overflow: hidden;
}

.cbx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(227, 30, 36, 0.24), transparent 42%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.06), transparent 35%),
        linear-gradient(180deg, #1a2330 0%, #12191c 100%);
}

.cbx-hero::after {
    display: none;
}

.cbx-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 0 4rem;
}

.cbx-hero__content {
    color: #fff;
    max-width: none;
}

.cbx-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cbx-hero__illustration {
    width: min(100%, 420px);
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.28));
}

.cbx-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 40%, transparent);
}

.cbx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
}

.cbx-badge i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cbx-red);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
}

.cbx-hero h1 {
    margin: 0 0 1.15rem;
    font-size: clamp(2.15rem, 4.8vw, 3.45rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.cbx-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #ff7074, var(--cbx-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cbx-hero__lead {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 52rem;
    margin-bottom: 1.75rem;
    line-height: 1.75;
}

.cbx-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.cbx-hero-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--cbx-radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(16px);
    box-shadow: var(--cbx-shadow-lg);
}

.cbx-hero-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,.25), rgba(255,255,255,.02));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.cbx-hero-panel__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cbx-hero-panel__head span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.45;
}

.cbx-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.cbx-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cbx-checklist li:last-child { border-bottom: none; }

.cbx-checklist i {
    color: var(--cbx-red);
    background: rgba(227, 30, 36, 0.14);
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.cbx-trust-bar {
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    padding-bottom: 3.5rem;
}

.cbx-trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border-radius: var(--cbx-radius-lg);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--cbx-shadow-md);
    border: 1px solid var(--cbx-gray-100);
    position: relative;
    overflow: hidden;
}

.cbx-trust-bar__inner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--cbx-red), #ff7074, var(--cbx-red));
}

.cbx-trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 0.75rem;
}

.cbx-trust-item + .cbx-trust-item {
    border-left: 1px solid var(--cbx-gray-100);
}

.cbx-trust-item__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--cbx-gray-50);
    color: var(--cbx-red);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cbx-trust-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.cbx-trust-item span {
    font-size: 0.78rem;
    color: var(--cbx-gray-400);
}

/* ── Sections ── */
.cbx-section { padding: 5.5rem 0; }

.cbx-section--muted { background: var(--cbx-gray-50); }

.cbx-section--dark {
    background: var(--cbx-navy);
    color: #fff;
}

.cbx-section__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.cbx-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cbx-red-dark);
    margin-bottom: 0.75rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: var(--cbx-red-light);
    border: 1px solid rgba(227, 30, 36, 0.12);
}

.cbx-section--dark .cbx-section__eyebrow { color: #ff8a8d; }

.cbx-section__head h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cbx-section__head p {
    margin: 0;
    color: var(--cbx-gray-600);
    font-size: 1.02rem;
}

.cbx-section--dark .cbx-section__head p { color: rgba(255, 255, 255, 0.65); }

.cbx-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

.cbx-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
}

.cbx-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--cbx-gray-100);
    border-radius: var(--cbx-radius);
    padding: 1.65rem;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.cbx-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cbx-red), #ff7074);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.cbx-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cbx-shadow-md);
    border-color: rgba(227, 30, 36, 0.15);
}

.cbx-card:hover::before {
    transform: scaleX(1);
}

.cbx-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
    background: linear-gradient(145deg, var(--cbx-red), var(--cbx-red-dark));
    color: #fff;
    box-shadow: 0 8px 20px var(--cbx-red-glow);
}

.cbx-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    font-weight: 700;
}

.cbx-card p {
    margin: 0;
    color: var(--cbx-gray-600);
    font-size: 0.92rem;
}

.cbx-cta-banner {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.65rem 2rem;
    border-radius: var(--cbx-radius);
    background: linear-gradient(135deg, var(--cbx-navy-mid), var(--cbx-navy));
    color: #fff;
    box-shadow: var(--cbx-shadow-md);
    position: relative;
    overflow: hidden;
}

.cbx-cta-banner p {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.82);
}

.cbx-cta-banner strong { color: #ff8a8d; }

.cbx-cta-banner::before {
    content: "";
    position: absolute;
    inset: auto -20% -60% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.22), transparent 70%);
    pointer-events: none;
}

/* ── Process ── */
.cbx-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.cbx-process::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

.cbx-step {
    position: relative;
    text-align: center;
    padding: 0 0.5rem;
}

.cbx-step__num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--cbx-red), var(--cbx-red-dark));
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px var(--cbx-red-glow);
    position: relative;
    z-index: 1;
}

.cbx-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.cbx-step p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 18rem;
    margin-inline: auto;
}

/* ── FAQ ── */
.cbx-faq { max-width: 860px; margin: 0 auto; }

.cbx-faq details {
    background: #fff;
    border: 1px solid var(--cbx-gray-100);
    border-radius: var(--cbx-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.cbx-faq details[open] {
    border-color: rgba(227, 30, 36, 0.25);
    box-shadow: var(--cbx-shadow-sm);
}

.cbx-faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.98rem;
    list-style: none;
    padding: 1.15rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cbx-faq summary::-webkit-details-marker { display: none; }

.cbx-faq summary::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 1.1rem;
    color: var(--cbx-red);
    transition: transform 0.25s;
}

.cbx-faq details[open] summary::after { transform: rotate(180deg); }

.cbx-faq p {
    margin: 0;
    padding: 0 1.35rem 1.15rem;
    color: var(--cbx-gray-600);
    font-size: 0.92rem;
    border-top: 1px solid var(--cbx-gray-100);
    padding-top: 1rem;
}

/* ── Contact ── */
.cbx-contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border-radius: var(--cbx-radius-lg);
    overflow: hidden;
    box-shadow: var(--cbx-shadow-lg);
    border: 1px solid var(--cbx-gray-100);
}

.cbx-contact-form {
    background: #fff;
    padding: 2rem 2.25rem;
}

.cbx-contact-form h3 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.cbx-contact-form > p {
    margin: 0 0 1.5rem;
    color: var(--cbx-gray-600);
    font-size: 0.92rem;
}

.cbx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.cbx-form-group { margin-bottom: 0.95rem; }

.cbx-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--cbx-gray-800);
}

.cbx-form-group input,
.cbx-form-group textarea {
    width: 100%;
    padding: 0.82rem 1rem;
    border: 1.5px solid var(--cbx-gray-100);
    border-radius: 12px;
    font: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--cbx-gray-50);
}

.cbx-form-group input:focus,
.cbx-form-group textarea:focus {
    outline: none;
    border-color: rgba(227, 30, 36, 0.45);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
    background: #fff;
}

.cbx-form-group textarea { min-height: 130px; resize: vertical; }

.cbx-contact-side {
    background: linear-gradient(160deg, var(--cbx-navy-mid) 0%, var(--cbx-navy) 100%);
    color: #fff;
    padding: 2rem 2.25rem;
    position: relative;
    overflow: hidden;
}

.cbx-contact-side::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.25), transparent 70%);
}

.cbx-contact-side > * { position: relative; z-index: 1; }

.cbx-contact-side h3 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.cbx-contact-side > p {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.cbx-contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
}

.cbx-contact-item:hover { background: rgba(255, 255, 255, 0.1); }

.cbx-contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(227, 30, 36, 0.2);
    color: #ff8a8d;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cbx-contact-item strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.cbx-contact-item a,
.cbx-contact-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.cbx-alert {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.cbx-alert--success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.cbx-alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Footer ── */
.cbx-landing-footer {
    background: #fff;
    color: var(--cbx-charcoal);
    padding: 0 0 1.75rem;
    border-top: 1px solid var(--cbx-gray-100);
    position: relative;
}

.cbx-landing-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--cbx-red), #ff7074, var(--cbx-red));
}

.cbx-footer-top {
    padding: 3rem 0 2.25rem;
}

.cbx-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.75rem;
    align-items: start;
}

.cbx-footer-brand,
.cbx-footer-col {
    min-width: 0;
}

.cbx-footer-brand__logo-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    margin-bottom: 0.75rem;
}

.cbx-footer-brand__logo {
    height: 46px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.cbx-footer-brand__tagline {
    margin: 0 0 0.9rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cbx-red);
    line-height: 1.4;
}

.cbx-footer-brand__about {
    margin: 0;
    font-size: 1rem;
    max-width: 26rem;
    line-height: 1.8;
    color: var(--cbx-gray-600);
}

.cbx-footer-col__title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 46px;
    margin: 0 0 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--cbx-gray-100);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cbx-charcoal);
}

.cbx-footer-col__title i {
    color: var(--cbx-red);
    font-size: 1.05rem;
}

.cbx-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cbx-footer-links li + li {
    margin-top: 0.35rem;
}

.cbx-footer-links a,
.cbx-footer-links__static {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--cbx-gray-600);
    line-height: 1.5;
    transition: color 0.2s;
    max-width: 100%;
}

.cbx-footer-links__text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.cbx-footer-links a:hover {
    color: var(--cbx-red-dark);
}

.cbx-footer-links a i,
.cbx-footer-links__static i {
    width: 1.35rem;
    margin-top: 0.15rem;
    color: var(--cbx-red);
    font-size: 1rem;
    flex-shrink: 0;
    text-align: center;
}

.cbx-footer-links__static {
    color: var(--cbx-charcoal);
}

.cbx-footer-bottom {
    padding-top: 1.35rem;
    border-top: 1px solid var(--cbx-gray-100);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
    color: var(--cbx-gray-600);
}

.cbx-footer-bottom__copy,
.cbx-footer-bottom__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.85rem;
}

.cbx-footer-bottom__copy i,
.cbx-footer-bottom__tagline i {
    color: var(--cbx-red);
}

.cbx-footer-bottom__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.cbx-footer-bottom__meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--cbx-charcoal);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.cbx-footer-bottom__meta a:hover {
    color: var(--cbx-red-dark);
}

.cbx-floating-wa {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s;
}

.cbx-floating-wa:hover { transform: scale(1.06); }

/* ── Reveal animation ── */
.cbx-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cbx-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.d-none-mobile { display: inline-flex; }

@media (max-width: 991px) {
    .d-none-mobile { display: none !important; }

    .cbx-landing-header__inner {
        grid-template-columns: 1fr auto;
    }

    .cbx-landing-nav {
        position: fixed;
        inset: var(--cbx-header-h) 0 auto;
        background: #fff;
        border-bottom: 1px solid var(--cbx-gray-100);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
        box-shadow: var(--cbx-shadow-md);
    }

    .cbx-landing-nav a {
        border-radius: 10px;
        padding: 0.85rem 1rem;
        color: var(--cbx-charcoal);
    }

    .cbx-landing-nav a:hover,
    .cbx-landing-nav a.is-active {
        color: var(--cbx-red-dark);
        background: var(--cbx-red-light);
    }

    .cbx-landing-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .cbx-menu-toggle { display: inline-flex; }

    .cbx-hero__visual {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }

    .cbx-hero__illustration {
        width: min(100%, 300px);
    }

    .cbx-hero__grid,
    .cbx-grid-3,
    .cbx-grid-2,
    .cbx-process,
    .cbx-contact-wrap,
    .cbx-footer-grid,
    .cbx-trust-bar__inner,
    .cbx-form-row {
        grid-template-columns: 1fr;
    }

    .cbx-trust-item + .cbx-trust-item {
        border-left: none;
        border-top: 1px solid var(--cbx-gray-100);
        padding-top: 1rem;
    }

    .cbx-process::before { display: none; }

    .cbx-landing-brand__logo { height: 36px; }

    .cbx-footer-top { padding: 2.5rem 0 2rem; }

    .cbx-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cbx-footer-brand__logo-link {
        justify-content: center;
    }

    .cbx-footer-brand__about {
        max-width: none;
    }

    .cbx-footer-col {
        text-align: center;
    }

    .cbx-footer-col__title {
        justify-content: center;
    }

    .cbx-footer-links li {
        display: flex;
        justify-content: center;
    }

    .cbx-footer-links a,
    .cbx-footer-links__static {
        justify-content: flex-start;
        text-align: left;
        width: min(100%, 22rem);
    }

    .cbx-footer-links__item--address {
        width: 100%;
    }

    .cbx-footer-links__item--address .cbx-footer-links__static {
        display: flex;
        align-items: flex-start;
    }

    .cbx-footer-links__item--address .cbx-footer-links__text {
        line-height: 1.65;
    }

    .cbx-footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cbx-footer-bottom__copy,
    .cbx-footer-bottom__meta {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .cbx-landing-container { width: min(1200px, calc(100% - 1.25rem)); }
    .cbx-section { padding: 4rem 0; }
    .cbx-hero h1 { font-size: 1.95rem; }

}

/* ── Report inquiry ── */
.cbx-inquiry-page {
    padding: calc(var(--cbx-header-h) + 2.5rem) 0 4.5rem;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(227, 30, 36, 0.06), transparent 60%),
        var(--cbx-gray-50);
    min-height: calc(100vh - var(--cbx-header-h));
}

.cbx-inquiry-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2.25rem;
}

.cbx-inquiry-head h1 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--cbx-charcoal);
    letter-spacing: -0.02em;
}

.cbx-inquiry-head p {
    margin: 0;
    color: var(--cbx-gray-600);
    font-size: 1rem;
}

.cbx-inquiry-layout {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

.cbx-inquiry-search,
.cbx-inquiry-outcome {
    background: #fff;
    border: 1px solid var(--cbx-gray-100);
    border-radius: var(--cbx-radius-lg);
    box-shadow: var(--cbx-shadow-sm);
}

.cbx-inquiry-search {
    padding: 1.75rem;
}

.cbx-inquiry-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--cbx-gray-600);
}

.cbx-inquiry-form__field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    border: 1.5px solid var(--cbx-gray-100);
    border-radius: 14px;
    background: var(--cbx-gray-50);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.cbx-inquiry-form__field:focus-within {
    border-color: rgba(227, 30, 36, 0.4);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
    background: #fff;
}

.cbx-inquiry-form__field > i {
    color: var(--cbx-gray-400);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cbx-inquiry-form__field input {
    flex: 1;
    min-width: 0;
    padding: 0.95rem 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--cbx-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cbx-inquiry-form__field input:focus {
    outline: none;
}

.cbx-inquiry-form__field input::placeholder {
    color: var(--cbx-gray-400);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.cbx-inquiry-form__submit {
    width: 100%;
    margin-top: 0.85rem;
    justify-content: center;
}

.cbx-inquiry-form__hint,
.cbx-inquiry-form__error {
    margin: 0.8rem 0 0;
    font-size: 0.86rem;
    line-height: 1.5;
}

.cbx-inquiry-form__hint { color: var(--cbx-gray-400); }
.cbx-inquiry-form__error { color: #b91c1c; font-weight: 600; }

.cbx-inquiry-outcome {
    overflow: hidden;
}

.cbx-inquiry-outcome--success {
    border-color: rgba(22, 163, 74, 0.2);
}

.cbx-inquiry-outcome--danger {
    border-color: rgba(220, 38, 38, 0.18);
}

.cbx-inquiry-outcome--warning {
    border-color: rgba(217, 119, 6, 0.2);
}

.cbx-inquiry-outcome__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid var(--cbx-gray-100);
}

.cbx-inquiry-outcome--success .cbx-inquiry-outcome__header {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}

.cbx-inquiry-outcome--danger .cbx-inquiry-outcome__header {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
}

.cbx-inquiry-outcome--muted .cbx-inquiry-outcome__header,
.cbx-inquiry-outcome--warning .cbx-inquiry-outcome__header {
    background: linear-gradient(135deg, var(--cbx-gray-50) 0%, #fff 100%);
}

.cbx-inquiry-outcome__status {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.cbx-inquiry-outcome__status-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 4px 14px rgba(18, 25, 28, 0.08);
}

.cbx-inquiry-outcome--success .cbx-inquiry-outcome__status-icon { color: #16a34a; }
.cbx-inquiry-outcome--danger .cbx-inquiry-outcome__status-icon { color: #dc2626; }
.cbx-inquiry-outcome--warning .cbx-inquiry-outcome__status-icon { color: #d97706; }
.cbx-inquiry-outcome--muted .cbx-inquiry-outcome__status-icon { color: var(--cbx-gray-600); }

.cbx-inquiry-outcome__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cbx-gray-400);
    margin-bottom: 0.15rem;
}

.cbx-inquiry-outcome__header h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cbx-charcoal);
    letter-spacing: -0.01em;
}

.cbx-inquiry-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.cbx-inquiry-pill--success { background: #dcfce7; color: #15803d; }
.cbx-inquiry-pill--danger { background: #fee2e2; color: #b91c1c; }
.cbx-inquiry-pill--muted { background: var(--cbx-gray-100); color: var(--cbx-gray-600); }

.cbx-inquiry-outcome__report-id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    background: var(--cbx-gray-50);
    border: 1px dashed var(--cbx-gray-200);
}

.cbx-inquiry-outcome__report-id span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cbx-gray-400);
}

.cbx-inquiry-outcome__report-id strong {
    font-family: ui-monospace, "Cascadia Code", monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--cbx-red-dark);
    letter-spacing: 0.04em;
    text-align: right;
    word-break: break-all;
}

.cbx-inquiry-outcome__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 0;
}

.cbx-inquiry-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--cbx-gray-100);
    background: #fff;
    min-width: 0;
}

.cbx-inquiry-info--wide {
    grid-column: 1 / -1;
}

.cbx-inquiry-info__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--cbx-red-soft);
    color: var(--cbx-red);
    font-size: 0.95rem;
}

.cbx-inquiry-info__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cbx-gray-400);
    margin-bottom: 0.2rem;
}

.cbx-inquiry-info strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--cbx-charcoal);
    line-height: 1.4;
    word-break: break-word;
}

.cbx-inquiry-outcome__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.25rem 1.5rem 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.cbx-inquiry-outcome__actions--muted {
    background: var(--cbx-gray-50);
    border-color: var(--cbx-gray-100);
}

.cbx-inquiry-outcome__trust {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #166534;
    min-width: 0;
}

.cbx-inquiry-outcome__actions--muted .cbx-inquiry-outcome__trust {
    color: var(--cbx-gray-600);
}

.cbx-inquiry-outcome__trust i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1rem;
}

.cbx-inquiry-download {
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.22);
}

.cbx-inquiry-outcome__empty {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.cbx-inquiry-outcome__empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    background: #fffbeb;
    color: #d97706;
}

.cbx-inquiry-outcome__empty h2 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cbx-charcoal);
}

.cbx-inquiry-outcome__empty p {
    margin: 0;
    max-width: 36ch;
    margin-inline: auto;
    color: var(--cbx-gray-600);
    font-size: 0.92rem;
    line-height: 1.55;
}

.cbx-inquiry-outcome__empty strong {
    color: var(--cbx-charcoal);
}

@media (max-width: 991px) {
    .cbx-inquiry-outcome__grid {
        grid-template-columns: 1fr;
    }

    .cbx-inquiry-info--wide {
        grid-column: auto;
    }

    .cbx-inquiry-outcome__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cbx-inquiry-outcome__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cbx-inquiry-download {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .cbx-inquiry-search {
        padding: 1.35rem;
    }

    .cbx-inquiry-outcome__header,
    .cbx-inquiry-outcome__grid {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .cbx-inquiry-outcome__report-id,
    .cbx-inquiry-outcome__actions {
        margin-left: 1.15rem;
        margin-right: 1.15rem;
    }

    .cbx-inquiry-outcome__report-id {
        flex-direction: column;
        align-items: flex-start;
    }

    .cbx-inquiry-outcome__report-id strong {
        text-align: left;
    }
}
