:root {
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --primary: #3b82f6;
    /* --accent: #8b5cf6; REMOVED VIOLET */
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
}

body { background: var(--bg-main); color: var(--text-white); font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* --- HERO SECTION --- */
.vsmm-hero {
    position: relative; min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; padding-top: 80px;
}
.hero-bg {
    position: absolute; inset: 0; 
    /* CHANGED: Deep Blue Gradient instead of Purple */
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #020617 100%);
    z-index: 0;
}
/* Pulse Animation Background Element */
.hero-bg::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    /* CHANGED: Using Primary Blue */
    background: repeating-linear-gradient(transparent, transparent 50px, rgba(59, 130, 246, 0.05) 50px, rgba(59, 130, 246, 0.05) 51px);
    animation: rotateBg 60s linear infinite; opacity: 0.5;
}
@keyframes rotateBg { 100% { transform: rotate(360deg); } }

.relative-z { position: relative; z-index: 2; width: 100%; }

.pulse-tag {
    /* CHANGED: Blue Theme */
    display: inline-block; padding: 8px 16px; background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--primary); color: #93c5fd; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero-sub { font-size: 1.15rem; color: #cbd5e1; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }

.text-gradient {
    /* CHANGED: Blue to Cyan Gradient */
    background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.btn-group-hero { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

.glow-effect {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); 
    border: none; background: linear-gradient(90deg, #3b82f6, #2563eb); /* Pure Blue Gradient */
}
.glow-effect:hover { box-shadow: 0 0 30px rgba(59, 130, 246, 0.8); transform: translateY(-2px); }

.btn-outline-white { border: 2px solid white; color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; transition: 0.3s; display: inline-block;}
.btn-outline-white:hover { background: white; color: var(--bg-main); }


/* --- WHAT IS VSMM --- */
.section { padding: 80px 0; }
.split-layout { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.text-col { flex: 1; min-width: 320px; }
.visual-col { flex: 1; min-width: 320px; display: flex; align-items: center; justify-content: center; gap: 10px; }

.sub-tag { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.text-col h2 { font-size: 2.5rem; margin-bottom: 20px; }
.lead-text { font-size: 1.1rem; color: white; margin-bottom: 15px; }
.text-col p { color: var(--text-muted); line-height: 1.7; }

/* Visual Formula */
.concept-card { 
    background: var(--bg-card); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.05); width: 100px;
}
.concept-icon { font-size: 2rem; color: var(--primary); margin-bottom: 10px; } /* Accent -> Primary */
.concept-card h3 { font-size: 0.8rem; color: white; }
.concept-card.result { border-color: var(--primary); background: rgba(59, 130, 246, 0.1); } /* Accent -> Primary */
.plus-sign, .equals-sign { font-size: 1.5rem; color: var(--text-muted); font-weight: bold; }


/* --- BENEFITS --- */
.bg-darker { background: #0b1120; }
.sec-header.centered { text-align: center; margin-bottom: 60px; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.benefit-card {
    background: var(--bg-card); padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s; position: relative; overflow: hidden;
}
.benefit-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.benefit-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; }
.benefit-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: white; }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); }


/* --- PROCESS MAP --- */
.process-roadmap { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; margin-top: 50px; 
}
.roadmap-item {
    display: flex; gap: 20px; background: rgba(30, 41, 59, 0.5); padding: 25px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.rm-number {
    font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.05); line-height: 1;
}
.rm-content h3 { font-size: 1.2rem; color: white; margin-bottom: 5px; }
.rm-content p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }


/* --- DELIVERABLES --- */
.del-box {
    background: var(--bg-card); padding: 50px; border-radius: 20px; border: 1px solid var(--primary); /* Accent -> Primary */
    max-width: 800px; margin: 0 auto; box-shadow: 0 0 40px rgba(59, 130, 246, 0.1); /* Accent -> Primary */
}
.del-header h2 { text-align: center; margin-bottom: 40px; color: white; }
.del-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.del-list li { color: #e2e8f0; display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.del-list li i { color: #10b981; }


/* --- AUDIENCE --- */
.audience-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; }
.aud-pill {
    padding: 10px 25px; background: rgba(255,255,255,0.05); border-radius: 50px; color: white;
    font-weight: 500; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s;
}
.aud-pill:hover { background: var(--primary); color: white; transform: scale(1.05); }


/* --- CASE STUDY BANNER --- */
.case-banner {
    /* CHANGED: Deep Blue Gradient */
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border-radius: 20px; padding: 50px; display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cb-content { flex: 1; min-width: 300px; }
.cb-tag { background: #facc15; color: black; padding: 5px 12px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.cb-content h2 { margin-top: 15px; font-size: 2rem; margin-bottom: 20px; color: white; }
.cb-stats { list-style: none; padding: 0; display: flex; gap: 30px; }
.cb-stats li { color: white; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.cb-stats li i { color: #4ade80; }

/* Simple Bar Graph CSS */
.graph-placeholder { display: flex; align-items: flex-end; gap: 10px; height: 100px; }
.bar { width: 20px; background: rgba(255,255,255,0.2); border-radius: 4px 4px 0 0; }
.bar-1 { height: 30%; } .bar-2 { height: 50%; } .bar-3 { height: 75%; } .bar-4 { height: 100%; background: #4ade80; }


/* --- FAQ --- */
.pricing-banner { margin-bottom: 60px; padding: 40px; border: 1px dashed rgba(255,255,255,0.2); border-radius: 12px; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-btn { 
    width: 100%; text-align: left; padding: 20px 0; background: transparent; border: none; 
    color: white; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; 
}
.faq-answer { display: none; padding-bottom: 20px; color: var(--text-muted); }


/* --- CTA --- */
.cta-strip { padding: 80px 0; background: linear-gradient(180deg, var(--bg-main) 0%, #1e293b 100%); }

@media (max-width: 768px) {
    .vsmm-hero h1 { font-size: 2.2rem; }
    .split-layout { flex-direction: column; }
    .del-list { grid-template-columns: 1fr; }
    .case-banner { padding: 30px; }
}