:root {
    --public-bg: #060816;
    --public-bg-soft: #0c1330;
    --public-surface: rgba(11, 18, 43, 0.78);
    --public-surface-strong: rgba(15, 23, 55, 0.92);
    --public-line: rgba(148, 163, 184, 0.18);
    --public-copy: #cbd5f5;
    --public-heading: #f8faff;
    --public-primary: #5b7cff;
    --public-primary-strong: #4a62f5;
    --public-secondary: #865dff;
    --public-accent: #8be9ff;
    --public-success: #22c55e;
    --public-warning: #f59e0b;
    --public-shadow: 0 28px 80px rgba(3, 7, 18, 0.42);
}

html {
    scroll-behavior: smooth;
}

body.public-shell {
    position: relative;
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(91, 124, 255, 0.28), transparent 32%),
        radial-gradient(circle at top right, rgba(134, 93, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #050712 0%, #0a1129 45%, #050712 100%);
    color: var(--public-copy);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body.public-shell::before,
body.public-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: -1;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.22;
}

body.public-shell::before {
    top: 6rem;
    right: -6rem;
    background: #5b7cff;
}

body.public-shell::after {
    bottom: 8rem;
    left: -8rem;
    background: #865dff;
}

.public-main {
    display: block;
}

.public-shell h1,
.public-shell h2,
.public-shell h3,
.public-shell h4 {
    color: var(--public-heading);
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
}

.public-shell a {
    color: inherit;
}

.public-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.9rem 1.3rem;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.public-btn:hover {
    transform: translateY(-1px);
}

.public-btn-primary {
    background: linear-gradient(135deg, var(--public-primary), var(--public-secondary));
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(91, 124, 255, 0.28);
}

.public-btn-primary:hover,
.public-btn-primary:focus {
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(91, 124, 255, 0.32);
}

.public-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f8faff;
}

.public-btn-secondary:hover,
.public-btn-secondary:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.public-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.14);
    color: #f8faff;
}

.public-btn-ghost:hover,
.public-btn-ghost:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.public-navbar {
    position: sticky;
    top: 1rem;
    z-index: 1040;
    margin: 1rem auto 0;
    width: min(1180px, calc(100% - 1.5rem));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(5, 10, 24, 0.62);
    backdrop-filter: blur(22px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.public-navbar.is-scrolled {
    background: rgba(5, 10, 24, 0.88);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 45px rgba(2, 6, 23, 0.32);
}

.public-navbar .container {
    max-width: none;
    padding: 0.55rem 1rem;
}

.public-navbar-brand,
.public-navbar-brand:hover {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    color: #ffffff;
    text-decoration: none;
}

.public-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--public-primary), var(--public-secondary));
    box-shadow: 0 14px 30px rgba(91, 124, 255, 0.32);
}

.public-navbar-brand strong {
    display: block;
    font-size: 1rem;
}

