:root {
    color-scheme: light;
    --bg: #f4f7fb;
    --bg-soft: #eef4ff;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --surface-dark: #09172d;
    --text: #12233f;
    --muted: #5d6d86;
    --line: rgba(18, 35, 63, 0.1);
    --primary: #2563eb;
    --primary-deep: #0f3ea8;
    --accent: #14b8a6;
    --accent-soft: #effcf8;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.09), transparent 28%),
        radial-gradient(circle at right 10%, rgba(20, 184, 166, 0.09), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fc 38%, #eef3f9 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.site-header__inner,
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.brand strong,
.hero-section h1,
.section-heading h1,
.section-heading h2,
.tc-footer__logo {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.brand strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.brand span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--text);
    background: rgba(37, 99, 235, 0.08);
}

.main-nav .nav-action-btn,
.main-nav .nav-action-btn:hover,
.main-nav .nav-action-btn:focus,
.main-nav .nav-action-btn:active {
    padding: 0.62rem 1rem;
    border-radius: 999px;
    color: #ffffff !important;
    font-weight: 700;
    border: 0;
    background: var(--bs-btn-bg, #0d6efd);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.22);
}

.main-nav .nav-action-btn:hover,
.main-nav .nav-action-btn:focus,
.main-nav .nav-action-btn:active {
    background: var(--bs-btn-hover-bg, #0b5ed7);
    box-shadow: 0 16px 30px rgba(11, 94, 215, 0.28);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: all 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.page-content {
    padding-top: 72px;
    padding-bottom: 48px;
}

.section {
    margin-top: 32px;
    scroll-margin-top: 92px;
}

.section-surface,
.card,
.feature-panel,
.demo-spotlight,
.hero-panel,
.contact-card,
.contact-info {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.section-surface {
    border-radius: var(--radius-lg);
    padding: 34px;
}

.section-surface.problem-section {
    position: relative;
    overflow: hidden;
    background-image: url('../public/img/Bancoimg/yeiferr-computer-4795762_1920.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.92);
}

.section-surface.problem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 52, 0.64);
    pointer-events: none;
}

.section-surface.problem-section .section-heading,
.section-surface.problem-section .problem-grid {
    position: relative;
    z-index: 1;
}

.section-surface.problem-section .section-heading h2,
.section-surface.problem-section .section-heading p,
.section-surface.problem-section .section-kicker {
    color: #ffffff;
}

.section-surface.problem-section .problem-item {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.85);
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading--center {
    text-align: center;
}

.section-heading h1,
.section-heading h2 {
    margin: 0 0 12px;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.section-heading h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading h2 {
    font-size: clamp(1.65rem, 3.4vw, 2.6rem);
}

.section-heading p,
.hero-copy p,
.muted-copy,
.card p,
.demo-spotlight p,
.slide-content p,
.tc-footer__desc {
    color: var(--muted);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-deep);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel {
    border-radius: var(--radius-lg);
}

.hero-copy {
    padding: 22px 0 10px;
}

.hero-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-actions,
.contact-cta-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 1.4rem;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.25);
}

.button-secondary {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #fff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-deep);
    font-weight: 700;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.78rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(18, 35, 63, 0.08);
    border-radius: 18px;
    color: var(--text);
    font-weight: 600;
}

.trust-strip i {
    color: var(--accent);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.18), transparent 28%),
        linear-gradient(160deg, #08162d 0%, #10366f 56%, #0a6e88 100%);
    color: #f7fbff;
}

.hero-panel::after {
    content: '';
    position: absolute;
    inset: auto -80px -90px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.hero-panel__brand,
.hero-panel__metrics,
.hero-panel__card {
    position: relative;
    z-index: 1;
}

.hero-panel__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-panel__brand img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    padding: 10px;
}

.hero-panel__label {
    margin: 0 0 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.72);
}

.hero-panel__brand strong {
    font-size: 1.15rem;
}

.hero-panel__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.hero-panel__metrics article {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel__metrics strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-panel__metrics span,
.hero-panel__card p,
.feature-list li {
    color: rgba(255, 255, 255, 0.82);
}

.hero-panel__card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel__card h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.feature-list,
.feature-panel ul,
.tc-footer__menu,
.contact-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.feature-panel li,
.contact-points li {
    position: relative;
    padding-left: 18px;
}

.feature-list li + li,
.feature-panel li + li,
.contact-points li + li {
    margin-top: 12px;
}

.feature-list li::before,
.feature-panel li::before,
.contact-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.card {
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 54px rgba(15, 23, 42, 0.14);
}

.feature-card h3,
.demo-card h3 {
    margin: 14px 0 10px;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.12));
    color: var(--primary-deep);
    font-size: 1.35rem;
}

