:root {
    color-scheme: light;
    --blue-dark: #10233f;
    --blue: #155e95;
    --green: #006341;
    --green-soft: #e6f4ef;
    --gray-bg: #f3f6f9;
    --gray-soft: #f8fafc;
    --line: #d7e0ea;
    --text: #0f1729;
    --muted: #617086;
    --white: #ffffff;
    --shadow: 0 12px 32px rgba(16, 35, 63, 0.08);
    --shadow-lg: 0 24px 64px rgba(16, 35, 63, 0.16);
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--gray-bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.navbar {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.94);
    min-height: 68px;
    position: sticky;
    top: 0;
    z-index: 30;
}

.navbar-brand {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 900;
}

.nav-link {
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--green);
}

.btn {
    border-radius: 8px;
    font-weight: 800;
}

.btn-primary {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 10px 24px rgba(0, 99, 65, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #004f35;
    border-color: #004f35;
}

.btn-outline-primary {
    border-color: rgba(21, 94, 149, 0.35);
    color: var(--blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: #e9f2f8;
    border-color: var(--blue);
    color: var(--blue);
}

.btn:disabled,
.btn[disabled] {
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.55;
}

.btn-full {
    width: 100%;
}

.home-hero {
    background:
        linear-gradient(135deg, rgba(16, 35, 63, 0.96), rgba(0, 99, 65, 0.9)),
        var(--blue-dark);
    color: var(--white);
    padding: 5.5rem 0 4.5rem;
}

.home-hero-grid,
.split-grid,
.auth-grid {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.eyebrow {
    background: rgba(0, 99, 65, 0.12);
    border: 1px solid rgba(0, 99, 65, 0.22);
    border-radius: 999px;
    color: var(--green);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 1rem;
    padding: 0.42rem 0.75rem;
    text-transform: uppercase;
}

.home-hero .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    color: #d9fff0;
}

.home-hero h1,
.auth-section h1 {
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    font-weight: 900;
    line-height: 1.04;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #d8e5ef;
    font-size: 1.25rem;
    line-height: 1.65;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0 1rem;
}

.hero-trust {
    color: #c7d6e2;
    margin: 0;
}

.fiscal-preview {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    color: var(--text);
    padding: 1.25rem;
}

.preview-header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.preview-header strong {
    color: var(--blue-dark);
}

.preview-header span {
    background: var(--green-soft);
    border-radius: 999px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.35rem 0.65rem;
}

.preview-metrics {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 1rem 0;
}

.preview-metrics div {
    background: var(--gray-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
}

.preview-metrics span {
    color: var(--muted);
    display: block;
    font-size: 0.78rem;
    margin-bottom: 0.3rem;
}

.preview-metrics strong {
    color: var(--blue-dark);
    font-size: 1.35rem;
}

.preview-table {
    display: grid;
    gap: 0.75rem;
}

.preview-table span {
    background: linear-gradient(90deg, #e6edf4, #f8fafc);
    border-radius: 999px;
    display: block;
    height: 13px;
}

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}

.trust-strip .container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.trust-strip span {
    background: var(--gray-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #344155;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0.5rem 0.8rem;
}

.home-section {
    padding: 5rem 0;
}

.narrow {
    max-width: 860px;
    text-align: center;
}

.home-section h2,
.section-heading h2,
.final-cta-card h2 {
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.home-section p,
.section-heading p,
.final-cta-card p,
.auth-section p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.72;
}

.problem-section {
    background: var(--white);
}

.solution-section {
    background: var(--gray-soft);
}

.steps-card,
.benefits-grid article,
.audience-grid article,
.auth-card,
.metric-card,
.panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.steps-card {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.steps-card div {
    align-items: center;
    background: var(--gray-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.steps-card strong,
.step-number {
    align-items: center;
    background: var(--green);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    flex: 0 0 2.25rem;
    font-weight: 900;
    height: 2.25rem;
    justify-content: center;
    width: 2.25rem;
}

.steps-card span {
    color: #334155;
    font-weight: 800;
}

.centered {
    margin: 0 auto 2.5rem;
    max-width: 820px;
    text-align: center;
}

.benefits-grid,
.audience-grid {
    display: grid;
    gap: 1rem;
}

.benefits-grid {
    grid-template-columns: repeat(4, 1fr);
}

.audience-grid.compact {
    grid-template-columns: repeat(3, 1fr);
}

.benefits-grid article,
.audience-grid article {
    padding: 1.35rem;
}

.benefits-grid h3,
.audience-grid h3 {
    color: var(--blue-dark);
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.55rem;
}

.benefits-grid p,
.audience-grid p {
    color: var(--muted);
    font-size: 0.93rem;
    margin: 0;
}

.value-strip {
    background: var(--blue-dark);
    color: var(--white);
    padding: 2.25rem 0;
}

.value-strip .container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.value-strip div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1.25rem;
}

.value-strip strong {
    color: #a8f0d2;
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
}

.value-strip span {
    color: #d8e5ef;
}

.final-cta-section {
    background: var(--gray-soft);
    padding: 4.5rem 0;
}

.final-cta-card {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 2rem;
}

.final-cta-card p {
    margin: 0;
}

.site-footer {
    background: #081426;
    color: #d8e5ef;
    padding: 2rem 0;
}

.site-footer .container {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.site-footer p {
    margin: 0.25rem 0 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer a {
    color: #d8e5ef;
    font-weight: 700;
}

.auth-section {
    background: linear-gradient(135deg, #ffffff, #e9f2f8);
    min-height: calc(100vh - 68px);
    padding: 5rem 0;
}

.auth-screen {
    align-items: center;
    background: linear-gradient(135deg, #f8fafc, #e9f2f8);
    display: flex;
    min-height: 100vh;
    padding: 2rem 0;
}

.auth-shell {
    margin: 0 auto;
    max-width: 1040px;
    padding: 0 1.5rem;
    width: 100%;
}

.narrow-auth {
    max-width: 680px;
}

.auth-brand {
    color: var(--green);
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.back-home-button {
    align-items: center;
    background: #e9eef4;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 1.2rem;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    margin-right: 0.75rem;
    width: 42px;
}

.back-home-button:hover,
.back-home-button:focus {
    background: var(--green);
    color: var(--white);
    outline: 3px solid rgba(0, 99, 65, 0.16);
}

.auth-panel-card {
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
    overflow: hidden;
}

.auth-copy {
    background: var(--blue-dark);
    color: var(--white);
    padding: 2.25rem;
}

.auth-copy h1,
.auth-message-card h1,
.auth-single-card h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.auth-copy p {
    color: #d8e5ef;
}

.auth-copy .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #d9fff0;
}

.auth-trust {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #e8f2fb;
    font-weight: 800;
    margin-top: 2rem;
    padding: 1rem;
}

.auth-panel-card .auth-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.auth-links a,
.auth-single-card a {
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 800;
}

.auth-message-card,
.auth-single-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.auth-message-card p,
.auth-single-card p {
    color: var(--muted);
}

.auth-mail-target,
.auth-trust-light {
    background: var(--gray-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--blue-dark);
    font-weight: 800;
    margin: 1rem 0;
    padding: 0.9rem 1rem;
}

.auth-help {
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.auth-success,
.auth-error {
    border-radius: 8px;
    font-weight: 800;
    margin: 1rem 0;
    padding: 0.9rem 1rem;
}

.auth-success {
    background: #e6f4ef;
    border: 1px solid rgba(0, 99, 65, 0.22);
    color: var(--green);
}

.auth-error {
    background: #fff1f0;
    border: 1px solid rgba(180, 35, 24, 0.24);
    color: #b42318;
}

.resend-form {
    margin: 1rem 0;
}

.auth-secondary-link {
    color: var(--blue);
    display: inline-flex;
    font-weight: 800;
}

.auth-section h1 {
    color: var(--blue-dark);
}

.auth-card {
    padding: 2rem;
}

.auth-card label {
    color: var(--blue-dark);
    display: block;
    font-size: 0.86rem;
    font-weight: 900;
    margin: 1rem 0 0.4rem;
}

.auth-card input {
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    min-height: 46px;
    padding: 0.7rem 0.8rem;
    width: 100%;
}

.math-field-wrap {
    position: relative;
}

.math-field-wrap span {
    align-items: center;
    background: #b42318;
    border-radius: 50%;
    color: var(--white);
    display: none;
    font-size: 0.78rem;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
}

.math-field-wrap.math-error input {
    border-color: #b42318;
    box-shadow: 0 0 0 0.18rem rgba(180, 35, 24, 0.12);
    animation: loginShake 0.18s ease-in-out 2;
}

.math-field-wrap.math-error span {
    display: inline-flex;
}

.validated-input-wrap {
    position: relative;
}

.validated-input-wrap .valid-icon {
    align-items: center;
    background: var(--green);
    border-radius: 50%;
    color: var(--white);
    display: none;
    font-size: 0.78rem;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
}

.validated-input-wrap input.is-valid {
    border-color: var(--green);
    box-shadow: 0 0 0 0.12rem rgba(0, 99, 65, 0.12);
}

.validated-input-wrap input.is-valid + .valid-icon {
    display: inline-flex;
}

.validated-input-wrap input.is-invalid {
    border-color: #b42318;
    box-shadow: 0 0 0 0.12rem rgba(180, 35, 24, 0.12);
}

.input-feedback {
    color: #b42318;
    display: block;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    min-height: 1rem;
}

.field-help {
    color: var(--muted);
    display: block;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.readonly-field {
    background: #eef3f8;
    color: var(--muted);
}

@keyframes loginShake {
    0%, 100% {
        transform: translateX(0);
    }
    33% {
        transform: translateX(-4px);
    }
    66% {
        transform: translateX(4px);
    }
}

.auth-card input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(0, 99, 65, 0.12);
    outline: none;
}

[data-name-mask] {
    text-transform: uppercase;
}

.rfc-input {
    text-transform: uppercase;
}

.rfc-input.is-valid {
    border-color: var(--green);
    box-shadow: 0 0 0 0.12rem rgba(0, 99, 65, 0.12);
}

.rfc-input.is-invalid {
    border-color: #b42318;
    box-shadow: 0 0 0 0.12rem rgba(180, 35, 24, 0.12);
}

.rfc-feedback {
    color: var(--muted);
    display: block;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.state-combobox {
    position: relative;
}

.state-native-select {
    height: 1px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 1px;
}

.state-combobox-input {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--blue-dark);
    font: inherit;
    min-height: 46px;
    padding: 0.7rem 0.8rem;
    width: 100%;
}

.state-combobox-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(0, 99, 65, 0.12);
    outline: none;
}

.state-combobox-list {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: grid;
    left: 0;
    max-height: 240px;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    z-index: 20;
}

.state-combobox-list:empty {
    display: none;
}

.state-combobox-list button {
    background: var(--white);
    border: 0;
    color: var(--blue-dark);
    cursor: pointer;
    font: inherit;
    padding: 0.72rem 0.8rem;
    text-align: left;
}

.state-combobox-list button:hover,
.state-combobox-list button:focus {
    background: #eef7f3;
    color: var(--green);
    outline: none;
}

.auth-card button {
    margin-top: 1.2rem;
}

.auth-card p {
    font-size: 0.9rem;
    margin: 1rem 0 0;
}

.app-shell {
    min-height: 100vh;
}

.metric-card {
    padding: 1rem;
}

.metric-card strong {
    display: block;
    font-size: 1rem;
}

.metric-label {
    color: var(--muted);
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.chart-box {
    height: 280px;
}

.auth-panel {
    max-width: 420px;
}

.app-workspace {
    background: #f6f8fb;
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.app-sidebar {
    background: var(--blue-dark);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0.9rem;
}

.workspace-brand {
    align-items: center;
    color: var(--white);
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0 0.35rem;
}

.workspace-brand:hover {
    color: var(--white);
}

.workspace-brand span {
    align-items: center;
    background: var(--green);
    border-radius: 8px;
    display: inline-flex;
    font-weight: 900;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.workspace-brand strong {
    font-size: 1.1rem;
}

.app-sidebar nav {
    display: grid;
    gap: 0.35rem;
}

.app-sidebar nav a {
    align-items: center;
    border-radius: 8px;
    color: #d8e5ef;
    display: flex;
    font-weight: 800;
    gap: 0.75rem;
    min-height: 42px;
    padding: 0.7rem 0.8rem;
}

.app-sidebar nav a:hover,
.app-sidebar nav a.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.app-sidebar nav a.nav-locked {
    cursor: not-allowed;
    opacity: 0.58;
    position: relative;
}

.app-sidebar nav a.nav-locked:hover,
.app-sidebar nav a.nav-locked:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #d8e5ef;
}

.app-sidebar nav a.nav-locked::after {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #d9fff0;
    content: "Plan superior";
    font-size: 0.66rem;
    font-weight: 850;
    margin-left: auto;
    padding: 0.18rem 0.42rem;
}

.app-sidebar nav span {
    color: #a8f0d2;
    font-weight: 900;
    width: 1.2rem;
}

.sidebar-locked {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #d8e5ef;
    padding: 1rem;
}

.sidebar-locked strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.35rem;
}

.sidebar-locked p {
    font-size: 0.9rem;
    margin: 0;
}

.sidebar-logout {
    margin-top: auto;
    padding-top: 1rem;
}

.sidebar-logout button {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--white);
    display: flex;
    font-weight: 800;
    gap: 0.65rem;
    min-height: 42px;
    padding: 0.7rem 0.8rem;
    width: 100%;
}

.sidebar-logout button span {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    display: inline-flex;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.sidebar-logout button:hover,
.sidebar-logout button:focus {
    background: rgba(0, 99, 65, 0.95);
    color: var(--white);
    outline: none;
}

.workspace-main {
    min-width: 0;
}

.workspace-topbar {
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 76px;
    padding: 1rem 1.5rem;
}

.workspace-topbar h1 {
    color: var(--blue-dark);
    font-size: 1.45rem;
    font-weight: 900;
    margin: 0;
}

.workspace-topbar p {
    color: var(--muted);
    margin: 0.2rem 0 0;
}

.workspace-user {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    gap: 0.75rem;
    padding: 0.45rem 0.85rem 0.45rem 0.45rem;
}

.workspace-actions {
    align-items: center;
    display: flex;
    gap: 0.75rem;
}

.workspace-logout {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--blue-dark);
    font-weight: 800;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
}

.workspace-logout:hover,
.workspace-logout:focus {
    border-color: var(--green);
    color: var(--green);
}

.workspace-user > span {
    align-items: center;
    background: var(--green);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.workspace-user strong,
.workspace-user small {
    display: block;
}

.workspace-user small {
    color: var(--muted);
    font-size: 0.75rem;
}

.orientation-box,
.workspace-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 1.25rem 1.5rem;
    padding: 1.25rem;
}

.orientation-box {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.orientation-box strong {
    color: var(--blue-dark);
    font-size: 1.05rem;
}

.orientation-box p {
    color: var(--muted);
    margin: 0.35rem 0 0;
}

.fiscal-kpi-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.25rem 1.5rem;
}

.fiscal-kpi {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-height: 116px;
    padding: 1rem;
}

.fiscal-kpi span {
    color: var(--muted);
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.fiscal-kpi strong {
    color: var(--blue-dark);
    display: block;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.15;
}

.fiscal-kpi small {
    color: var(--muted);
    display: block;
    margin-top: 0.45rem;
}

.quick-actions-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, 1fr);
}

.quick-actions-grid a {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--blue-dark);
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
}

.quick-actions-grid a:hover,
.quick-actions-grid a:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.18rem rgba(0, 99, 65, 0.1);
    color: var(--blue-dark);
}

.quick-actions-grid strong {
    font-size: 0.98rem;
}

.quick-actions-grid span {
    color: var(--muted);
    font-size: 0.88rem;
}

.future-section[hidden] {
    display: none !important;
}

.cfdi-filter-tabs {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
}

.cfdi-filter-tabs a {
    border-radius: 6px;
    color: var(--blue-dark);
    font-weight: 800;
    padding: 0.55rem 0.85rem;
}

.cfdi-filter-tabs a:hover,
.cfdi-filter-tabs a:focus,
.cfdi-filter-tabs a.active {
    background: #eef7f3;
    color: var(--green);
}

.cfdi-kpi-grid {
    margin: 0 0 1rem;
}

.cfdi-filter-panel {
    align-items: end;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    margin-bottom: 1rem;
}

.cfdi-filter-panel label {
    color: var(--blue-dark);
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.cfdi-filter-panel input,
.cfdi-filter-panel select {
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    min-height: 42px;
    padding: 0.6rem 0.75rem;
    width: 100%;
}

.cfdi-blocker {
    margin: 1.25rem 1.5rem;
}

.cfdi-blocker .btn {
    margin-top: 0.9rem;
}

.cfdi-flow-shell {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 1.25rem 1.5rem;
    padding: 1.25rem;
}

.cfdi-main-tabs {
    background: #eef3f8;
    border-radius: 8px;
    display: inline-flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    padding: 0.3rem;
}

.cfdi-main-tabs button {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--blue-dark);
    cursor: pointer;
    font-weight: 900;
    padding: 0.65rem 0.9rem;
}

.cfdi-main-tabs button.active {
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--green);
}

.cfdi-tab-panel {
    display: none;
}

.cfdi-tab-panel.active {
    display: block;
}

.cfdi-step-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 1rem;
}

.cfdi-step {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.9rem;
}

.cfdi-step span {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    margin-bottom: 0.55rem;
    width: 28px;
}

.cfdi-step strong {
    color: var(--blue-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.cfdi-step p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

.cfdi-step.active {
    border-color: #72b7e5;
}

.cfdi-step.active span,
.cfdi-status.active {
    background: #e6f3fb;
    color: #0369a1;
}

.cfdi-step.pending span,
.cfdi-status.pending {
    background: #eef3f8;
    color: #475569;
}

.cfdi-step.processing span,
.cfdi-status.processing {
    background: #fff3d8;
    color: #b45309;
}

.cfdi-step.done span,
.cfdi-status.done,
.cfdi-step.done {
    background: #e6f4ef;
    color: var(--green);
}

.cfdi-step.error {
    border-color: #f2aaa4;
}

.cfdi-step.error span,
.cfdi-status.error {
    background: #fff1f0;
    color: #b42318;
}

.cfdi-request-panel {
    align-items: end;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(4, 1fr) auto;
    padding: 1rem;
}

.cfdi-request-panel label {
    color: var(--blue-dark);
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.cfdi-request-panel input {
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    min-height: 42px;
    padding: 0.6rem 0.75rem;
    width: 100%;
}

.cfdi-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cfdi-status {
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.35rem 0.7rem;
}

.sat-help-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, 1fr);
}

.sat-help-grid div {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
}

.sat-help-grid strong {
    color: var(--blue-dark);
    display: block;
    margin-bottom: 0.35rem;
}

.sat-help-grid p {
    color: var(--muted);
    margin: 0;
}

.donation-banner {
    align-items: center;
    background: #eef8ff;
    border: 1px solid #a8d8f0;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
}

.donation-banner strong {
    color: var(--blue-dark);
}

.donation-banner p {
    color: var(--muted);
    margin: 0.25rem 0 0;
}

.inline-delete-form {
    display: inline-flex;
    margin-left: 12px;
}

.inline-delete-form button {
    background: transparent;
    border: 0;
    color: #b91c1c;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0;
}

.cfdi-guide-panel {
    margin-bottom: 1rem;
}

.cfdi-step-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cfdi-step-grid.compact .cfdi-step {
    min-height: 120px;
}

.cfdi-process-detail {
    margin-top: 1rem;
}

.step-section {
    position: relative;
}

.step-section-primary {
    background: #f7fbf9;
    border-color: rgba(0, 120, 86, 0.28);
}

.step-badge {
    align-items: center;
    background: #e4f6ef;
    border: 1px solid rgba(0, 120, 86, 0.18);
    border-radius: 999px;
    color: #007856;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 850;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
    padding: 0.32rem 0.7rem;
}

.step-section-heading {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.step-section-heading h2 {
    color: var(--blue-dark);
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
}

.step-section-heading p {
    color: var(--muted);
    margin: 0;
}

.cfdi-viewer-panel {
    background: #ffffff;
}

.cfdi-viewer-panel .panel-header {
    align-items: flex-start;
}

.cfdi-viewer-filters {
    margin-top: 1rem;
}

.cfdi-viewer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.pricing-hero {
    background:
        radial-gradient(circle at top left, rgba(0, 120, 86, 0.12), transparent 32rem),
        linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
    border-bottom: 1px solid #d6e0ea;
    padding: 5rem 1.25rem 3rem;
}

.pricing-container {
    margin: 0 auto;
    max-width: 1180px;
}

.pricing-eyebrow,
.billing-kicker {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-hero h1 {
    color: var(--blue-dark);
    font-size: clamp(2.35rem, 6vw, 4.8rem);
    letter-spacing: 0;
    line-height: 1;
    margin: 0.8rem 0 1rem;
    max-width: 820px;
}

.pricing-hero p {
    color: #475569;
    font-size: 1.08rem;
    max-width: 680px;
}

.pricing-section {
    background: #f8fafc;
    padding: 2rem 1.25rem 5rem;
}

.pricing-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card,
.billing-plan-card,
.billing-status-card {
    background: #fff;
    border: 1px solid #d9e3ee;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    min-height: 520px;
    padding: 1.45rem;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pricing-card:hover,
.billing-plan-card:hover {
    border-color: rgba(0, 120, 86, 0.34);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    transform: translateY(-3px);
}

.pricing-card.is-popular {
    border-color: var(--green);
    transform: scale(1.025);
}

.pricing-card.is-current,
.billing-plan-card.is-current {
    background: #f7fbf9;
    border-color: rgba(0, 120, 86, 0.4);
}

.pricing-badge,
.pricing-current {
    align-self: flex-start;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 0.36rem 0.7rem;
}

.pricing-badge {
    background: #e4f6ef;
    color: #007856;
}

.pricing-current {
    background: #e8eef6;
    color: var(--blue-dark);
}

.pricing-card-head h2,
.billing-plan-card h3 {
    color: var(--blue-dark);
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
}

.pricing-card-head p {
    color: #64748b;
    margin: 0;
    min-height: 54px;
}

.pricing-price {
    align-items: baseline;
    display: flex;
    gap: 0.5rem;
}

.pricing-price span {
    color: var(--blue-dark);
    font-size: 2.4rem;
    font-weight: 900;
}

.pricing-price small {
    color: #64748b;
    font-weight: 700;
}

.pricing-price.compact span {
    font-size: 1.75rem;
}

.pricing-features {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.7rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    color: #334155;
    font-size: 0.94rem;
    padding-left: 1.35rem;
    position: relative;
}

.pricing-features li::before {
    color: var(--green);
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
}

.pricing-cta {
    align-items: center;
    background: var(--blue-dark);
    border: 0;
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 850;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1rem;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease;
    width: 100%;
}

.pricing-cta:hover,
.pricing-cta:focus {
    background: #007856;
    color: #fff;
    transform: translateY(-1px);
}

.pricing-cta.secondary {
    background: #e8eef6;
    color: var(--blue-dark);
}

.pricing-cta.is-disabled {
    background: #dbe4ee;
    color: #64748b;
    cursor: not-allowed;
    transform: none;
}

.billing-main {
    background: #f5f8fb;
}

.billing-alert {
    background: #eef8ff;
    border: 1px solid #b7dff4;
    border-radius: 16px;
    color: var(--blue-dark);
    font-weight: 750;
    margin: 1rem 1.5rem;
    padding: 1rem;
}

.billing-status-card {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 1.25rem 1.5rem;
    padding: 1.5rem;
}

.billing-status-card h2 {
    color: var(--blue-dark);
    font-size: 2rem;
    margin: 0.4rem 0;
}

.billing-status-card p {
    color: #64748b;
    margin: 0;
}

.billing-status-meta {
    background: #f8fafc;
    border: 1px solid #d9e3ee;
    border-radius: 18px;
    padding: 1rem;
    text-align: right;
}

.billing-status-meta span {
    color: #007856;
    display: block;
    font-weight: 900;
}

.billing-status-meta strong {
    color: var(--blue-dark);
}

.billing-plan-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.billing-plan-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
}

.billing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn.danger {
    border-color: #fecaca;
    color: #b91c1c;
}

@media (max-width: 1024px) {
    .pricing-grid,
    .billing-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card.is-popular {
        transform: none;
    }
}

@media (max-width: 640px) {
    .pricing-grid,
    .billing-plan-grid,
    .cfdi-step-grid.compact {
        grid-template-columns: 1fr;
    }

    .billing-status-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .billing-status-meta {
        text-align: left;
        width: 100%;
    }
}

.dashboard-sat-intro,
.efirma-panel,
.dashboard-help-section,
.legal-panel {
    background: #f8fbff;
    border: 1px solid #c8d6e5;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 1.25rem 1.5rem;
    padding: 1.5rem;
}

.dashboard-sat-header,
.dashboard-help-heading {
    text-align: center;
}

.dashboard-sat-header h2,
.dashboard-help-heading h2,
.efirma-title h2,
.legal-panel h2 {
    color: var(--blue-dark);
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0 0 0.45rem;
}

.dashboard-sat-header p,
.dashboard-help-heading p,
.efirma-title p {
    color: #0f172a;
    margin: 0;
}

.sat-process-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.6rem;
}

.sat-process-grid article {
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #c8d6e5;
    border-radius: 8px;
    display: flex;
    gap: 0.9rem;
    min-height: 118px;
    padding: 1rem;
}

.sat-process-grid span,
.efirma-title > span,
.file-drop span {
    align-items: center;
    background: #e6f3fb;
    border-radius: 8px;
    color: #0284c7;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.sat-process-grid strong {
    color: var(--blue-dark);
    display: block;
    font-size: 1rem;
    margin-bottom: 0.55rem;
}

.sat-process-grid p {
    color: #0f172a;
    margin: 0;
}

.sat-requirements {
    background: #fffbf3;
    border: 1px solid #f5c26b;
    border-radius: 8px;
    display: flex;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

.sat-warning-icon,
.help-item > span {
    align-items: center;
    background: #fff3d8;
    border-radius: 50%;
    color: #d97706;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    width: 22px;
}

.sat-requirements strong {
    color: var(--blue-dark);
    display: block;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.sat-requirements ul {
    display: grid;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sat-requirements li {
    color: #0f172a;
}

.sat-requirements li span {
    color: var(--green);
    font-weight: 900;
    margin-right: 0.45rem;
}

.sat-start-link {
    color: var(--blue-dark);
    display: table;
    font-weight: 800;
    margin: 1.35rem auto 0;
}

.efirma-title {
    align-items: center;
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.security-note {
    align-items: flex-start;
    background: #eef8ff;
    border: 1px solid #a8d8f0;
    border-radius: 8px;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
    padding: 1rem;
}

.security-note span {
    color: #0284c7;
    flex: 0 0 auto;
    font-weight: 900;
}

.security-note strong {
    color: var(--blue-dark);
    display: block;
    margin-bottom: 0.35rem;
}

.security-note p {
    margin: 0;
}

.sat-connection-status {
    border-radius: 8px;
    border: 1px solid;
    margin-bottom: 1.2rem;
    padding: 1rem;
}

.sat-connection-status strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.sat-connection-status p {
    margin: 0;
}

.sat-connection-status.is-disconnected {
    background: #fff1f0;
    border-color: #f2aaa4;
    color: #7a1d17;
}

.sat-connection-status.is-connected {
    background: #e6f4ef;
    border-color: #9fd4bd;
    color: #005c3d;
}

.sat-connection-status.status-attention {
    animation: loginShake 0.18s ease-in-out 2;
}

.efirma-form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.efirma-field.full {
    grid-column: 1 / -1;
}

.efirma-field > label:first-child {
    color: var(--blue-dark);
    display: block;
    font-weight: 900;
    margin-bottom: 0.55rem;
}

.efirma-field input[type="file"] {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.file-drop {
    align-items: center;
    background: #f8fafc;
    border: 2px dashed #bfd0e3;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 0.8rem;
    min-height: 78px;
    padding: 1rem;
}

.file-drop:hover,
.file-drop:focus {
    border-color: #0284c7;
}

.file-drop strong,
.file-drop small {
    display: block;
}

.file-drop small {
    color: var(--muted);
}

.efirma-field input[type="password"] {
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    min-height: 44px;
    padding: 0.72rem 0.85rem;
    width: 100%;
}

.efirma-form-grid .btn {
    min-height: 44px;
}

.dashboard-help-section {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 1.25rem 0;
}

.dashboard-help-heading {
    border-top: 1px solid #c8d6e5;
    margin: 0 1.5rem;
    padding-top: 2rem;
}

.help-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
    margin: 1.5rem 1.5rem 0;
}

.help-card {
    background: #f8fbff;
    border: 1px solid #c8d6e5;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1.4rem;
}

.help-card h3 {
    color: var(--blue-dark);
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 0 1.2rem;
}

.help-step,
.help-item {
    align-items: flex-start;
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.05rem;
}

.help-step:last-child,
.help-item:last-child {
    margin-bottom: 0;
}

.help-step > span {
    align-items: center;
    background: #e1f1fa;
    border-radius: 50%;
    color: #0284c7;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.help-step strong,
.help-item strong {
    color: var(--blue-dark);
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.help-step p,
.help-item p {
    color: #0f172a;
    margin: 0;
}

.legal-panel {
    background: #f8fbff;
}

.legal-panel h2 {
    margin-bottom: 1rem;
}

.legal-panel p {
    color: #0f172a;
    margin: 0 0 0.9rem;
}

.legal-panel p:last-child {
    margin-bottom: 0;
}

.legal-panel span {
    color: #0284c7;
    display: inline-block;
    font-weight: 900;
    margin-right: 0.55rem;
}

.panel-header {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.panel-header h2 {
    color: var(--blue-dark);
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0;
}

.panel-header p {
    color: var(--muted);
    margin: 0.35rem 0 0;
}

.panel-header a {
    color: var(--blue);
    font-weight: 800;
}

.fiscal-table {
    border-collapse: collapse;
    font-size: 0.9rem;
    width: 100%;
}

.fiscal-table th {
    background: #eef3f8;
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.75rem;
    text-transform: uppercase;
}

.fiscal-table td {
    border-top: 1px solid var(--line);
    color: #334155;
    padding: 0.75rem;
}

.status-pill {
    background: #eef3f8;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.25rem 0.55rem;
}

.profile-panel {
    max-width: 980px;
}

.profile-form {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-form label {
    color: var(--blue-dark);
    display: block;
    font-size: 0.84rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.profile-form input,
.profile-form select {
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    width: 100%;
}

.profile-form input:focus,
.profile-form select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(0, 99, 65, 0.12);
    outline: none;
}

.profile-actions {
    align-self: end;
}

@media (max-width: 991.98px) {
    .home-hero-grid,
    .split-grid,
    .auth-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .audience-grid.compact,
    .value-strip .container {
        grid-template-columns: 1fr;
    }

    .final-cta-card,
    .site-footer .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-panel-card,
    .app-workspace {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        position: static;
    }

    .fiscal-kpi-grid,
    .cfdi-filter-panel,
    .cfdi-request-panel,
    .cfdi-step-grid,
    .quick-actions-grid,
    .sat-help-grid,
    .sat-process-grid,
    .help-grid,
    .profile-form {
        grid-template-columns: 1fr;
    }

    .orientation-box,
    .donation-banner,
    .workspace-topbar,
    .sat-requirements,
    .efirma-title,
    .security-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .efirma-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        padding: 3.25rem 0;
    }

    .home-hero h1,
    .auth-section h1 {
        font-size: 2.2rem;
    }

    .hero-actions,
    .hero-actions .btn,
    .final-cta-card .btn {
        width: 100%;
    }

    .preview-metrics {
        grid-template-columns: 1fr;
    }
}
