/* ═══════════════════════════════════════════════════
   MACRO Analytics — Design System
   ═══════════════════════════════════════════════════ */

:root {
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --navy: #0B1A2F;
    --navy-mid: #112240;
    --card-dark: #162540;
    --border-dark: #1E3A5F;
    --blue: #1B4FD8;
    --blue-hover: #2563EB;
    --blue-light: #EFF6FF;
    --blue-glow: #60A5FA;
    --blue-sky: #93C5FD;
    --text-primary: #111827;
    --text-muted: #6B7280;
    --text-dark-muted: #94A3B8;
    --transition: .25s ease;
}

/* ── Reset & Global ── */
* { font-family: 'Manrope', -apple-system, sans-serif; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { color: var(--text-primary); overflow-x: hidden; }

/* ── Typography helpers ── */
.text-accent { color: var(--blue) !important; }
.text-blue-glow { color: var(--blue-glow) !important; }
.text-light-muted { color: var(--text-dark-muted) !important; }

/* ═══ NAVBAR ═══ */
#mainNav {
    height: 68px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #F1F5F9;
    transition: box-shadow var(--transition);
    z-index: 1050;
}
#mainNav.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
#mainNav .nav-link {
    font-weight: 500;
    font-size: .9375rem;
    color: #374151;
    padding: .5rem .75rem;
    border-radius: .5rem;
    transition: color var(--transition), background var(--transition);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--blue);
    background: var(--blue-light);
}
.nav-lang-btn {
    font-size: .8rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid #E5E7EB;
    border-radius: .5rem;
    padding: .3rem .6rem;
}
.btn-nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    font-weight: 600;
    font-size: .875rem;
    padding: .55rem 1.25rem;
    border-radius: .5rem;
    text-decoration: none;
    transition: background var(--transition);
}
.btn-nav-cta:hover { background: var(--blue); }
.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: .75rem 0;
    border-bottom: 1px solid #F1F5F9;
}
.mobile-nav-link:hover { color: var(--blue); }

