:root {
    --bg: #0b1220;
    --surface: #0f172a;
    --card: #0b1220;
    --text: #0f172a;
    --muted: #475569;
    --line: #e2e8f0;
    --shadow: 0 6px 18px rgba(2, 6, 23, .08);
    --shadow-sm: 0 2px 10px rgba(2, 6, 23, .06);
    --radius: 14px;
    --radius-sm: 12px;
    --max: 1120px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit
}

/* ===== Minimal Container Override ===== */
.sl-container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    z-index: 1000;
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, .8);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.brand {
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    font-size: 1.05rem;
    color: var(--primary) !important;
}

/* --- Header Logo --- */
.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

.nav-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    font-size: .9rem;
    color: rgba(15, 23, 42, .85);
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    border-color: rgba(226, 232, 240, .9);
    background: rgba(248, 250, 252, .9);
}

/* ===== Main wrapper card ===== */
.page {
    padding: 140px 0 80px;
}

.sl-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.sl-section {
    padding: 34px 28px;
    border-top: 1px solid var(--line);
}

.sl-section:first-child {
    border-top: 0;
}

.sl-section h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.sl-section h3 {
    margin: 18px 0 8px;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.sl-section p {
    margin: 0 0 12px;
    color: rgba(15, 23, 42, .88);
}

.muted {
    color: var(--muted);
}

/* ===== Hero (2 columns only here) ===== */
.sl-hero {
    padding: 38px 28px;
}

.sl-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 22px;
    align-items: start;
}

.sl-hero h1 {
    margin: 0 0 20px;
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: #0f172a;
    font-weight: 900;
}

.sl-hero p {
    margin: 0 0 14px;
    color: rgba(15, 23, 42, .88);
    font-size: 1.05rem;
}

.check-list,
.service-check-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li,
.service-check-list li {
    padding-left: 26px;
    position: relative;
    font-size: 1rem;
}

.check-list li:before,
.service-check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    /* Update dot to primary color */
}

.sl-hero-side {
    padding: 0;
    margin-top: 0;
}

.hero-left-box {
    background: #f8fbfe;
    /* Very subtle blue tint */
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

.sl-hero-side h2 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.side-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.4);
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.side-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #334155;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.side-icon.circular {
    border-radius: 50%;
    background: #f1f5f9;
    color: #1e293b;
}

.sl-hero-side .side-icon {
    background: #eff6ff;
    color: #2563eb;
}

.side-card h3 {
    margin: 0 0 4px;
    font-size: 1.02rem;
}

.side-card p {
    margin: 0;
    color: rgba(15, 23, 42, .82);
    font-size: .95rem;
}

/* ===== Lists (Problemas, Incluye, Resultados, Como funciona) ===== */
.highlight,
.action-list-container {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
}

.highlight h2,
.action-list-container h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 15px;
}

.highlight>p:first-of-type,
.action-list-container>p:first-of-type {
    margin-bottom: 25px;
    color: rgba(15, 23, 42, .88);
}

.custom-border-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 3px solid var(--primary);
}

.custom-border-list li {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: rgba(15, 23, 42, .88);
}

.custom-border-list li:last-child {
    border-bottom: none;
}

.custom-border-list li strong {
    color: var(--text);
    font-weight: 700;
}

.custom-border-list .list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #f1f5f9;
    border-radius: 10px;
    margin-top: 2px;
}

.custom-border-list .list-icon svg {
    width: 22px;
    height: 22px;
    stroke: #334155;
}

.custom-border-list .list-number {
    color: rgba(15, 23, 42, 0.2);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 0.8;
    margin-right: 15px;
    flex-shrink: 0;
    width: 45px;
    text-align: right;
}

.custom-border-list-no-border {
    border-left: none;
}

.custom-border-list-no-border li {
    padding-left: 0;
}

.sl-section p.footer-note {
    margin-top: 25px;
    color: rgba(15, 23, 42, .82);
    font-size: 0.95rem;
}

/* ===== FAQ ===== */
.faq-item {
    padding: 22px 0;
    border-top: 1px dashed rgba(226, 232, 240, 0.8);
}

.faq-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.faq-item summary {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
    list-style: none;
    /* remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
    position: relative;
    outline: none;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item[open] summary {
    color: var(--primary);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item p {
    margin: 15px 0 0 0;
    color: rgba(15, 23, 42, .75);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CTA ===== */
.cta-box {
    margin: 0;
    text-align: center;
    background: rgba(248, 250, 252, .85);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 18px;
    box-shadow: var(--shadow-sm);
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, .16);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    /* rgba(15,23,42,.92); */
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #252b42;
}

.btn-ghost {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-ghost:hover {
    background: #f8fafc;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .sl-hero-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .sl-container {
        width: min(var(--max), calc(100% - 28px));
    }

    .sl-hero h1 {
        font-size: 1.75rem;
    }

    .sl-section {
        padding: 28px 18px;
    }

    .sl-hero {
        padding: 30px 18px;
    }
}