:root {
    --gold: #F2C94C;
    --gold-light: #FDE68A;
    --dark: #0A0A0F;
    --dark-2: #111118;
    --dark-3: #1A1A26;
    --accent: #E8A020;
    --text-primary: #F0EEE8;
    --text-muted: #9B9B9B;
    --border: rgba(242,201,76,0.15);
    --border-subtle: rgba(255,255,255,0.06);
    --radius: 14px;
    --green: #52c41a;
    --red: #ff4d4f;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ─────────────────── HERO ─────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 8% 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    z-index: 1;
    position: relative;
}

.hero-left {
    flex: 1;
}

.txtHero {
    font-weight: 400 !important;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 200px;
}

    .hero-right img {
        width: 400px;
        max-width: 100%;
        border-radius: 20px;
    }

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("~/images/Logo-Power-BI.png");
    background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(242,201,76,0.09) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,160,32,0.05) 0%, transparent 60%), linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("~/images/Logo-Power-BI.png");
    /*background-size: 60px 60px;*/
    /*mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 0%, transparent 70%);*/
}

.hero-eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(242,201,76,0.05);
}

    .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        animation: pulse 2s infinite;
    }

@@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 720px;
    margin-bottom: 1.5rem;
}

    .hero h1 span {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-hero {
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-gold {
    background: linear-gradient(135deg, var(--gold), var(--accent)) !important;
    color: #0A0A0F !important;
    border: none;
    font-weight: 600;
}

    .btn-hero-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(242,201,76,0.3);
    }

.btn-hero-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.15);
}

    .btn-hero-outline:hover {
        border-color: var(--gold);
        background: rgba(242,201,76,0.06);
    }

.hero-note {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

    .hero-note span {
        color: var(--gold);
    }

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.stat-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ─────────────────── LOGOS BAND ─────────────────── */
.logos-band {
    padding: 40px 8%;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--dark-2);
}

.logos-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    letter-spacing: -0.01em;
    transition: color 0.2s;
    cursor: default;
}

    .logo-item:hover {
        color: rgba(255,255,255,0.5);
    }

/* ─────────────────── SECTION SHARED ─────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

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

    .section-center .section-label {
        display: block;
    }

.section-h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.2rem;
    text-align: center;
}

.section-center .section-sub {
    margin: 0 auto;
}

/* ─────────────────── FEATURES ─────────────────── */
.features {
    padding: 100px 8%;
    background: var(--dark-2);
}

.features-header {
    max-width: 640px;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--dark-2);
    padding: 2.5rem;
    transition: background 0.3s;
    cursor: default;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

    .feature-card:hover {
        background: var(--dark-3);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242,201,76,0.15), rgba(242,201,76,0.04));
    border: 1px solid rgba(242,201,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.65;
}

.feature-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(242,201,76,0.08);
    border: 1px solid rgba(242,201,76,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* ─────────────────── DASHBOARD PREVIEW ─────────────────── */
.preview {
    padding: 100px 8%;
    background: var(--dark);
}

.preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.preview-text .section-label {
    display: block;
}

.preview-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin: 1rem 0;
}

.preview-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.preview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

    .preview-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 500;
    }

        .preview-list li::before {
            content: '✦';
            color: var(--gold);
            font-size: 0.6rem;
            margin-top: 0.35rem;
            flex-shrink: 0;
        }