/* ═══ BUTTONS ═══ */
.btn-dark-macro {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    padding: .85rem 1.75rem;
    border-radius: .5rem;
    border: none;
    transition: all var(--transition);
}
.btn-dark-macro:hover { background: var(--blue); color: var(--white); transform: scale(1.02); }
.btn-outline-macro {
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-weight: 600;
    padding: .85rem 1.75rem;
    border-radius: .5rem;
    background: transparent;
    transition: all var(--transition);
}
.btn-outline-macro:hover { background: var(--blue-light); color: var(--blue); }
.btn-blue-macro {
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    padding: .85rem 1.75rem;
    border-radius: .5rem;
    border: none;
    transition: all var(--transition);
}
.btn-blue-macro:hover { background: var(--blue-hover); color: var(--white); }
.btn-white-solid {
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    padding: .7rem 1.5rem;
    border-radius: .5rem;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-white-solid:hover { background: var(--blue-light); color: var(--navy); }
.btn-white-outline {
    border: 1.5px solid rgba(255,255,255,.5);
    color: var(--white);
    font-weight: 600;
    padding: .7rem 1.5rem;
    border-radius: .5rem;
    background: transparent;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-white-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-footer-mv {
    border: 1px solid var(--border-dark);
    color: var(--blue-glow);
    font-size: .8125rem;
    padding: .45rem 1rem;
    border-radius: .5rem;
    text-decoration: none;
}
.btn-footer-mv:hover { background: var(--card-dark); color: var(--blue-glow); }

/* ═══ SECTIONS ═══ */
.section-white { background: var(--white); padding: 6rem 0; }
.section-light { background: var(--light-bg); padding: 6rem 0; }
.section-dark {
    background: linear-gradient(160deg, #0B1A2F 0%, #0F2D56 60%, #0B1A2F 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.mv-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27,79,216,.08) 0%, transparent 70%);
    pointer-events: none;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-label {
    color: var(--blue);
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    display: block;
    margin-bottom: .75rem;
}
.section-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--text-primary);
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-top: .75rem;
}

/* ═══ HERO ═══ */
.hero-section {
    padding-top: 120px;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
}
.hero-badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-weight: 800;
    font-size: 3.25rem;
    line-height: 1.1;
    color: var(--text-primary);
}
.hero-desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 480px;
    margin-top: 1rem;
    line-height: 1.7;
}
.hero-slogan {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0;
}
.hero-slogan span { font-weight: 600; font-size: 1.0625rem; color: #374151; }
.slogan-dot { color: var(--blue); font-size: 1.25rem; margin: 0 .75rem; }
.hero-buttons { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 2rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; font-size: .8125rem; color: #9CA3AF; }
.hero-trust i { color: var(--blue); margin-right: .25rem; }
.trust-sep { color: #D1D5DB; margin: 0 .25rem; }

/* Hero visual */
/* ═══ Hero Network Graph ═══ */
.hero-network {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#graphCanvas {
    width: 100%;
    max-width: 500px;
    height: auto;
    cursor: grab;
    border-radius: 1rem;
}
#graphCanvas:active { cursor: grabbing; }

.float-label { font-size: .75rem; color: rgba(255,255,255,.7); display: block; }
.float-value { font-size: .9375rem; font-weight: 700; color: var(--white); }
.float-value i { color: #10B981; }
@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.pulse-ring {
    animation: pulseRing 2s ease-in-out infinite;
    transform-origin: center;
}
@keyframes pulseRing {
    0%,100% { opacity:.5; r: 12; }
    50% { opacity:.15; r: 18; }
}

/* ═══ FEATURE CARDS (About) ═══ */
.feature-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 24px rgba(0,0,0,.06);
    border-top: 4px solid transparent;
    transition: all var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-top-color: var(--blue);
}
.feature-icon {
    width: 56px; height: 56px;
    background: var(--blue-light);
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--blue);
}
.feature-card h3 { font-weight: 600; font-size: 1.25rem; margin-top: 1.25rem; }
.feature-divider { width: 36px; height: 2px; background: var(--blue); margin: 1rem 0; }
.feature-card p { color: var(--text-muted); font-size: .9375rem; line-height: 1.7; margin: 0; }

/* ═══ STATS ═══ */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 2.5rem 0;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 24px rgba(0,0,0,.05);
}
.stat-item { text-align: center; padding: 1rem 2.5rem; }
.stat-num {
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--blue);
    line-height: 1;
}
.stat-plus { font-weight: 800; font-size: 2.75rem; color: var(--blue); }
.stat-label { display: block; font-size: .875rem; color: var(--text-muted); margin-top: .35rem; }
.stat-divider { width: 1px; height: 50px; background: #E5E7EB; }

/* ═══ MACROVISION ═══ */
.mv-main-title {
    font-weight: 800;
    font-size: 3.375rem;
    background: linear-gradient(135deg, #FFFFFF, #93C5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mv-subtitle { color: #E2E8F0; font-size: 1.375rem; font-weight: 500; }

/* MV Cards */
.mv-card {
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mv-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-glow);
    background: #1A2D4A;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: transparent;
    transition: background var(--transition);
}
.mv-card:hover::before { background: var(--blue); }
.mv-card-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.mv-card-icon {
    width: 40px; height: 40px;
    border-radius: .5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem;
}
.mv-card-name { font-weight: 600; font-size: .8125rem; }
.mv-card h3 { font-weight: 600; font-size: 1.125rem; color: var(--white); margin-bottom: .5rem; }
.mv-card p { font-size: .8125rem; color: var(--text-dark-muted); line-height: 1.6; margin-bottom: 1rem; }
.mv-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.mv-tags span {
    background: rgba(255,255,255,.06);
    color: var(--text-dark-muted);
    font-size: .6875rem;
    padding: .25rem .6rem;
    border-radius: 50px;
}
.mv-api-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(6,182,212,.15);
    border: 1px solid #06B6D4;
    color: #06B6D4;
    font-size: .625rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: .2rem .5rem;
    border-radius: .25rem;
}
.mv-card-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    border-color: #3B82F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mv-cta-icon { font-size: 2rem; color: var(--white); margin-bottom: 1rem; }

/* ═══ SERVICE CARDS ═══ */
.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 2px 24px rgba(0,0,0,.06);
    border-top: 4px solid transparent;
    transition: all var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-top-color: var(--blue);
}
.service-watermark {
    position: absolute;
    top: .5rem;
    right: 1.5rem;
    font-weight: 800;
    font-size: 5rem;
    color: #F1F5F9;
    z-index: 0;
    line-height: 1;
}
.service-custom-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--blue), #06B6D4);
    color: var(--white);
    font-size: .6875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 50px;
    z-index: 2;
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--blue-light);
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--blue);
    position: relative;
    z-index: 1;
}
.service-card h3 {
    font-weight: 700;
    font-size: 1.375rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}