.carousel-section {
    position: relative;
}

.carousel-container {
    position: relative;
    display: block;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 55px rgba(9, 23, 45, 0.24);
}

.carousel-slide {
    display: none;
    min-height: 360px;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 10, 23, 0.1), rgba(4, 10, 23, 0.35));
}

.slide-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    padding: 32px;
    z-index: 1;
}

.slide-icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.slide-content h3 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.16);
    z-index: 3;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.06);
    background: #ffffff;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.22);
}

.carousel-btn.prev {
    left: 18px;
}

.carousel-btn.next {
    right: 18px;
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.stat-band div {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 35, 63, 0.08);
}

.stat-band strong {
    display: block;
    margin-bottom: 4px;
}

.stat-band span {
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.gallery-grid img {
    height: 230px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.13);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 22px;
    align-items: start;
}

.split-section--highlight {
    padding: 34px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 245, 255, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.feature-panel {
    padding: 24px;
    border-radius: var(--radius-md);
}

.demo-spotlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 26px;
}

.demo-spotlight__label,
.demo-tag {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    font-weight: 700;
    font-size: 0.78rem;
}

.demo-group + .demo-group {
    margin-top: 28px;
}

.demo-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-card .button {
    margin-top: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
}

.contact-card,
.contact-info {
    border-radius: var(--radius-md);
    padding: 26px;
}

.contact-card form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-card label {
    font-weight: 700;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(248, 251, 255, 0.95);
    color: var(--text);
}

.contact-card input:focus,
.contact-card textarea:focus {
    outline: 2px solid rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.25);
}

.tc-footer {
    margin-top: 40px;
    padding: 64px 0 26px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 20%),
        linear-gradient(180deg, rgba(7, 17, 34, 0.98) 0%, rgba(6, 13, 27, 1) 100%);
    color: #eaf0f8;
}

.tc-container {
    max-width: 1200px;
}

.tc-footer__logo {
    margin: 0 0 10px;
    font-size: 1.8rem;
    line-height: 1.05;
}

.tc-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tc-social-btn {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

.tc-social-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.tc-footer__title {
    margin: 0 0 16px;
    font-weight: 800;
}

.tc-footer__menu li + li {
    margin-top: 10px;
}

.tc-footer__menu a,
.tc-footer__link,
.tc-footer__location {
    color: rgba(234, 240, 248, 0.8);
}

.tc-footer__contact {
    display: grid;
    gap: 14px;
}

.tc-footer__link,
.tc-footer__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tc-footer__whatsapp {
    width: fit-content;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: #061b0d;
    font-weight: 800;
}

.tc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(234, 240, 248, 0.7);
}

.alert {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
}

.alert-error {
    background: rgba(255, 113, 113, 0.12);
    border: 1px solid rgba(255, 113, 113, 0.18);
    color: #8f1d1d;
}

.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #166534;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dashboard-shell {
    display: grid;
    gap: 24px;
}

.dashboard-hero,
.dashboard-panel,
.dashboard-stat {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
    padding: 30px;
    border-radius: var(--radius-lg);
}