.public-navbar-brand small {
    display: block;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.public-navbar-links .nav-link {
    color: rgba(226, 232, 240, 0.82);
    font-weight: 600;
    padding-inline: 1rem !important;
}

.public-navbar-links .nav-link:hover,
.public-navbar-links .nav-link.active {
    color: #ffffff;
}

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

.public-navbar-toggler {
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-section,
.pricing-hero-section {
    padding: 6rem 0 2.5rem;
}

.hero-kicker,
.section-kicker,
.status-kicker,
.billing-state-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #dbeafe;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    margin-top: 1.3rem;
    margin-bottom: 1.1rem;
    font-size: clamp(2.6rem, 6vw, 4.7rem);
    line-height: 0.95;
}

.hero-copy,
.pricing-hero-card p,
.section-heading p,
.status-card p,
.auth-story-card p,
.auth-form-card p,
.trust-card p,
.billing-state-banner p {
    color: rgba(226, 232, 240, 0.78);
    font-size: 1.02rem;
    line-height: 1.8;
}

.hero-actions,
.status-actions,
.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-preview-card,
.pricing-hero-card,
.billing-state-banner,
.billing-code-card,
.cta-banner,
.status-card,
.auth-story-card,
.auth-form-card,
.trust-card,
.pricing-card,
.pricing-preview-card,
.marketing-mockup,
.metric-strip-card {
    border: 1px solid var(--public-line);
    background: linear-gradient(180deg, rgba(14, 22, 52, 0.92), rgba(7, 12, 28, 0.9));
    box-shadow: var(--public-shadow);
}

.hero-preview-card,
.pricing-hero-card,
.cta-banner,
.status-card,
.auth-story-card,
.auth-form-card,
.billing-state-banner,
.billing-code-card {
    border-radius: 32px;
}

.hero-preview-card {
    padding: 1.25rem;
}

.hero-preview-topbar {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.hero-preview-topbar span,
.marketing-mockup-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.hero-preview-body {
    display: grid;
    gap: 1rem;
}

.hero-preview-panel {
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-preview-panel small {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--public-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.hero-preview-panel strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}

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

.hero-preview-stat,
.metric-strip-card {
    padding: 1.15rem;
    border-radius: 22px;
}

.hero-preview-stat strong,
.metric-strip-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 0.45rem;
}

.hero-preview-stat span,
.metric-strip-card span {
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-metrics-strip {
    padding-bottom: 2rem;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-heading h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.marketing-section,
.pricing-grid-section,
.pricing-preview-section,
.pricing-trust-section,
.cta-banner-section,
.auth-section,
.status-section {
    padding: 2rem 0 5rem;
}

.marketing-module-list {
    display: grid;
    gap: 2rem;
}

.marketing-module {
    padding: 1rem 0;
}

.marketing-copy h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.marketing-summary {
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.85;
}

.marketing-solution {
    margin-bottom: 1.4rem;
}

.marketing-tags,
.status-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.marketing-tags span,
.status-benefits span {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #dbeafe;
    font-weight: 600;
}

.marketing-mockup {
    border-radius: 28px;
    padding: 1.25rem;
}

.marketing-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.marketing-mockup-header strong {
    margin-left: 0.35rem;
}

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

.marketing-metric-card {
    padding: 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
}

.marketing-metric-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.55rem;
    margin-bottom: 0.4rem;
}

.marketing-metric-card span {
    color: rgba(226, 232, 240, 0.76);
}

.marketing-metric-card-wide {
    grid-column: span 2;
}

.pricing-preview-card,
.pricing-card {
    position: relative;
    height: 100%;
    border-radius: 30px;
    padding: 1.75rem;
}

.pricing-preview-card-featured,
.pricing-card-featured {
    border-color: rgba(139, 233, 255, 0.35);
    box-shadow: 0 28px 80px rgba(91, 124, 255, 0.26);
}

.pricing-card-current {
    border-color: rgba(34, 197, 94, 0.42);
}

.pricing-card-selected {
    transform: translateY(-2px);
    box-shadow: 0 32px 80px rgba(134, 93, 255, 0.28);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(139, 233, 255, 0.12);
    color: #d9f9ff;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-badge-muted {
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card-top h3,
.pricing-preview-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
}

.pricing-card-top p,
.pricing-preview-card p,
.pricing-meta {
    color: rgba(226, 232, 240, 0.78);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    margin: 1.35rem 0 1rem;
}

.pricing-amount strong {
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1;
}

.pricing-amount span {
    color: rgba(226, 232, 240, 0.72);
}

.pricing-summary {
    min-height: 4.5rem;
}

.pricing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.pricing-meta span {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

.pricing-highlight-list,
.auth-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-highlight-list li,
.auth-benefit-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.8rem;
    color: rgba(226, 232, 240, 0.84);
}

.pricing-highlight-list li::before,
.auth-benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--public-accent), var(--public-primary));
}

.pricing-login-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.9rem;
    color: #dbeafe;
    text-decoration: none;
    font-weight: 600;
}

.pricing-login-link:hover {
    color: #ffffff;
}

.pricing-hero-card,
.billing-state-banner,
.billing-code-card {
    padding: 2rem;
}

.billing-alert {
    border-radius: 20px;
    margin-bottom: 0;
}

.billing-state-banner,
.billing-code-card {
    margin-bottom: 1.5rem;
}

.billing-state-banner h2,
.billing-code-card h3 {
    margin-top: 0.95rem;
    margin-bottom: 0.65rem;
}

