/* ============================================================
   CREO — Marketing Valor Section
   ============================================================ */
.mkt-valor {
    position: relative;
    padding: var(--space-12) 0;
    z-index: 1;
}

.mkt-valor * {
    box-sizing: border-box;
}

.mkt-valor__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* ─── HEADER ─── */
.mv-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--creo-accent);
    border: 1px solid var(--creo-accent-glow);
    padding: 6px 14px 6px 10px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.mv-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--creo-accent);
    border-radius: 50%;
    animation: mv-pulse 2s ease-in-out infinite;
}

@keyframes mv-pulse {

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

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

.mv-main-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 76px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--creo-white);
}

.mv-main-title .mv-ghost {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
    color: transparent;
    display: block;
}

.mv-header-right {
    max-width: 360px;
    padding-bottom: 6px;
}

.mv-header-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: var(--space-3);
}

.mv-header-stat {
    display: flex;
    gap: var(--space-3);
}

.mv-stat {
    border-left: 2px solid var(--creo-accent);
    padding-left: 14px;
}

.mv-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--creo-white);
    line-height: 1.1;
}

.mv-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 4px;
}

/* ─── TAB NAV ─── */
.mv-tab-nav {
    display: flex;
    gap: 0;
    margin-bottom: 2px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

.mv-tab-btn {
    flex: 1;
    padding: 20px 24px 18px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.25s;
    outline: none;
    text-align: left;
}

.mv-tab-btn:last-child {
    border-right: none;
}

.mv-tab-btn.is-active {
    background: rgba(255, 255, 255, 0.05);
}

.mv-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--tc, transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.mv-tab-btn.is-active::after {
    opacity: 1;
}

.mv-tab-index {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--tc, rgba(255, 255, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--tc, rgba(255, 255, 255, 0.5));
    flex-shrink: 0;
    transition: all 0.25s;
}

.mv-tab-btn.is-active .mv-tab-index {
    background: var(--tc);
    color: var(--creo-dark);
    border-color: var(--tc);
}

.mv-tab-info {
    flex: 1;
    min-width: 0;
}

.mv-tab-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s;
}

.mv-tab-btn.is-active .mv-tab-name {
    color: var(--creo-white);
}

.mv-tab-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── PANEL WRAPPER ─── */
.mv-panel-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.mv-panel {
    display: none;
    grid-template-columns: 1fr 1.05fr;
    animation: mv-revealUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mv-panel.is-active {
    display: grid;
}

@keyframes mv-revealUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── PANEL LEFT ─── */
.mv-p-left {
    padding: 48px 44px 52px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.mv-p-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.mv-p-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--creo-white);
}

.mv-p-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.78;
    font-weight: 300;
    margin-bottom: 32px;
}

.mv-divider {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 28px;
}

.mv-points-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.mv-point-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    font-weight: 300;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    cursor: default;
}

.mv-point-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--creo-white);
}

.mv-point-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Stagger animations */
.mv-panel.is-active .mv-point-item {
    animation: mv-revealUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mv-panel.is-active .mv-point-item:nth-child(1) {
    animation-delay: 0.06s;
}

.mv-panel.is-active .mv-point-item:nth-child(2) {
    animation-delay: 0.12s;
}

.mv-panel.is-active .mv-point-item:nth-child(3) {
    animation-delay: 0.18s;
}

/* ─── PANEL RIGHT ─── */
.mv-p-right {
    padding: 48px 44px 52px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
}

.mv-deliverables-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.mv-deliverable-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mv-d-card {
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    background: rgba(255, 255, 255, 0.015);
}

.mv-d-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--dc, var(--creo-accent));
    border-radius: 3px 0 0 3px;
}

.mv-d-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(2px);
}

.mv-d-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--creo-white);
    margin-bottom: 5px;
}

.mv-d-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 10px;
}

.mv-d-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    background: var(--dt-bg, var(--creo-accent-glow));
    color: var(--dc, var(--creo-accent));
}

/* Stagger */
.mv-panel.is-active .mv-d-card {
    animation: mv-revealUp 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mv-panel.is-active .mv-d-card:nth-child(1) {
    animation-delay: 0.08s;
}

.mv-panel.is-active .mv-d-card:nth-child(2) {
    animation-delay: 0.15s;
}

.mv-panel.is-active .mv-d-card:nth-child(3) {
    animation-delay: 0.22s;
}

/* ─── FUSION BLOCK ─── */
.mv-fusion-block {
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.mv-fusion-block:hover {
    border-color: rgba(255, 106, 0, 0.2);
}

/* Decorative corner accent */
.mv-fusion-block::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--creo-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.mv-fusion-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.mv-f-badge {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid;
}

.mv-f-badge-mkt {
    color: var(--creo-accent);
    border-color: rgba(255, 106, 0, 0.3);
    background: rgba(255, 106, 0, 0.06);
}

.mv-f-badge-dis {
    color: #3BBEFC;
    border-color: rgba(59, 190, 252, 0.3);
    background: rgba(59, 190, 252, 0.06);
}

.mv-f-plus {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
}

.mv-fusion-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--creo-white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.mv-fusion-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
}

.mv-fusion-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--creo-accent);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 106, 0, 0.35);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.mv-fusion-cta:hover {
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.6);
    transform: translateY(-1px);
}

.mv-fusion-cta svg {
    transition: transform 0.2s;
}

.mv-fusion-cta:hover svg {
    transform: translateX(3px);
}

/* ─── MAIN CTA ROW ─── */
.mv-cta-row {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.mv-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 440px;
    line-height: 1.65;
}

.mv-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--creo-accent);
    color: var(--creo-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.mv-cta-primary:hover {
    background: var(--creo-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 106, 0, 0.25);
}

.mv-cta-primary svg {
    transition: transform 0.2s;
}

.mv-cta-primary:hover svg {
    transform: translateX(3px);
}

/* ─── COLOR UTILITIES ─── */
.mkt-valor .tc1 {
    --tc: var(--creo-accent);
}

.mkt-valor .tc2 {
    --tc: #3BBEFC;
}

.mkt-valor .tc3 {
    --tc: #C8F135;
}

.mkt-valor .ec1 {
    color: var(--creo-accent);
}

.mkt-valor .ec2 {
    color: #3BBEFC;
}

.mkt-valor .ec3 {
    color: #C8F135;
}

.mkt-valor .dc1 {
    --dc: var(--creo-accent);
    --dt-bg: rgba(255, 106, 0, 0.09);
}

.mkt-valor .dc2 {
    --dc: #3BBEFC;
    --dt-bg: rgba(59, 190, 252, 0.09);
}

.mkt-valor .dc3 {
    --dc: #C8F135;
    --dt-bg: rgba(200, 241, 53, 0.09);
}

/* Reduce motion fix */
@media (prefers-reduced-motion: reduce) {
    .mv-badge-dot {
        animation: none;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 820px) {
    .mv-panel {
        grid-template-columns: 1fr;
    }

    .mv-p-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 36px 28px;
    }

    .mv-p-right {
        padding: 36px 28px;
    }

    .mv-tab-btn {
        padding: 16px 14px;
    }

    .mv-tab-sub {
        display: none;
    }

    .mv-fusion-block {
        grid-template-columns: 1fr;
        padding: 32px 28px;
    }

    .mv-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .mv-tab-nav {
        border-radius: 10px 10px 0 0;
    }

    .mv-panel-wrap {
        border-radius: 0 0 10px 10px;
    }

    .mv-main-title {
        font-size: 40px;
    }
}