.dashboard-mock {
    border-radius: 18px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.mock-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-title {
    margin-left: auto;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mock-kpi {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.04);
}

.mock-kpi-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.mock-kpi-value {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.mock-kpi-delta {
    font-size: 0.6rem;
    color: var(--green);
    margin-top: 0.15rem;
}

    .mock-kpi-delta.neg {
        color: var(--red);
    }

.mock-chart-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.mock-bar-chart {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.04);
}

.mock-chart-title {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.mock-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(242,201,76,0.25);
}

    .mock-bar.active {
        background: var(--gold);
    }

.mock-donut {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-svg {
    width: 60px;
    height: 60px;
}

.mock-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-table {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.04);
}

.mock-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

    .mock-table-row:last-child {
        border-bottom: none;
    }

    .mock-table-row.header {
        color: var(--text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.mock-table-val {
    color: var(--text-primary);
}

.mock-table-pos {
    color: var(--green);
}

.mock-table-neg {
    color: var(--red);
}

/* ─────────────────── HOW IT WORKS ─────────────────── */
.how {
    padding: 100px 8%;
    background: var(--dark-2);
}

.how-header {
    text-align: center;
    margin-bottom: 5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 12.5%;
        right: 12.5%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
        opacity: 0.3;
        z-index: 0;
    }

.step-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    position: relative;
}

    .step-number::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid rgba(242,201,76,0.15);
    }

.step-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* ─────────────────── USE CASES ─────────────────── */
.use-cases {
    padding: 100px 8%;
    background: var(--dark);
}

.use-cases-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.case-card {
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .case-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    .case-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

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

.case-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.case-number {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.case-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.case-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-weight: 500;
}

.case-metrics {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.case-metric {
    font-family: 'Sora', sans-serif;
}

.case-metric-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}

.case-metric-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* ─────────────────── INTEGRATIONS ─────────────────── */
.integrations {
    padding: 100px 8%;
    background: var(--dark-2);
}

.integrations-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

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

.int-card {
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
    transition: border-color 0.2s, transform 0.2s;
}

    .int-card:hover {
        border-color: var(--border);
        transform: translateY(-2px);
    }

.int-icon {
    font-size: 2rem;
}

.int-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.integrations-text .section-label {
    display: block;
}

.integrations-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin: 1rem 0;
}

.integrations-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.int-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.int-cat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.int-cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.int-cat-name {
    font-weight: 500;
}

.int-cat-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ─────────────────── TESTIMONIALS ─────────────────── */
.testimonials {
    padding: 100px 8%;
    background: var(--dark);
}

.testi-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testi-card {
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    background: var(--dark-3);
    transition: border-color 0.3s;
}

    .testi-card:hover {
        border-color: var(--border);
    }

.testi-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.testi-quote {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

    .testi-quote strong {
        color: var(--text-primary);
        font-style: normal;
    }

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.testi-name {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.testi-company {
    font-size: 0.7rem;
    color: var(--gold);
    margin-top: 0.1rem;
}

/* ─────────────────── COMPARISON TABLE ─────────────────── */
.comparison {
    padding: 100px 8%;
    background: var(--dark-2);
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 860px;
    margin: 0 auto;
}

    .comp-table th {
        padding: 1.2rem 1.5rem;
        text-align: left;
        font-family: 'Sora', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--text-muted);
        border-bottom: 1px solid var(--border);
    }

        .comp-table th.col-feat {
            width: 40%;
        }

        .comp-table th.col-plan {
            width: 20%;
            text-align: center;
        }

            .comp-table th.col-plan.highlight {
                color: var(--gold);
            }

    .comp-table td {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
        border-bottom: 1px solid var(--border-subtle);
    }

        .comp-table td.col-plan {
            text-align: center;
        }

    .comp-table tr:hover td {
        background: rgba(255,255,255,0.02);
    }

    .comp-table td.feat-name {
        color: var(--text-muted);
    }

.comp-check {
    color: var(--green);
    font-size: 1rem;
}

.comp-cross {
    color: rgba(255,255,255,0.2);
    font-size: 1rem;
}

.comp-partial {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
}

.comp-table .cat-row td {
    padding: 1.5rem 1.5rem 0.5rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border-bottom: none;
}

/* ─────────────────── PRICING ─────────────────── */
.pricing {
    padding: 100px 8%;
    background: var(--dark);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

    .pricing-toggle span {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

        .pricing-toggle span.active {
            color: var(--text-primary);
        }

.toggle-track {
    width: 44px;
    height: 24px;
    border-radius: 100px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
}

.toggle-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    top: 2px;
    left: 3px;
    transition: left 0.2s;
}

.annual-badge {
    background: rgba(242,201,76,0.12);
    border: 1px solid rgba(242,201,76,0.3);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 3rem;
}

.pricing-card {
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    background: var(--dark-3);
    position: relative;
}

    .pricing-card.featured {
        border-color: var(--gold);
        background: linear-gradient(160deg, rgba(242,201,76,0.08) 0%, var(--dark-3) 100%);
    }

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-family: 'Sora', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.9rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-name {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

    .plan-price span {
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-muted);
    }

.plan-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

    .plan-features li {
        font-size: 0.82rem;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
    }

        .plan-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 0.05rem;
        }

        .plan-features li.dimmed {
            opacity: 0.35;
        }

            .plan-features li.dimmed::before {
                content: '–';
                color: var(--text-muted);
            }

.btn-plan {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-plan-gold {
    background: var(--gold);
    color: #000;
    border: none;
}

    .btn-plan-gold:hover {
        background: var(--gold-light);
    }

.btn-plan-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

    .btn-plan-outline:hover {
        border-color: var(--gold);
    }

.pricing-enterprise {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    border: 1px solid var(--border-subtle);
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ent-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.ent-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─────────────────── FAQ ─────────────────── */
.faq {
    padding: 100px 8%;
    background: var(--dark-2);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    padding: 1.25rem 1.5rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
    user-select: none;
}

    .faq-q:hover {
        background: rgba(255,255,255,0.03);
    }

.faq-arrow {
    font-size: 0.7rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─────────────────── RESOURCES ─────────────────── */
.resources {
    padding: 100px 8%;
    background: var(--dark);
}

.resources-header {
    text-align: center;
    margin-bottom: 4rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--dark-3);
    transition: transform 0.3s, border-color 0.3s;
}

    .resource-card:hover {
        transform: translateY(-3px);
        border-color: var(--border);
    }

.resource-thumb {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

    .resource-thumb.blue {
        background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(37,99,235,0.08));
    }

    .resource-thumb.green {
        background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.08));
    }

    .resource-thumb.purple {
        background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(109,40,217,0.08));
    }

    .resource-thumb.gold {
        background: linear-gradient(135deg, rgba(242,201,76,0.15), rgba(232,160,32,0.08));
    }

    .resource-thumb.red {
        background: linear-gradient(135deg, rgba(235, 87, 87, 0.15), rgba(192, 57, 43, 0.08));
    }

.resource-body {
    padding: 1.5rem;
}

    .resource-body p {
        font-weight: 500;
    }

.resource-type {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.resource-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.resource-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.resource-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .resource-link:hover {
        gap: 0.5rem;
    }

/* ─────────────────── CTA FINAL ─────────────────── */
.cta-section {
    padding: 120px 8%;
    background: var(--dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(242,201,76,0.07) 0%, transparent 70%);
}

.cta-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .cta-section h2 span {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.cta-section p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-align: center;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-trust {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

    .trust-item::before {
        content: '✓';
        color: var(--gold);
        font-size: 0.75rem;
    }

.how-cta {
    text-align: center;
    margin-top: 3rem;
}

.how-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #f2c94c, #967117);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

    .how-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
        background: linear-gradient(135deg, #1e40af, #1e3a8a);
    }

.p-bold {
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    text-align: center;
}

.aNegro {
    color: var(--text-primary) !important;
}

.aBlanco {
    color: #F0EEE8;
}

    .aBlanco:hover {
        color: #F0EEE8;
    }

.aDorado {
    color: var(--gold);
}

    .aDorado:hover {
        color: var(--text-primary);
        text-shadow: 0 0 12px rgba(212, 155, 68, 0.5);
    }

/* ─────────────────── ANIMATIONS ─────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-up-d1 {
    transition-delay: 0.1s;
}

.fade-up-d2 {
    transition-delay: 0.2s;
}

.fade-up-d3 {
    transition-delay: 0.3s;
}

.testimonials {
    background-color: #232323;
}

.review {
    color: #232323;
    font-weight: 500;
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

        .steps-grid::before {
            display: none;
        }

    .integrations-inner {
        grid-template-columns: 1fr;
    }
    /*.footer-top {
                grid-template-columns: repeat(2, 1fr);
            }*/

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

    .comp-table {
        font-size: 0.8rem;
    }
}

@@media (max-width: 768px) {
    .preview-inner {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
    }
    /*.footer-top {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }*/

    .pricing-enterprise {
        flex-direction: column;
    }
}