.public-form-control {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 0.9rem 1rem;
}

.public-form-control:focus {
    border-color: rgba(139, 233, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: 0 0 0 0.18rem rgba(91, 124, 255, 0.16);
}

.public-form-control::placeholder {
    color: rgba(226, 232, 240, 0.45);
}

.public-check .form-check-input {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.public-check .form-check-label,
.form-label {
    color: #e2e8f0;
}

.auth-story-card,
.auth-form-card {
    padding: 2.1rem;
}

.auth-story-card h1,
.auth-form-card h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.auth-plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(91, 124, 255, 0.12);
    border: 1px solid rgba(139, 233, 255, 0.18);
    color: #dbeafe;
    margin-bottom: 1.4rem;
}

.auth-validation {
    margin-bottom: 1rem;
}

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

.auth-links-row a {
    color: #dbeafe;
    text-decoration: none;
    font-weight: 600;
}

.auth-links-row a:hover {
    color: #ffffff;
}

.contract-consent-card,
.contract-document-card {
    border-radius: 28px;
    border: 1px solid var(--public-line);
    background: linear-gradient(180deg, rgba(15, 23, 55, 0.94), rgba(7, 12, 28, 0.92));
    box-shadow: var(--public-shadow);
}

.contract-consent-card {
    padding: 1.35rem;
}

.contract-consent-card-warning {
    border-color: rgba(245, 158, 11, 0.28);
}

.contract-consent-card-block {
    margin-top: 1.5rem;
}

.contract-consent-copy h3 {
    margin-top: 0.85rem;
    margin-bottom: 0.65rem;
}

.contract-consent-copy p,
.contract-consent-links span,
.contract-document-meta span,
.contract-empty-state p {
    color: rgba(226, 232, 240, 0.78);
}

.contract-check {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.contract-check .form-check-input {
    margin-top: 0.25rem;
    width: 1.15rem;
    height: 1.15rem;
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.26);
}

.contract-check .form-check-label {
    color: #f8faff;
    line-height: 1.6;
}

.contract-consent-links,
.contract-consent-meta,
.contract-document-meta,
.contract-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
    align-items: center;
}

.contract-consent-links,
.contract-consent-meta {
    margin-top: 1rem;
}

.contract-consent-links a {
    color: #d9f9ff;
    font-weight: 700;
    text-decoration: none;
}

.contract-consent-links a:hover {
    color: #ffffff;
}

.contract-page-section {
    padding: 2rem 0 5rem;
}

.contract-page-actions {
    justify-content: center;
    margin-top: 1.5rem;
}

.contract-secondary-form {
    display: flex;
    justify-content: center;
    margin-top: 0.9rem;
}

.contract-document-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem;
}

.contract-document-header h1 {
    margin-top: 1rem;
    margin-bottom: 0.85rem;
}

.contract-html {
    margin-top: 1.5rem;
    color: rgba(226, 232, 240, 0.88);
    line-height: 1.85;
}

.contract-html .contract-section + .contract-section {
    margin-top: 1.8rem;
}

.contract-html h2 {
    margin-bottom: 0.85rem;
    font-size: 1.45rem;
}

.contract-html p {
    margin-bottom: 0.95rem;
}

.contract-empty-state {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.contract-reaccept-layout {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.contract-reaccept-main .contract-document-card {
    max-width: none;
    margin: 0;
}

.privacy-page-section {
    padding: 2rem 0 5rem;
}

.privacy-intro-card,
.privacy-summary-card,
.privacy-section-card,
.privacy-contact-card {
    border: 1px solid var(--public-line);
    background: linear-gradient(180deg, rgba(15, 23, 55, 0.94), rgba(7, 12, 28, 0.92));
    box-shadow: var(--public-shadow);
}

.privacy-intro-card,
.privacy-contact-card {
    border-radius: 32px;
    padding: 2.15rem;
}

.privacy-intro-card h1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.privacy-intro-card p,
.privacy-summary-card p,
.privacy-section-card p,
.privacy-section-card li,
.privacy-contact-card p {
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.8;
}

.privacy-link {
    color: #d9f9ff;
    font-weight: 700;
    text-decoration: none;
}

.privacy-link:hover {
    color: #ffffff;
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.privacy-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dbeafe;
}

.privacy-summary-grid,
.privacy-grid {
    display: grid;
    gap: 1.25rem;
}

.privacy-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.privacy-summary-card,
.privacy-section-card {
    height: 100%;
    border-radius: 28px;
    padding: 1.5rem;
}

.privacy-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: rgba(139, 233, 255, 0.12);
    border: 1px solid rgba(139, 233, 255, 0.16);
    color: #d9f9ff;
    font-weight: 800;
}

.privacy-summary-card h2,
.privacy-section-card h3,
.privacy-contact-card h2 {
    margin-top: 1rem;
    margin-bottom: 0.85rem;
}

.privacy-section-card h3 {
    font-size: 1.35rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0.95rem 0 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.55rem;
    margin-bottom: 0.75rem;
}

.privacy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--public-accent), var(--public-primary));
}