.service-divider { width: 40px; height: 2px; background: var(--blue); margin: 1rem 0; }
.service-card > p {
    color: var(--text-muted);
    font-size: .9375rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}
.service-checks {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    position: relative;
    z-index: 1;
}
.service-checks li {
    font-size: .875rem;
    color: #374151;
    padding: .3rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.service-checks i { color: var(--blue); font-size: .875rem; }
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}
.service-tags span {
    background: var(--blue-light);
    color: #1D4ED8;
    font-size: .75rem;
    padding: .3rem .75rem;
    border-radius: 50px;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 1.25rem;
    padding: 3rem;
    color: var(--white);
}
.services-cta h3 { font-weight: 700; font-size: 1.625rem; color: var(--white); }
.services-cta p { color: #CBD5E1; margin: .5rem 0 0; }

/* ═══ PUBLICATIONS ═══ */
.pub-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: .75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 12px rgba(0,0,0,.05);
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all var(--transition);
}
.pub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.pub-badge {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 50px;
    align-self: flex-start;
}
.pub-badge-news { background: var(--blue-light); color: #1D4ED8; }
.pub-badge-press { background: #F0FDF4; color: #15803D; }
.pub-date { font-size: .8125rem; color: var(--text-dark-muted); margin-top: .5rem; }
.pub-title {
    font-weight: 600;
    font-size: .9375rem;
    color: var(--text-primary);
    margin-top: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pub-card:hover .pub-title { color: var(--blue); }
.pub-excerpt {
    font-size: .8125rem;
    color: var(--text-muted);
    margin-top: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}
.pub-source { font-size: .75rem; color: var(--text-dark-muted); margin-top: .5rem; }
.pub-read {
    font-size: .875rem;
    font-weight: 500;
    color: var(--blue);
    margin-top: 1rem;
    transition: transform var(--transition);
}
.pub-card:hover .pub-read { transform: translateX(4px); }

/* ═══ CONTACTS ═══ */
.contact-legal {
    font-size: .8125rem;
    color: #475569;
    margin: 0;
    padding-top: .75rem;
    border-top: 1px solid var(--border-dark);
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-dark);
}
.contact-row i { font-size: 1.25rem; color: var(--blue-glow); }
.contact-main { display: block; font-size: .9375rem; color: var(--white); font-weight: 500; }
.contact-sub { display: block; font-size: .8125rem; color: var(--text-dark-muted); }
.contact-socials { display: flex; gap: .5rem; }
.contact-socials a {
    width: 40px; height: 40px;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark-muted);
    text-decoration: none;
    transition: all var(--transition);
}
.contact-socials a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.contact-mv-promo {
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: .75rem;
    padding: 1.25rem;
    transition: border-color var(--transition);
}
.contact-mv-promo:hover { border-color: #3B82F6; }
.promo-title { font-weight: 600; font-size: .9375rem; color: var(--blue-glow); }
.contact-mv-promo p { font-size: .8125rem; color: var(--text-dark-muted); margin: .25rem 0 0; }
.contact-mv-promo a { font-size: .8125rem; color: var(--blue-glow); text-decoration: none; }
.contact-mv-promo a:hover { text-decoration: underline; }

.contact-form-card {
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 1rem;
    padding: 2.5rem;
}
.contact-form-card h3 { font-weight: 600; font-size: 1.125rem; color: var(--white); margin-bottom: 1.5rem; }
.dark-input {
    background: #0F1E35 !important;
    border: 1px solid var(--border-dark) !important;
    color: var(--white) !important;
    padding: .75rem 1rem;
    border-radius: .5rem;
    font-size: .9375rem;
}
.dark-input::placeholder { color: #475569 !important; }
.dark-input:focus {
    border-color: #3B82F6 !important;
    box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;
}
.form-note { text-align: center; font-size: .75rem; color: #475569; margin-top: .75rem; }

/* ═══ FOOTER ═══ */
.site-footer {
    background: #060F1C;
    border-top: 1px solid #1E2D45;
    padding: 3rem 0;
    color: var(--text-dark-muted);
}
.footer-tagline { color: var(--text-dark-muted); font-size: .875rem; }
.footer-copy { color: #475569; font-size: .8125rem; margin-top: .5rem; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a { color: var(--text-dark-muted); text-decoration: none; font-size: .875rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--blue-glow); }
.footer-mv-title { font-weight: 600; font-size: .9375rem; color: var(--blue-glow); }
.footer-mv-desc { font-size: .8125rem; color: var(--text-dark-muted); }

/* ═══ SECTION REVEAL ANIMATION ═══ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ MACROVISION DEVICE MOCKUP ═══ */
.mv-mockup {
    max-width: 960px;
    margin: 0 auto;
    animation: mvFloat 7s ease-in-out infinite;
}
@keyframes mvFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.mv-device {
    background: rgba(22,37,64,.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.mv-device-bar {
    height: 36px;
    background: #0A1420;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 12px;
}
.mv-dots {
    display: flex;
    gap: 6px;
}
.mv-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mv-address-bar {
    flex: 1;
    text-align: center;
    background: var(--card-dark);
    color: var(--text-dark-muted);
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 6px;
    max-width: 200px;
    margin: 0 auto;
}
.mv-bar-icons {
    display: flex;
    gap: 8px;
    color: #475569;
    font-size: 11px;
}
.mv-screen {
    display: flex;
    background: #0F1E35;
    min-height: 340px;
}
/* Sidebar */
.mv-sidebar {
    width: 170px;
    background: #060F1C;
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    flex-shrink: 0;
}
.mv-sidebar-logo {
    color: white;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 14px 12px;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 8px;
}
.mv-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 8px;
    flex: 1;
}
.mv-sidebar-nav a {
    color: var(--text-dark-muted);
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
}
.mv-sidebar-nav a.active {
    background: rgba(27,79,216,.12);
    color: white;
    border-left: 3px solid var(--blue);
}
.mv-sidebar-footer {
    color: #475569;
    font-size: 9px;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--border-dark);
    margin: 0 8px;
}
/* Main area */
.mv-main {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}
.mv-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mv-topbar-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
}
.mv-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark-muted);
    font-size: 13px;
}
.mv-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #06B6D4);
}
/* KPI */
.mv-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.mv-kpi {
    background: var(--card-dark);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mv-kpi-label {
    font-size: 9px;
    color: var(--text-dark-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.mv-kpi-value {
    font-weight: 700;
    font-size: 16px;
    color: white;
}
.mv-kpi-value.green { color: #10B981; }
.mv-kpi-value.amber { color: #F59E0B; }
.mv-kpi-value.blue { color: #3B82F6; }
.mv-kpi-value i { font-size: 14px; }
/* Charts */
.mv-charts-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
    flex: 1;
}
.mv-chart-area, .mv-chart-table {
    background: var(--card-dark);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.mv-chart-title {
    font-size: 10px;
    color: var(--text-dark-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.mv-mini-chart {
    width: 100%;
    flex: 1;
}
.mv-table-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.mv-trow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 4px;
    font-size: 10px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.mv-trow .green { color: #10B981; font-weight: 600; }
.mv-trow .red { color: #EF4444; font-weight: 600; }

/* ═══ MV Module List ═══ */
.mv-module-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mv-module-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border-dark);
    transition: padding-left var(--transition);
}
.mv-module-item:last-child { border-bottom: none; }
.mv-module-item:hover { padding-left: 6px; }
.mv-module-icon {
    width: 36px;
    height: 36px;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.mv-module-name {
    display: block;
    font-weight: 600;
    font-size: .875rem;
    color: var(--white);
}
.mv-module-desc {
    display: block;
    font-size: .8125rem;
    color: var(--text-dark-muted);
}

/* ═══ Services — Horizontal Rows ═══ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.svc-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    transition: all var(--transition);
}

.svc-row:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.svc-row-num {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--blue);
    opacity: .1;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
}
.svc-row:hover .svc-row-num {
    opacity: .2;
}
.svc-row-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: all var(--transition);
}
.svc-row:hover .svc-row-icon {
    background: var(--blue);
    color: var(--white);
}
.svc-row-body {
    flex: 1;
    min-width: 0;
}
.svc-row-body h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}
.svc-row-body p {
    font-size: .9375rem;
    color: var(--text-muted);
    margin: .5rem 0 0;
    line-height: 1.6;
}
.svc-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    flex-shrink: 0;
}
.svc-row-tags span {
    background: var(--blue-light);
    color: #1D4ED8;
    font-size: .6875rem;
    font-weight: 500;
    padding: .25rem .6rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* ═══ Partner Section ═══ */
.partner-banner {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    border: 1px solid #E2E8F0;
    border-radius: 1.25rem;
    padding: 3.5rem;
}
.partner-label {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #21A038;
}
.partner-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: .75rem;
}
.partner-x {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
}
.partner-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}
.partner-title-lg {
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--text-primary);
    line-height: 1.15;
}
.partner-desc {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.partner-desc-lg {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.partner-preview {
    display: block;
    text-decoration: none;
    transition: transform var(--transition);
}
.partner-preview:hover {
    transform: translateY(-4px);
}
.partner-browser {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.1);
    border: 1px solid #E2E8F0;
}
.partner-browser-bar {
    height: 32px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
}
.partner-dots {
    display: flex;
    gap: 5px;
}
.partner-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
}
.partner-url {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    background: var(--white);
    padding: 2px 10px;
    border-radius: 4px;
    max-width: 200px;
    margin: 0 auto;
}
.partner-screenshot,
.partner-video {
    width: 100%;
    display: block;
}
.partner-video {
    background: #0B1A2F;
}

/* Responsive mockup */
@media (max-width: 768px) {
    .mv-sidebar { display: none; }
    .mv-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .mv-charts-row { grid-template-columns: 1fr; }
    .mv-device { border-radius: 12px; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    .hero-title { font-size: 2.25rem; }
    .mv-main-title { font-size: 2.5rem; }
    .stat-item { padding: 1rem 1.25rem; }
    .stat-num, .stat-plus { font-size: 2rem; }
    .stat-divider { display: none; }
    .stats-row { gap: 0; }
    .services-cta { padding: 2rem; }
    .svc-grid { grid-template-columns: 1fr; }
    .svc-row { flex-wrap: wrap; }
    .svc-row-tags { width: 100%; margin-top: .5rem; padding-left: calc(36px + 48px + 2.5rem); }
}
@media (max-width: 575px) {
    .hero-section { padding-top: 90px; padding-bottom: 3rem; }
    .hero-title { font-size: 1.85rem; }
    .section-white, .section-light, .section-dark { padding: 3.5rem 0; }
    .service-card { padding: 1.5rem; }
    .contact-form-card { padding: 1.5rem; }
    .svc-row-num { display: none; }
    .svc-row-tags { padding-left: calc(48px + 1.25rem); }
    .partner-banner { padding: 2rem; }
}
