:root {
    --bg: #f4f7fb;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --surface-contrast: #0b1c33;
    --text: #142033;
    --muted: #5f6f86;
    --line: rgba(17, 32, 56, 0.1);
    --brand: #0f5ea8;
    --brand-dark: #0f2748;
    --accent: #6ef2c2;
    --accent-dark: #0a8f70;
    --shadow: 0 20px 70px rgba(15, 39, 72, 0.12);
    --shadow-soft: 0 12px 32px rgba(15, 39, 72, 0.08);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(110, 242, 194, 0.22), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 94, 168, 0.18), transparent 24%),
        linear-gradient(180deg, #eff4fb 0%, #f8fafc 32%, #eef4fb 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

img {
    max-width: 100%;
}

button,
select {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(244, 247, 251, 0.78);
    border-bottom: 1px solid rgba(17, 32, 56, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    color: white;
    box-shadow: var(--shadow-soft);
}

.brand-mark svg {
    width: 24px;
    height: 24px;
}

.brand-copy {
    display: grid;
    gap: 2px;
    font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -0.03em;
}

.brand-copy strong,
.brand-copy span {
    display: block;
    line-height: 0.95;
}

.brand-copy span {
    color: var(--brand);
}

.site-nav,
.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a,
.ghost-link {
    color: var(--muted);
    font-weight: 600;
}

.site-nav a:hover,
.ghost-link:hover {
    color: var(--brand-dark);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-dark {
    background: var(--brand-dark);
    color: white;
    box-shadow: var(--shadow-soft);
}

.button-accent {
    background: var(--accent);
    color: var(--brand-dark);
    box-shadow: 0 18px 40px rgba(110, 242, 194, 0.28);
}

.button-light {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--brand-dark);
}

.button-block {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 84px;
    min-height: 980px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 48px 0 0;
    background: linear-gradient(90deg, rgba(7, 22, 41, 0.28) 0%, rgba(7, 22, 41, 0.12) 38%, rgba(7, 22, 41, 0) 72%);
    z-index: 0;
    pointer-events: none;
}

.hero-backdrop {
    position: absolute;
    inset: 48px 0 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(110, 242, 194, 0.2), transparent 24%),
        radial-gradient(circle at 70% 70%, rgba(35, 125, 209, 0.35), transparent 32%),
        linear-gradient(135deg, #0b1c33 0%, #0f477a 58%, #0f5ea8 100%);
    border-radius: 0 0 48px 48px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 440px);
    column-gap: 36px;
    row-gap: 14px;
    align-items: end;
    padding: 72px 0 48px;
}

.hero-copy {
    display: contents;
    color: white;
    text-shadow: 0 10px 30px rgba(7, 22, 41, 0.28);
}

.hero-copy > .eyebrow {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: start;
}

.hero-copy > h1 {
    grid-column: 1 / -1;
    grid-row: 2;
}

.hero-copy > .hero-text {
    grid-column: 1;
    grid-row: 3;
}

.hero-copy > .hero-text-secondary {
    grid-row: 4;
}

.hero-copy > .hero-actions {
    grid-column: 1;
    grid-row: 5;
}

.hero-copy > .hero-metrics {
    grid-column: 1;
    grid-row: 6;
}

.eyebrow,
.section-label,
.signal-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow,
.signal-status {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.section-label {
    background: rgba(15, 94, 168, 0.08);
    color: var(--brand);
}

.hero h1,
.section-head h2,
.overview-grid h2,
.cta-box h2 {
    margin: 18px 0 0;
    font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.97;
    letter-spacing: -0.05em;
}

.hero-text,
.section-head p,
.overview-grid p,
.cta-box p,
.site-footer p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-text {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.92);
}

.hero-text-secondary {
    margin-top: 4px;
}

.hero-text-secondary > strong {
    display: block;
    margin: 16px 0;
    padding: 12px 16px;
    border: 1px solid rgba(255, 224, 102, 0.72);
    border-radius: 14px;
    background: linear-gradient(135deg, #ffe066, #ffbd45);
    color: #09213d;
    box-shadow: 0 10px 28px rgba(255, 189, 69, 0.25);
    font-size: 1.16rem;
    line-height: 1.3;
    text-align: center;
    text-shadow: none;
}

.tasa-legal-link {
    color: inherit;
    font-weight: 800;
    text-decoration-color: rgba(110, 242, 194, 0.7);
    text-underline-offset: 3px;
}

.law-reference {
    position: relative;
    display: inline-block;
    text-shadow: none;
}

.law-reference-trigger {
    padding: 0;
    border: 0;
    border-bottom: 1px dashed var(--accent);
    background: transparent;
    color: var(--accent);
    font: inherit;
    font-weight: 800;
    cursor: help;
}

.law-reference-popup {
    position: absolute;
    z-index: 20;
    left: 0;
    top: calc(100% + 12px);
    display: none;
    width: min(760px, calc(100vw - 48px));
    padding: 16px 18px;
    border: 1px solid rgba(110, 242, 194, 0.32);
    border-radius: 16px;
    background: #071426;
    color: white;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    font-size: 0.84rem;
    line-height: 1.42;
}

.law-reference-popup > strong,
.law-reference-popup > span {
    display: block;
}

.law-reference-popup > strong {
    margin-bottom: 4px;
    color: var(--accent);
}

.law-reference-popup > span + span {
    margin-top: 5px;
}

.law-reference:hover .law-reference-popup,
.law-reference:focus-within .law-reference-popup,
.law-reference.is-open .law-reference-popup {
    display: block;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 14px;
    margin-top: 34px;
}

.hero-actions .button {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 4px 0 rgba(4, 20, 38, 0.48), 0 7px 12px rgba(4, 20, 38, 0.3);
    transform: translateY(0);
}

.hero-actions .button-accent {
    background: linear-gradient(180deg, #7ff8ce 0%, #52ddb0 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 4px 0 #2b9f7d, 0 7px 12px rgba(4, 20, 38, 0.3);
}

.hero-actions .button-light {
    background: linear-gradient(180deg, #f4f7fa 0%, #c5d2de 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 4px 0 #8195a8, 0 7px 12px rgba(4, 20, 38, 0.3);
}

.hero-actions .button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.hero-actions .button:active {
    transform: translateY(3px);
    box-shadow: inset 0 2px 4px rgba(4, 20, 38, 0.25), 0 1px 0 rgba(4, 20, 38, 0.5);
}

.hero-metrics {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 42px 0 0;
}

.hero-metrics li,
.signal-card,
.cta-box,
.overview-grid {
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.hero-metrics li {
    background: linear-gradient(180deg, rgba(10, 28, 50, 0.88), rgba(18, 59, 102, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 18px;
    border-radius: 22px;
}

.hero-metrics strong,
.signal-footer strong {
    display: block;
    font-size: 1.25rem;
    font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

.hero-metrics span,
.signal-footer span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-metrics span {
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero-panel {
    grid-column: 2;
    grid-row: 3 / 7;
    align-self: stretch;
    display: flex;
    align-items: stretch;
    margin-top: 18px;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 4rem);
    text-wrap: balance;
}

.video-showcase {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(9, 20, 38, 0.76);
    color: white;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.video-frame {
    position: relative;
    display: grid;
    place-items: center;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 28%, rgba(110, 242, 194, 0.13), transparent 30%),
        linear-gradient(145deg, #071426, #102f50);
}

.playlist-video {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    display: grid;
    justify-items: center;
    gap: 12px;
    max-width: 260px;
    padding: 28px;
    text-align: center;
}

.video-placeholder[hidden],
.playlist-video[hidden] {
    display: none;
}

.video-placeholder-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(110, 242, 194, 0.3);
    border-radius: 50%;
    background: rgba(110, 242, 194, 0.12);
    color: var(--accent);
}

.video-placeholder-icon svg {
    width: 30px;
    height: 30px;
}

.video-placeholder strong {
    font-size: 1.05rem;
    line-height: 1.35;
}

.video-placeholder > span:last-child {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
    line-height: 1.55;
}

.video-audio-button {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 9px 13px;
    border: 0;
    border-radius: 10px;
    background: rgba(10, 143, 112, 0.94);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.video-audio-button:disabled {
    display: none;
}

.signal-card {
    background: rgba(9, 20, 38, 0.66);
    color: white;
    border-radius: var(--radius-lg);
    padding: 28px;
}

.signal-card h2 {
    margin: 16px 0 0;
    font-size: 1.7rem;
    font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

.search-card {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.search-card label {
    display: grid;
    gap: 8px;
}

.search-card span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
}

.search-card select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    appearance: none;
}

.search-card option {
    color: var(--text);
}

.form-status {
    min-height: 1.4em;
    margin: -2px 4px 0;
    color: var(--accent);
    font-size: 0.88rem;
    line-height: 1.4;
}

.signal-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.signal-footer div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.section {
    padding: 56px 0;
}

.section-overview {
    padding-top: 18px;
}

.overview-grid,
.cta-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(17, 32, 56, 0.08);
}

.overview-grid {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.overview-grid::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 72%;
    background: url("./assets/exito-economico.png") right bottom / cover no-repeat;
    opacity: 0.72;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(135deg, transparent 2%, rgba(0, 0, 0, 0.12) 24%, #000 68%);
    mask-image: linear-gradient(135deg, transparent 2%, rgba(0, 0, 0, 0.12) 24%, #000 68%);
}

.overview-grid p,
.section-head p,
.cta-box p,
.site-footer p {
    color: var(--muted);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head h2,
.overview-grid h2,
.cta-box h2 {
    font-size: clamp(2rem, 3vw, 3.4rem);
    color: var(--brand-dark);
}

.cta-section {
    scroll-margin-top: 96px;
    padding-top: 18px;
    padding-bottom: 72px;
}

.cta-box {
    align-items: center;
}

.documents-section {
    padding-top: 0;
    padding-bottom: 72px;
}

.documents-box {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 36px;
    padding: 34px;
    border: 1px solid rgba(17, 32, 56, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.documents-intro h2 {
    margin: 18px 0 0;
    color: var(--brand-dark);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.documents-intro > p:last-child {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.document-links {
    display: grid;
    gap: 10px;
}

.document-links a {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(244, 247, 251, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.document-links a:hover {
    transform: translateX(3px);
    border-color: rgba(15, 94, 168, 0.26);
    background: white;
}

.document-links a > span {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--brand-dark);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
}

.document-links strong {
    color: var(--brand-dark);
}

.document-links small {
    margin-top: 3px;
    color: var(--muted);
    line-height: 1.4;
}

.site-footer {
    padding: 0 0 28px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 32, 56, 0.08);
}

.footer-inner > div {
    max-width: 680px;
}

.footer-inner strong {
    color: var(--brand-dark);
}

.footer-inner p {
    margin: 7px 0 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--brand);
    text-decoration: underline;
}

.legal-page {
    min-height: 100vh;
    background: #f4f7fb;
}

.legal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: rgba(244, 247, 251, 0.92);
    backdrop-filter: blur(16px);
}

.legal-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
}

.legal-header .brand-mark {
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
}

.legal-main {
    padding: 64px 0 80px;
}

.legal-document {
    width: min(calc(100% - 32px), 900px);
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-soft);
}

.legal-document h1 {
    margin: 20px 0 0;
    color: var(--brand-dark);
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.legal-updated {
    margin: 16px 0 38px;
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-document h2 {
    margin: 36px 0 10px;
    color: var(--brand-dark);
    font-size: 1.25rem;
}

.legal-document p,
.legal-document li {
    color: #44546a;
    line-height: 1.75;
}

.legal-document a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-document code {
    padding: 2px 6px;
    border-radius: 6px;
    background: #eef4fb;
}

.legal-footer {
    padding: 24px 0;
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 0.88rem;
}

.legal-footer a {
    color: white;
}

.simulator-page {
    min-height: 100vh;
    background: #f4f7fb;
}

.simulator-main {
    padding: 54px 0 80px;
}

.simulator-heading {
    margin-bottom: 28px;
}

.simulator-heading h1 {
    margin: 16px 0 10px;
    color: var(--brand-dark);
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.simulator-heading > p:last-child {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.05rem;
}

.simulator-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-soft);
}

.simulator-section,
.simulator-results {
    padding: clamp(24px, 4vw, 42px);
}

.simulator-section + .simulator-section {
    border-top: 1px solid var(--line);
}

.simulator-section-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
}

.simulator-section-title > span {
    display: grid;
    flex: 0 0 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-dark);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
}

.simulator-section-title h2,
.simulator-section-title p {
    margin: 0;
}

.simulator-section-title h2 {
    color: var(--brand-dark);
    font-size: 1.35rem;
}

.simulator-section-title p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.simulator-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.simulator-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--brand-dark);
    font-size: 0.88rem;
    font-weight: 750;
}

.simulator-field input,
.simulator-field select,
.simulator-readonly output {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd6e4;
    border-radius: 12px;
    background: white;
    color: var(--brand-dark);
    font: inherit;
    font-size: 1rem;
    outline: none;
}

.simulator-field input,
.simulator-field select {
    padding: 0 14px;
}

.simulator-field input:focus,
.simulator-field select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(35, 125, 209, 0.12);
}

.money-input,
.suffix-input {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #cbd6e4;
    border-radius: 12px;
    background: #f4f7fb;
}

.money-input:focus-within,
.suffix-input:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(35, 125, 209, 0.12);
}

.money-input > span,
.suffix-input > span {
    padding: 0 14px;
    color: var(--muted);
    font-weight: 800;
}

.money-input input,
.suffix-input input {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.money-input input:focus,
.suffix-input input:focus {
    box-shadow: none;
}

.simulator-field small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 500;
}

.simulator-field small a {
    color: var(--brand);
    text-decoration: underline;
}

.simulator-readonly output {
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-style: dashed;
    background: #f4f7fb;
    font-weight: 800;
}

.field-error {
    color: #b42318 !important;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.payment-options label {
    cursor: pointer;
}

.payment-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-options label > span {
    display: flex;
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px;
    border: 1px solid #cbd6e4;
    border-radius: 14px;
    color: var(--brand-dark);
}

.payment-options input:checked + span {
    border-color: var(--brand);
    background: #eef7ff;
    box-shadow: inset 0 0 0 1px var(--brand);
}

.payment-options small {
    margin-top: 4px;
    color: var(--muted);
}

.simulator-results {
    background: linear-gradient(135deg, var(--brand-dark), #0f5ea8);
    color: white;
}

.simulator-section-title-light h2,
.simulator-section-title-light p {
    color: white;
}

.simulator-section-title-light p {
    opacity: 0.72;
}

.simulator-section-title-light > span {
    background: var(--accent);
    color: var(--brand-dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.results-grid > div {
    display: flex;
    min-height: 108px;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.results-grid span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

.results-grid strong {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.results-grid .result-total {
    background: var(--accent);
    color: var(--brand-dark);
}

.results-grid .result-total span {
    color: rgba(15, 39, 72, 0.72);
}

.simulator-warning {
    margin: clamp(24px, 4vw, 42px);
    padding: 18px 20px;
    border: 1px solid #f0c36a;
    border-radius: 14px;
    background: #fff3cf;
    color: #694d12;
}

.simulator-warning p {
    margin: 5px 0 0;
    line-height: 1.55;
}

.simulator-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding: 0 clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@media (max-width: 760px) {
    .simulator-fields,
    .payment-options,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .simulator-actions {
        flex-direction: column-reverse;
    }
}

/* Simulador: replica visual del formulario de postura de la Judicatura. */
.judicial-simulator-page {
    min-width: 760px;
    margin: 0;
    background: #f2f2f2;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.judicial-window {
    min-height: 100vh;
    padding: 5px 9px 10px;
    border: 1px solid #aaa;
    background: #f4f4f4;
}

.judicial-tab {
    display: inline-block;
    padding: 3px 9px;
    border: 1px solid #9daab6;
    border-bottom: 0;
    background: linear-gradient(#f9f9f9, #cdd8e3);
    color: #003c73;
    font-weight: bold;
}

.required-message {
    margin: 10px 0 4px;
    color: red;
    font-weight: bold;
}

.judicial-panel {
    margin-bottom: 9px;
    border: 1px solid #b7b7b7;
}

.judicial-panel-title {
    height: 24px;
    margin: 0;
    padding: 4px 7px;
    border-bottom: 1px solid #245a91;
    background: linear-gradient(#74a9d4, #356aa5);
    color: white;
    font-size: 13px;
    line-height: 15px;
}

.judicial-panel-title span {
    margin-right: 4px;
    font-size: 8px;
}

.judicial-panel-body {
    padding: 9px 10px 12px;
}

.bidder-grid {
    display: grid;
    grid-template-columns: 155px 225px minmax(260px, 1fr);
    align-items: center;
    gap: 5px 0;
}

.bidder-grid > .form-label {
    grid-column: 1;
}

.bidder-grid > input,
.bidder-grid > select,
.bidder-grid > .radio-row {
    grid-column: 2;
}

.bidder-grid .field-information {
    grid-column: 3;
    grid-row: 3;
    margin: 0 0 0 50px;
}

.radio-row {
    display: flex;
    gap: 17px;
}

.judicial-simulator-page input,
.judicial-simulator-page select {
    height: 22px;
    border: 1px solid #b8c3ce;
    border-radius: 0;
    background: white;
    color: #111;
    font: 12px Arial, sans-serif;
}

.judicial-simulator-page select {
    width: 225px;
}

.field-information {
    color: #555;
    font-size: 11px;
}

.posture-grid {
    display: grid;
    grid-template-columns: 155px 225px minmax(300px, 1fr);
    align-items: center;
    gap: 4px 0;
}

.posture-kicker {
    grid-column: 1 / -1;
    margin: 1px 0 3px 5px;
    color: #1e5791;
}

.selected-auction-info {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-left: 25px;
    color: #444;
}

.auction-picker-grid {
    display: grid;
    grid-template-columns: 155px 300px minmax(300px, 1fr);
    align-items: center;
    gap: 0;
}

.auction-picker-grid > select {
    width: 300px;
}

.auction-picker-grid .selected-auction-info {
    grid-column: 3;
    margin-left: 25px;
}

.asset-type-help {
    grid-column: 3;
    margin-left: 25px;
    color: #555;
    font-weight: bold;
}

.property-credit-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 155px 225px 155px 225px;
    align-items: center;
    gap: 4px 0;
    margin-top: 5px;
}

.property-credit-fields[hidden],
.credit-result[hidden] {
    display: none !important;
}

.selected-auction-info strong {
    color: #0757a6;
}

.selected-auction-info a {
    color: #0065a4;
    font-weight: bold;
    text-decoration: underline;
}

.appraisal-prompt {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.25;
}

.vehicle-payment-note {
    grid-column: 3;
    margin: 0 0 0 25px;
    color: #555;
}

.calculation-only {
    display: none !important;
}

.judicial-simulator-page input[readonly],
.judicial-simulator-page select:disabled {
    background: #eeeeee;
    color: #555;
}

.posture-grid > .form-label {
    grid-column: 1;
}

.posture-grid > .currency-field,
.posture-grid > .percentage-field,
.posture-grid > .plain-output,
.posture-grid > select {
    grid-column: 2;
}

.currency-field,
.percentage-field {
    display: flex;
    align-items: center;
    width: 225px;
}

.currency-field > span,
.percentage-field > span {
    padding: 0 4px;
    color: #666;
}

.currency-field input {
    width: 205px;
}

.percentage-field input {
    width: 65px;
}

.plain-output {
    color: #999;
}

.bid-information {
    grid-column: 3;
    grid-row: 5;
    margin: 0 0 0 95px;
}

.bid-help {
    grid-column: 2;
    margin-top: -3px;
    font-weight: bold;
}

.judicial-credit-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 155px 225px 155px 225px;
    align-items: center;
    gap: 4px 0;
    margin-top: 6px;
}

.judicial-credit-fields[hidden] {
    display: none;
}

.deposit-button {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 10px;
}

.judicial-button {
    min-width: 72px;
    height: 29px;
    padding: 0 10px;
    border: 1px solid #11608d;
    border-radius: 0;
    background: linear-gradient(#3d9ac5, #096394);
    color: white;
    font: bold 12px Arial, sans-serif;
    cursor: pointer;
}

.judicial-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    filter: grayscale(1);
}

.deposit-table-wrap {
    grid-column: 1 / -1;
    overflow-x: auto;
}

.deposit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.deposit-table th {
    height: 23px;
    border-right: 1px solid white;
    background: #0757a6;
    color: white;
}

.deposit-table td {
    height: 17px;
    border: 1px solid #aaa;
    background: white;
}

.posture-summary {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 11px;
    padding: 8px 0 12px;
    border-bottom: 2px solid #bbb;
}

.posture-summary > div {
    display: grid;
    grid-template-columns: 155px 175px minmax(0, 1fr);
    min-height: 18px;
    align-items: center;
}

.posture-summary > .summary-secondary {
    grid-template-columns: 260px 175px minmax(0, 1fr);
}

.posture-summary strong {
    color: #df6700;
    font-weight: normal;
}

.posture-summary small {
    color: #555;
}

.representative-check {
    display: block;
    margin: 19px 9px 17px;
}

.verification-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 9px 22px;
}

.verification-block > div {
    display: grid;
    grid-template-columns: 113px 113px;
    align-items: end;
}

.verification-image {
    display: grid;
    height: 54px;
    place-items: center;
    background: repeating-linear-gradient(25deg, #777 0 3px, #888 3px 7px);
    color: white;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 3px;
    transform: skew(-4deg);
}

.verification-block input {
    width: 113px;
    margin-bottom: 10px;
}

.verification-block button {
    grid-column: 1;
    justify-self: start;
    padding: 0;
    border: 0;
    background: none;
    color: #0065a4;
    font: 11px Arial, sans-serif;
}

.judicial-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 9px;
    padding: 10px;
    border: 1px solid #ee8900;
    border-radius: 4px;
    background: #ffeab2;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.judicial-warning strong {
    color: red;
}

.judicial-warning p {
    margin: 0;
}

.judicial-warning .warning-close-button {
    flex: 0 0 auto;
    margin-left: auto;
}

.judicial-actions {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.judicial-simulator-page .field-error {
    color: red !important;
}

.simulated-email-screen {
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: auto;
    background: white;
    color: #222;
    font: 13px Arial, sans-serif;
}

.simulated-email-screen[hidden] {
    display: none;
}

.simulation-email-alert {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 12px 18px;
    border-bottom: 2px solid #e58a00;
    background: #fff0bd;
    color: #7a3500;
    font-size: 15px;
    text-align: center;
}

.email-toolbar {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 18px;
    border-bottom: 1px solid #d8dce2;
}

.email-toolbar h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

.email-toolbar button,
.email-close-button {
    padding: 7px 12px;
    border: 1px solid #747b84;
    border-radius: 4px;
    background: linear-gradient(#f4f4f4 0%, #d5d5d5 48%, #b9b9b9 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 0 #777, 0 3px 5px rgba(0, 0, 0, 0.25);
    color: #222;
    font-weight: bold;
    cursor: pointer;
}

.email-toolbar button:hover,
.email-close-button:hover {
    background: linear-gradient(#fff 0%, #dfdfdf 48%, #c4c4c4 100%);
}

.email-toolbar button:active,
.email-close-button:active {
    transform: translateY(2px);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25), 0 1px 0 #777;
}

.simulator-topbar {
    display: flex;
    justify-content: flex-end;
    padding: 3px 0 7px;
}

.email-envelope {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 16px 18px;
}

.email-sender-avatar {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #f4bcc3;
}

.email-addresses p {
    margin: 6px 0 0;
}

.email-addresses span {
    color: #a40000;
    font-size: 11px;
}

.simulated-email-body {
    width: min(calc(100% - 40px), 1050px);
    margin: 45px auto 60px;
}

.simulated-judiciary-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 130px;
    padding: 20px 35px;
    background: #fafafa;
    color: #333;
    font-size: 18px;
}

.simulated-judiciary-brand i {
    width: 55%;
    height: 5px;
    background: linear-gradient(90deg, #f4c400 0 33%, transparent 33% 34%, #1765a4 34% 67%, transparent 67% 68%, #c92532 68%);
}

.simulated-email-body h3 {
    margin: 28px 0 22px;
    text-align: center;
}

.email-data-block {
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #888;
}

.email-data-block p {
    margin: 3px 0;
}

.simulated-email-important {
    margin-top: 8px;
    padding: 14px;
    border: 1px solid #2361a0;
    font-size: 16px;
    line-height: 1.45;
}

.simulated-email-important > strong {
    display: block;
    font-size: 17px;
    text-align: center;
}

.simulated-email-important p {
    margin: 12px 0 0;
}

.business-experience-page {
    min-height: 100vh;
    background: #f4f7fb;
    color: var(--brand-dark);
}

.business-experience-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px max(24px, calc((100% - 1040px) / 2));
    border-bottom: 1px solid var(--line);
    background: rgba(244, 247, 251, 0.94);
    backdrop-filter: blur(14px);
}

.business-experience-header .brand {
    color: var(--brand-dark);
}

.business-experience-main {
    width: min(calc(100% - 40px), 1040px);
    margin: 0 auto;
    padding: 72px 0 90px;
}

.business-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: clamp(38px, 6vw, 72px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 18%, rgba(110, 242, 194, 0.22), transparent 26%),
        linear-gradient(135deg, #0b1c33 0%, #0f477a 58%, #0f5ea8 100%);
    color: white;
    box-shadow: var(--shadow);
}

.business-kicker {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.business-intro h1 {
    margin: 0;
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.business-intro > p:not(.business-kicker) {
    max-width: 690px;
    margin: 26px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.2rem;
    line-height: 1.6;
}

.business-intro > .business-free-message {
    position: absolute;
    right: 42px;
    bottom: 48px;
    width: min(420px, 48%);
    max-width: 420px;
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.35;
    text-align: right;
}

.business-intro > .button {
    margin-top: 42px;
}

.business-story {
    display: grid;
    gap: 28px;
    width: 100%;
    padding: 70px 0;
}

.business-story article {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.business-story .business-story-full {
    grid-template-columns: 1fr;
}

.business-story h2 {
    margin: 14px 0 0;
    font-size: 1.18rem;
}

.business-story h2 span {
    color: var(--muted);
    font-size: 0.9rem;
}

.business-story-card {
    display: flex;
    flex-direction: column;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    color: #44546a;
    box-shadow: var(--shadow-soft);
}

.youtube-videos-button {
    align-self: flex-end;
    margin-top: 18px;
    padding: 10px 16px;
    border: 1px solid #9daabc;
    border-radius: 999px;
    background: linear-gradient(#ffffff, #dfe7ef);
    box-shadow: 0 3px 0 #8290a0, 0 6px 12px rgba(15, 39, 72, 0.16);
    color: var(--brand-dark);
    font-weight: 800;
}

.youtube-videos-button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.youtube-videos-button:not(:disabled) {
    cursor: pointer;
}

.program-player-page {
    min-height: 100vh;
    margin: 0;
    background: #071629;
    color: white;
}

.program-player-header {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: #0f2748;
}

.program-player-main {
    display: grid;
    min-height: calc(100vh - 70px);
    padding: 28px;
    place-items: center;
}

.program-player-placeholder {
    display: grid;
    width: min(100%, 980px);
    aspect-ratio: 16 / 9;
    place-items: center;
    align-content: center;
    padding: 30px;
    border: 1px solid rgba(110, 242, 194, 0.32);
    border-radius: 22px;
    background: linear-gradient(135deg, #0b1c33, #0f5ea8);
    text-align: center;
    box-shadow: var(--shadow);
}

.program-player-placeholder > span {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--brand-dark);
    font-size: 2rem;
}

.program-player-placeholder h1 {
    margin: 22px 0 6px;
}

.program-player-placeholder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.business-story-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.02rem;
    color: var(--brand-dark);
}

.business-story-card p {
    margin: 0;
    line-height: 1.55;
}

.business-steps {
    margin-bottom: 56px;
    padding: 56px;
    border-radius: 26px;
    background: linear-gradient(135deg, #0b1c33, #0f5ea8);
    color: white;
    box-shadow: var(--shadow);
}

.business-steps > h2 {
    max-width: 740px;
    margin: 0 0 30px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.business-steps > h2 span {
    display: block;
    white-space: nowrap;
}

.business-steps > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.business-system-preview {
    position: relative;
    z-index: 1;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: #071629;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    transform-origin: center;
}

.business-system-preview img {
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

.integrated-program-player {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: #071629;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.integrated-program-player iframe,
.program-player-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.program-player-poster {
    display: grid;
    place-items: center;
    align-content: center;
    color: white;
    text-align: center;
}

.program-player-poster[hidden] {
    display: none;
}

.program-player-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.program-player-play,
.program-player-poster strong,
.program-player-poster small {
    position: relative;
    z-index: 1;
}

.program-player-play {
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--brand-dark);
    font-size: 1.8rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.program-player-poster strong {
    font-size: 1.15rem;
}

.program-player-poster small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.business-system-preview:hover {
    z-index: 5;
    transform: scale(1.12);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

@media (prefers-reduced-motion: reduce) {
    .business-system-preview {
        transition: none;
    }
}

.business-steps article {
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
}

.business-steps article span {
    color: var(--accent);
    font-weight: 800;
}

.business-steps article strong {
    display: block;
    margin-top: 24px;
    font-size: 1.2rem;
}

.business-steps article p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.business-lead-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    gap: 54px;
    padding: 65px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: white;
    color: var(--brand-dark);
    box-shadow: var(--shadow-soft);
}

.business-lead-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
}

.business-lead-section > div > p:last-child {
    color: #526176;
    line-height: 1.6;
}

.business-lead-form {
    display: grid;
    gap: 13px;
}

.business-form-step {
    display: grid;
    gap: 13px;
    min-width: 0;
}

.business-form-step[hidden] {
    display: none !important;
}

.investment-profile-step {
    margin: 0;
    padding: 0;
    border: 0;
}

.investment-profile-step h3,
.investment-result h3 {
    margin: 0;
    color: var(--brand-dark);
    font-size: 1.45rem;
}

.investment-profile-step > p,
.investment-result > p {
    margin: 0;
    color: #526176;
    line-height: 1.5;
}

.investment-profile-step legend,
.profile-question {
    margin: 10px 0 0 !important;
    color: var(--brand-dark) !important;
    font-weight: 800;
}

.form-step-label {
    color: var(--brand) !important;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.business-lead-form .profile-option {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid #c8d3df;
    border-radius: 10px;
    background: white;
    cursor: pointer;
}

.profile-option:has(input:checked) {
    border-color: #25b98a;
    background: #edfff8;
    box-shadow: 0 0 0 2px rgba(37, 185, 138, 0.13);
}

.business-lead-form .profile-option input {
    width: 17px;
    min-height: 17px;
    margin: 0;
}

.profile-option span {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 10px;
}

.profile-option input[name="level"] + span {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.profile-option small {
    color: #6c788a;
    font-weight: 500;
}

.query-quantity-section {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #d7e0e9;
}

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

.query-options {
    display: grid;
    gap: 8px;
}

.query-options .profile-option small {
    color: var(--brand-dark);
    font-size: 0.98rem;
    font-weight: 750;
}

.calculated-plan-price {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 16px;
    margin-top: 5px;
    padding: 15px;
    border: 1px solid #8bd9bd;
    border-radius: 12px;
    background: #edfff8;
}

.calculated-plan-price > span {
    color: #526176;
    font-weight: 700;
}

.calculated-plan-price strong {
    color: #087552;
    font-size: 1.2rem;
}

.calculated-plan-price small {
    grid-column: 1 / -1;
    text-align: right;
}

.pricing-tax-note {
    color: #526176 !important;
    font-style: italic;
}

.investment-profile-step > .free-eligibility-note {
    padding: 11px 13px;
    border-left: 4px solid #e7a100;
    background: #fff4d2;
    color: #6b4b00;
}

.form-step-actions {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.investment-result {
    padding: 22px;
    border: 1px solid #b9d9cc;
    border-radius: 14px;
    background: #f0fff9;
}

.business-lead-form label {
    display: grid;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 750;
}

.business-lead-form input,
.business-lead-form select {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #c1ccda;
    border-radius: 10px;
    background: white;
    color: var(--brand-dark);
    font: inherit;
}

.business-lead-form select[name="location"] {
    text-transform: uppercase;
}

.business-lead-form small {
    color: #6c788a;
    line-height: 1.45;
}

.business-lead-form .identification-help.is-valid {
    color: #147a58;
    font-weight: 700;
}

.business-lead-form .identification-help.is-invalid {
    color: #b42318;
    font-weight: 700;
}

@media (max-width: 760px) {
    .business-experience-main {
        width: min(calc(100% - 28px), 1040px);
        padding-top: 32px;
    }

    .business-story article,
    .business-lead-section {
        grid-template-columns: 1fr;
    }

    .business-steps > div {
        grid-template-columns: 1fr;
    }

    .business-lead-section {
        gap: 30px;
        padding: 28px;
    }

    .business-intro > .business-free-message {
        position: static;
        align-self: stretch;
        width: auto;
        max-width: none;
        margin-top: 24px;
        margin-right: 0;
        font-size: 1.3rem;
    }
}

.reveal,
.reveal-delay-1,
.reveal-delay-2 {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .hero-grid,
    .overview-grid,
    .cta-box,
    .documents-box {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-top: 48px;
    }

    .hero-panel {
        grid-column: 1;
        grid-row: 7;
        margin-top: 12px;
    }

    .video-showcase {
        height: auto;
    }

    .video-frame {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .overview-grid::after {
        width: 58%;
        height: 58%;
        opacity: 0.5;
    }
}

@media (max-width: 860px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 18px 0;
    }

    .site-nav,
    .header-actions {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .header-actions {
        padding-top: 4px;
    }

    .hero {
        padding-top: 32px;
        min-height: auto;
    }

    .hero-backdrop {
        inset: 24px 0 0;
        border-radius: 0 0 36px 36px;
    }

    .hero::before {
        inset: 24px 0 0;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-inner {
        min-height: 76px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .signal-card,
    .overview-grid,
    .cta-box,
    .documents-box {
        padding: 22px;
    }

    .legal-header-inner {
        min-height: 72px;
    }

    .legal-header .brand-copy {
        display: none;
    }

    .legal-header .button {
        padding: 11px 16px;
    }

    .video-showcase {
        padding: 16px;
    }

    .video-frame {
        aspect-ratio: 9 / 11;
    }

    .signal-footer {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .overview-grid::after {
        width: 72%;
        height: 42%;
        opacity: 0.34;
    }
}