.privacy-note {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(91, 124, 255, 0.1);
    border: 1px solid rgba(139, 233, 255, 0.16);
}

.privacy-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.billing-metric-list {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: rgba(226, 232, 240, 0.82);
}

.billing-whatsapp-settings {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.billing-toggle-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: 100%;
    min-height: 100%;
    padding: 1.15rem 1.25rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.billing-toggle-panel h4 {
    margin: 0 0 0.35rem;
    color: #ffffff;
    font-size: 1.05rem;
}

.billing-toggle-panel p,
.billing-inline-note {
    margin: 0;
    color: rgba(226, 232, 240, 0.74);
    line-height: 1.7;
}

.billing-toggle-panel .form-check-input {
    width: 3rem;
    height: 1.65rem;
    margin: 0;
    float: none;
}

.trust-card {
    height: 100%;
    border-radius: 28px;
    padding: 1.7rem;
}

.trust-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: rgba(91, 124, 255, 0.16);
    color: var(--public-accent);
    font-size: 1.3rem;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.2rem;
}

.status-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.4rem;
    text-align: center;
}

.status-card-warning {
    border-color: rgba(245, 158, 11, 0.26);
}

.status-card h1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.status-benefits {
    justify-content: center;
    margin-top: 1.5rem;
}

.public-footer {
    padding: 4rem 0 2.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.public-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem 1.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 12, 28, 0.76);
    backdrop-filter: blur(16px);
}

.public-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.08rem;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.public-footer-brand .public-brand-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    font-size: 0.88rem;
    box-shadow: none;
    flex-shrink: 0;
}

.public-footer-copy {
    max-width: 32rem;
    margin: 0.75rem 0 0;
    color: rgba(226, 232, 240, 0.68);
}

.public-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.public-footer-links a {
    color: #dbeafe;
    text-decoration: none;
}

.public-footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .public-navbar {
        width: calc(100% - 1rem);
        top: 0.5rem;
    }

    .public-navbar .container {
        padding-inline: 0.75rem;
    }

    .public-navbar-actions {
        flex-direction: column;
        align-items: stretch;
        padding-top: 1rem;
    }

    .hero-section,
    .pricing-hero-section {
        padding-top: 5.25rem;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-links-row {
        flex-direction: column;
    }

    .contract-reaccept-layout {
        grid-template-columns: 1fr;
    }

    .privacy-summary-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .privacy-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─── Auth input with icon ────────────────────────────────────────── */
.auth-input-wrap {
    position: relative;
}

.auth-input-wrap .auth-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(148, 163, 184, 0.55);
    font-size: 0.97rem;
    pointer-events: none;
    z-index: 4;
}

.auth-input-wrap .public-form-control {
    padding-left: 2.85rem;
}

.auth-input-wrap .public-form-control.has-pw-toggle {
    padding-right: 3.1rem;
}

.auth-pw-toggle {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(148, 163, 184, 0.55);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    z-index: 4;
    transition: color 0.2s;
}

.auth-pw-toggle:hover {
    color: rgba(226, 232, 240, 0.9);
}

/* ─── Auth feature items (icon + title + description) ─────────────── */
.auth-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.auth-feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    background: rgba(91, 124, 255, 0.14);
    border: 1px solid rgba(91, 124, 255, 0.22);
    color: #8be9ff;
    font-size: 1.1rem;
}