.dashboard-hero h1,
.dashboard-panel h2,
.dashboard-stat strong,
.dashboard-card h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.dashboard-hero h1,
.dashboard-panel h2 {
    margin: 14px 0 12px;
}

.dashboard-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.dashboard-status {
    display: grid;
    gap: 14px;
}

.dashboard-status__card {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(160deg, #08162d 0%, #10366f 56%, #0a6e88 100%);
    color: #f7fbff;
    box-shadow: 0 18px 35px rgba(9, 23, 45, 0.18);
}

.dashboard-status__card strong,
.dashboard-status__card span {
    display: block;
}

.dashboard-status__card span {
    margin-top: 6px;
    color: rgba(247, 251, 255, 0.82);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.dashboard-stat {
    padding: 22px;
    border-radius: 24px;
}

.dashboard-stat span,
.dashboard-stat small {
    display: block;
}

.dashboard-stat span,
.dashboard-card p,
.dashboard-widget-list span,
.dashboard-table__row span {
    color: var(--muted);
}

.dashboard-stat strong {
    display: block;
    margin: 12px 0 6px;
    font-size: 2rem;
    line-height: 1;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 20px;
    align-items: start;
}

.dashboard-layout--full {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.dashboard-stack,
.dashboard-sidebar {
    display: grid;
    gap: 20px;
}

.dashboard-analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.dashboard-panel {
    padding: 26px;
    border-radius: var(--radius-lg);
    scroll-margin-top: 92px;
}

.dashboard-panel__head {
    margin-bottom: 18px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.dashboard-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(248, 251, 255, 0.92);
    border: 1px solid rgba(18, 35, 63, 0.08);
}

.dashboard-card h3 {
    margin: 0 0 12px;
}

.dashboard-subpanel {
    padding: 20px;
    border-radius: 22px;
    background: rgba(248, 251, 255, 0.92);
    border: 1px solid rgba(18, 35, 63, 0.08);
}

.dashboard-subpanel h3 {
    margin: 0 0 14px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.dashboard-chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.dashboard-inline-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.dashboard-inline-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.92);
    border: 1px solid rgba(18, 35, 63, 0.08);
}

.dashboard-inline-stats strong,
.dashboard-inline-stats span {
    display: block;
}

.dashboard-inline-stats strong {
    font-size: 1.5rem;
}

.dashboard-inline-stats span {
    color: var(--muted);
}

.dashboard-table {
    display: grid;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(18, 35, 63, 0.08);
}

.dashboard-table__head,
.dashboard-table__row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.8fr) 120px;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
}

.dashboard-table__head {
    background: rgba(37, 99, 235, 0.08);
    font-weight: 800;
    color: var(--primary-deep);
}

.dashboard-table__row {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(18, 35, 63, 0.06);
}

.dashboard-table__head--visits,
.dashboard-table__row--visits {
    grid-template-columns: minmax(0, 1fr) 110px 150px 170px;
}

.dashboard-table__head--leads,
.dashboard-table__row--leads {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 160px 160px 120px;
}

.dashboard-table__row form,
.dashboard-table__row--leads form {
    margin: 0;
}

.dashboard-badge {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    font-weight: 700;
}

.dashboard-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.dashboard-widget-list li {
    padding: 18px 18px 18px 20px;
    border-radius: 20px;
    background: rgba(248, 251, 255, 0.92);
    border: 1px solid rgba(18, 35, 63, 0.08);
    position: relative;
}

.dashboard-widget-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.dashboard-widget-list strong,
.dashboard-widget-list span {
    display: block;
}

.dashboard-widget-list strong {
    margin-bottom: 8px;
}

.dashboard-widget-list--compact li {
    padding-right: 16px;
}

.dashboard-ranking {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.dashboard-ranking li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 35, 63, 0.08);
}

.dashboard-ranking span {
    color: var(--muted);
    white-space: nowrap;
}

.dashboard-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.dashboard-form-grid--create {
    margin-bottom: 18px;
}