.auth-feature-copy strong {
    display: block;
    color: #f8faff;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 0.97rem;
}

.auth-feature-copy span {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ─── Auth submit arrow & back link ──────────────────────────────── */
.auth-submit-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-submit-arrow i {
    transition: transform 0.2s;
}

.public-btn:hover .auth-submit-arrow i {
    transform: translateX(3px);
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    color: #dbeafe;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.auth-back-link:hover {
    color: #ffffff;
}

/* ─── Single centered link (registration bottom) ─────────────────── */
.auth-center-link {
    text-align: center;
    margin-top: 1rem;
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.93rem;
}

.auth-center-link a {
    color: #dbeafe;
    font-weight: 700;
    text-decoration: none;
}

.auth-center-link a:hover {
    color: #ffffff;
}

/* ─── Contract card header row ───────────────────────────────────── */
.contract-consent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.contract-view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #d9f9ff;
    font-weight: 700;
    font-size: 0.83rem;
    text-decoration: none;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    background: rgba(91, 124, 255, 0.1);
    border: 1px solid rgba(91, 124, 255, 0.2);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.contract-view-link:hover {
    background: rgba(91, 124, 255, 0.2);
    color: #ffffff;
}

.contract-consent-desc {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ─── Forgot password two-column layout ──────────────────────────── */
.forgot-shell {
    max-width: 1040px;
}

.forgot-card {
    display: flex;
    border-radius: 32px;
    border: 1px solid var(--public-line);
    background: linear-gradient(180deg, rgba(14, 22, 52, 0.92), rgba(7, 12, 28, 0.9));
    box-shadow: var(--public-shadow);
    overflow: hidden;
}

.forgot-form-panel {
    flex: 1;
    padding: 2.5rem;
}

.forgot-form-panel h2 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.forgot-form-panel p {
    color: rgba(226, 232, 240, 0.78);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.forgot-security-panel {
    width: 340px;
    flex-shrink: 0;
    padding: 2.5rem 2rem;
    border-left: 1px solid var(--public-line);
    background: rgba(91, 124, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.forgot-security-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 28px;
    background: rgba(91, 124, 255, 0.12);
    border: 1px solid rgba(91, 124, 255, 0.24);
    color: #8be9ff;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.forgot-security-title {
    color: #f8faff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.forgot-security-items {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.forgot-security-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.forgot-security-item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    background: rgba(91, 124, 255, 0.12);
    border: 1px solid rgba(91, 124, 255, 0.2);
    color: #8be9ff;
    font-size: 0.9rem;
}

.forgot-security-item strong {
    display: block;
    color: #f8faff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.forgot-security-item span {
    color: rgba(226, 232, 240, 0.65);
    font-size: 0.86rem;
    line-height: 1.55;
}

/* ─── Footer social icons & copyright ───────────────────────────── */
.public-footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.public-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(226, 232, 240, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.public-footer-social-link:hover {
    background: rgba(91, 124, 255, 0.18);
    border-color: rgba(91, 124, 255, 0.28);
    color: #ffffff;
}

.public-footer-copyright {
    color: rgba(226, 232, 240, 0.38);
    font-size: 0.82rem;
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.65rem;
    }

    .hero-preview-grid,
    .marketing-mockup-grid {
        grid-template-columns: 1fr;
    }

    .marketing-metric-card-wide {
        grid-column: auto;
    }

    .pricing-amount strong {
        font-size: 2rem;
    }

    .status-card,
    .auth-story-card,
    .auth-form-card,
    .pricing-hero-card,
    .billing-state-banner,
    .billing-code-card,
    .cta-banner,
    .contract-document-card,
    .contract-consent-card,
    .privacy-intro-card,
    .privacy-contact-card,
    .privacy-summary-card,
    .privacy-section-card {
        padding: 1.5rem;
    }

    .public-footer-inner {
        padding: 1.4rem;
    }

    .forgot-card {
        flex-direction: column;
    }

    .forgot-security-panel {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--public-line);
    }

    .forgot-form-panel,
    .forgot-security-panel {
        padding: 1.5rem;
    }
}

/* ─── Footer grid (multi-columna) ────────────────────────────────── */
.public-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 2.5rem 3rem;
    align-items: start;
}

.public-footer-col-title {
    margin: 0 0 1.1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.4);
}

.public-footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.public-footer-col-list a {
    color: rgba(226, 232, 240, 0.68);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.public-footer-col-list a:hover {
    color: #ffffff;
}

.public-footer-col-list span {
    color: rgba(226, 232, 240, 0.52);
    font-size: 0.88rem;
    line-height: 1.5;
}

.public-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.public-footer-tagline {
    margin: 0;
    color: rgba(226, 232, 240, 0.3);
    font-size: 0.8rem;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .public-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .public-footer-col-brand {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .public-footer-grid {
        grid-template-columns: 1fr;
    }

    .public-footer-col-brand {
        grid-column: span 1;
    }

    .public-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   LANDING PAGE — HERO NUEVO
   ═══════════════════════════════════════════════════════════════════ */

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
    margin-top: 1.5rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(226, 232, 240, 0.65);
    font-size: 0.86rem;
    font-weight: 500;
}

.hero-trust i {
    color: var(--public-accent);
    font-size: 0.95rem;
}

/* — Resumen ejecutivo card — */
.hero-exec-card {
    border: 1px solid var(--public-line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(14, 22, 52, 0.96), rgba(7, 12, 28, 0.94));
    box-shadow: var(--public-shadow);
    padding: 1.4rem;
}

.hero-exec-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-exec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 10px;
    background: rgba(91, 124, 255, 0.18);
    border: 1px solid rgba(91, 124, 255, 0.28);
    color: var(--public-accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.hero-exec-label {
    flex: 1;
    color: var(--public-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-exec-today {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.78rem;
    font-weight: 600;
}

.hero-exec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.hero-exec-stat {
    padding: 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-exec-stat-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.55rem;
    color: rgba(226, 232, 240, 0.6);
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-exec-stat-value {
    display: block;
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.hero-exec-stat-value-accent { color: var(--public-accent); }
.hero-exec-stat-value-green  { color: #4ade80; }

.hero-exec-stat-sub {
    display: block;
    color: rgba(226, 232, 240, 0.58);
    font-size: 0.78rem;
    margin-bottom: 0.55rem;
}

.hero-exec-stat-badge-pos {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.22);
    color: #4ade80;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.hero-exec-progress {
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 0.3rem;
    overflow: hidden;
}

.hero-exec-progress-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--public-primary), var(--public-secondary));
}

.hero-exec-progress-bar-green {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.hero-exec-stat-note {
    display: block;
    color: rgba(226, 232, 240, 0.46);
    font-size: 0.72rem;
}

.hero-exec-sparkline {
    display: block;
    width: 100%;
    height: 1.75rem;
    margin-top: 0.4rem;
}

.hero-exec-avatars {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.45rem;
}

.hero-exec-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--public-primary), var(--public-secondary));
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 800;
    border: 1.5px solid rgba(5, 10, 28, 0.7);
    letter-spacing: 0;
}

.hero-exec-avatar-more {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.62rem;
}

/* ═══════════════════════════════════════════════════════════════════
   PROPUESTA DE VALOR (3 cards)
   ═══════════════════════════════════════════════════════════════════ */

.value-cards-section {
    padding: 1rem 0 3.5rem;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.value-card {
    padding: 1.65rem;
    border: 1px solid var(--public-line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(14, 22, 52, 0.92), rgba(7, 12, 28, 0.9));
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 124, 255, 0.28);
}

.value-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 13px;
    background: rgba(91, 124, 255, 0.14);
    border: 1px solid rgba(91, 124, 255, 0.24);
    color: var(--public-accent);
    font-size: 1.1rem;
    margin-bottom: 0.95rem;
}

.value-card h3 {
    font-size: 1rem;
    margin: 0 0 0.55rem;
    line-height: 1.4;
}

.value-card p {
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   MÓDULOS (grid 2 columnas con mockups internos)
   ═══════════════════════════════════════════════════════════════════ */

.landing-modules-section {
    padding: 2rem 0 5rem;
}

.landing-modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.landing-module-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--public-line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(14, 22, 52, 0.92), rgba(7, 12, 28, 0.9));
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.landing-module-card:hover {
    border-color: rgba(91, 124, 255, 0.28);
}

.landing-module-mockup {
    padding: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.landing-module-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}

.landing-module-body h3 {
    font-size: 0.97rem;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.landing-module-body p {
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.84rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
    flex: 1;
}

.landing-module-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.landing-module-bullets li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.8rem;
    line-height: 1.5;
}

.landing-module-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--public-accent), var(--public-primary));
}

/* — Agenda mockup — */
.lm-agenda {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lm-agenda-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.lm-time {
    color: rgba(226, 232, 240, 0.4);
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 2.2rem;
    flex-shrink: 0;
}

.lm-apt {
    flex: 1;
    padding: 0.4rem 0.55rem;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    min-height: 1.75rem;
}

.lm-apt span:first-child {
    flex: 1;
    font-size: 0.68rem;
    font-weight: 600;
    color: #f8faff;
}

.lm-client {
    color: rgba(226, 232, 240, 0.52) !important;
    font-size: 0.62rem !important;
    font-weight: 400 !important;
}

.lm-apt-blue   { background: rgba(91, 124, 255, 0.18); border: 1px solid rgba(91, 124, 255, 0.28); }
.lm-apt-violet { background: rgba(134, 93, 255, 0.18); border: 1px solid rgba(134, 93, 255, 0.28); }
.lm-apt-empty  { background: rgba(255,255,255,.03); border: 1px dashed rgba(255,255,255,.1); }

/* — Cliente profile — */
.lm-profile { font-size: 0.78rem; }

.lm-profile-label {
    color: rgba(226, 232, 240, 0.42);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.6rem;
}

.lm-profile-info {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
}

.lm-profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--public-primary), var(--public-secondary));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lm-profile-info strong { display: block; color: #f8faff; font-size: 0.78rem; }
.lm-profile-info span   { color: rgba(226, 232, 240, 0.5); font-size: 0.67rem; }

.lm-profile-stats {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(255,255,255,.06);
}

.lm-profile-stats div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.lm-profile-stats span  { color: rgba(226, 232, 240, 0.48); font-size: 0.68rem; }
.lm-profile-stats strong { color: #f8faff; font-size: 0.74rem; font-weight: 700; }

/* — Team mockup — */
.lm-team { display: flex; flex-direction: column; gap: 0.5rem; }

.lm-team-label {
    color: rgba(226, 232, 240, 0.42);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.1rem;
}

.lm-team-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 9px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

.lm-team-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--public-primary), var(--public-secondary));
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lm-team-info { flex: 1; min-width: 0; }
.lm-team-info strong {
    display: block;
    color: #f8faff;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lm-team-info span { color: rgba(226, 232, 240, 0.48); font-size: 0.62rem; }
.lm-team-pct { color: #4ade80; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }

/* — Finance mockup — */
.lm-finance { display: flex; flex-direction: column; gap: 0.45rem; }

.lm-finance-label {
    color: rgba(226, 232, 240, 0.42);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.1rem;
}

.lm-finance-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.42rem 0.6rem;
    border-radius: 9px;
}

.lm-finance-row span   { font-size: 0.68rem; color: rgba(226, 232, 240, 0.62); }
.lm-finance-row strong { font-size: 0.82rem; font-weight: 700; }

.lm-finance-income  { background: rgba(74,222,128,.07); border: 1px solid rgba(74,222,128,.14); }
.lm-finance-income strong  { color: #4ade80; }
.lm-finance-expense { background: rgba(251,113,133,.07); border: 1px solid rgba(251,113,133,.14); }
.lm-finance-expense strong { color: #fb7185; }
.lm-finance-result  { background: rgba(91,124,255,.1);  border: 1px solid rgba(91,124,255,.2); }
.lm-finance-result strong  { color: var(--public-accent); }
.lm-finance-divider { height: 1px; background: rgba(255,255,255,.07); margin: 0.1rem 0; }

/* — Inventory mockup — */
.lm-inventory { display: flex; flex-direction: column; gap: 0.45rem; }

.lm-inventory-label {
    color: rgba(226, 232, 240, 0.42);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.1rem;
}

.lm-inventory-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.5rem;
    border-radius: 9px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

.lm-inv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 7px;
    background: rgba(91, 124, 255, 0.14);
    color: var(--public-accent);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.lm-inv-info { flex: 1; min-width: 0; }
.lm-inv-info span  { display: block; color: #f8faff; font-size: 0.68rem; font-weight: 600; }
.lm-inv-info small { color: rgba(226, 232, 240, 0.48); font-size: 0.6rem; }

.lm-inv-badge { padding: 0.15rem 0.45rem; border-radius: 999px; font-size: 0.6rem; font-weight: 700; white-space: nowrap; }
.lm-inv-critical { background: rgba(251,113,133,.12); border: 1px solid rgba(251,113,133,.22); color: #fb7185; }
.lm-inv-ok       { background: rgba(74,222,128,.12);  border: 1px solid rgba(74,222,128,.22);  color: #4ade80; }

/* — Indicators mockup — */
.lm-indicators { display: flex; flex-direction: column; gap: 0.45rem; }

.lm-indicators-label {
    color: rgba(226, 232, 240, 0.42);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.1rem;
}

.lm-ind-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.lm-ind-row:last-child { border-bottom: none; }
.lm-ind-row span   { color: rgba(226, 232, 240, 0.58); font-size: 0.68rem; }
.lm-ind-row strong { color: #f8faff; font-size: 0.82rem; font-weight: 700; }
.lm-ind-green { color: #4ade80 !important; }

.lm-ind-chart { margin: 0.2rem 0; }
.lm-ind-chart svg { display: block; width: 100%; height: 1.6rem; }

/* ═══════════════════════════════════════════════════════════════════
   BENEFICIOS (4 cards en fila)
   ═══════════════════════════════════════════════════════════════════ */

.benefits-section {
    padding: 2rem 0 5rem;
}

.benefits-section .section-heading {
    margin-bottom: 2rem;
}

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

.benefit-card {
    padding: 1.65rem;
    border: 1px solid var(--public-line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(14, 22, 52, 0.92), rgba(7, 12, 28, 0.9));
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 124, 255, 0.28);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 13px;
    background: rgba(91, 124, 255, 0.14);
    border: 1px solid rgba(91, 124, 255, 0.24);
    color: var(--public-accent);
    font-size: 1.1rem;
    margin-bottom: 0.95rem;
}

.benefit-card h3 {
    font-size: 0.97rem;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.benefit-card p {
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA BANNER NUEVO
   ═══════════════════════════════════════════════════════════════════ */

.cta-banner-new {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.4rem 2.75rem;
    border: 1px solid rgba(91, 124, 255, 0.3);
    border-radius: 32px;
    background: linear-gradient(135deg,
        rgba(23, 33, 74, 0.94),
        rgba(91, 124, 255, 0.14),
        rgba(134, 93, 255, 0.10));
    box-shadow: 0 28px 80px rgba(91, 124, 255, 0.14);
}

.cta-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--public-primary), var(--public-secondary));
    box-shadow: 0 14px 32px rgba(91, 124, 255, 0.32);
    color: #ffffff;
    font-size: 1.65rem;
    flex-shrink: 0;
}

.cta-banner-content {
    flex: 1;
    min-width: 0;
}

.cta-banner-content h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    margin: 0 0 0.45rem;
}

.cta-banner-content p {
    color: rgba(226, 232, 240, 0.72);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-banner-actions-inline {
    flex-shrink: 0;
    margin-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — LANDING
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1199.98px) {
    .hero-exec-stat-value { font-size: 1.35rem; }
    .landing-module-body h3 { font-size: 0.9rem; }
}

@media (max-width: 991.98px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-exec-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-modules-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner-new {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
    }

    .cta-banner-actions-inline {
        align-self: stretch;
    }
}

@media (max-width: 575.98px) {
    .hero-exec-grid {
        grid-template-columns: 1fr;
    }

    .value-cards-grid {
        grid-template-columns: 1fr;
    }

    .landing-module-card {
        grid-template-columns: 1fr;
    }

    .landing-module-mockup {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-new {
        padding: 1.65rem;
    }

    .cta-banner-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.4rem;
    }
}