.dashboard-settings-form,
.dashboard-user-card,
.dashboard-form-grid input,
.dashboard-form-grid select,
.dashboard-user-card input,
.dashboard-user-card select,
.dashboard-select {
    font: inherit;
}

.dashboard-form-grid label,
.dashboard-settings-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.dashboard-settings-form input,
.dashboard-form-grid input,
.dashboard-select,
.dashboard-user-card input,
.dashboard-user-card select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(18, 35, 63, 0.12);
    background: #fff;
}

.dashboard-user-list {
    display: grid;
    gap: 14px;
}

.dashboard-user-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(248, 251, 255, 0.92);
    border: 1px solid rgba(18, 35, 63, 0.08);
}

.dashboard-user-card__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.dashboard-user-card__meta,
.dashboard-user-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    align-items: center;
}

.dashboard-user-card__meta span,
.dashboard-user-card__meta label {
    color: var(--muted);
    font-size: 0.95rem;
}

.dashboard-button-small {
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
}

.dashboard-button-danger {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
}

.section,
.card,
.hero-panel,
.demo-spotlight {
    animation: fadeInUp 0.7s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para la sección de resultados */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.result-item {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.result-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.result-item h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
}

.result-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estilos para la galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Estilos para split-section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.split-section--highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 60px 0;
}

.split-section--highlight .section-kicker,
.split-section--highlight h2,
.split-section--highlight p {
    color: white;
}

.split-section--highlight .button {
    background: white;
    color: var(--primary);
}

.feature-panel ul {
    margin-top: 24px;
}

/* Estilos para modelo */
.model-benefits {
    margin-top: 24px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.model-benefits h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary);
}

.model-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.model-benefits li:last-child {
    border-bottom: none;
}

.model-benefits strong {
    color: var(--text);
}

/* Estilos para secciones nuevas */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
    align-items: stretch;
}

.problem-item {
    text-align: center;
    padding: 32px 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 250px;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
}

.problem-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

.problem-item-icon i {
    font-size: 2.5rem;
    line-height: 1;
    font-family: "Bootstrap Icons", sans-serif;
}

.problem-item-content h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.4;
    max-width: 16rem;
}

@media (max-width: 960px) {
    .problem-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 880px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-category {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
}

.service-category h3 {
    margin-top: 0;
    color: var(--primary);
}

.service-category ul {
    margin-top: 16px;
    padding-left: 20px;
}

.service-category li {
    margin-bottom: 8px;
}

.results-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.results-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
}

.results-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #0f172a;
}

.results-subtitle,
.section-subtitle {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-top: 1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.result-card {
    background: #ffffff;
    border: 1px solid #e9eef5;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.result-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.25);
}

.result-card:hover::before {
    opacity: 1;
}

.result-icon,
.result-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    font-size: 1.8rem;
    color: #0d6efd;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(59, 130, 246, 0.05));
    box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.08);
}

.result-icon i,
.result-card-icon i,
.result-icon .bi,
.result-card-icon .bi {
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1;
    font-family: "Bootstrap Icons", sans-serif;
}

.result-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.85rem;
}

.result-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;

    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .hero-section,
    .split-section,
    .contact-grid,
    .dashboard-hero,
    .dashboard-layout,
    .dashboard-inline-stats,
    .hero-panel__metrics,
    .stat-band {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .carousel-container {
        gap: 10px;
    }

    .demo-spotlight,
    .tc-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .site-header__inner {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 10px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        text-align: center;
    }
}

@media (max-width: 680px) {
    .site-header__inner,
    .page-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-surface,
    .split-section--highlight,
    .hero-panel,
    .contact-card,
    .contact-info {
        padding: 22px;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .carousel-slide {
        min-height: 320px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .gallery-grid img {
        height: 180px;
    }

    .dashboard-hero,
    .dashboard-panel,
    .dashboard-stat {
        padding: 20px;
    }

    .dashboard-table__head,
    .dashboard-table__row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dashboard-ranking li {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-user-card__meta,
    .dashboard-user-card__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
