/* ============================================================
   vision-mission.css
   PT. Rayard Deli Indonesia - Vision & Mission Page
   Premium Corporate Storytelling
   ============================================================ */

/* ---------- Variables ---------- */
:root {
    --primary: #800000;
    --primary-dark: #5A0000;
    --primary-light: #a33434;
    --secondary: #13294B;
    --secondary-dark: #0F2343;
    --secondary-light: #1f446e;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #777777;
    --border-light: #E8E8E8;
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.07);
    --shadow-hover: 0 16px 48px rgba(19,41,75,0.10);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Global Smooth Scroll ---------- */
html {
    scroll-behavior: smooth;
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }

/* ---------- Section Label ---------- */
.vm-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary);
}

/* ---------- SECTION 1 — HERO ---------- */
.vm-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: var(--secondary);
}

.vm-hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    will-change: transform;
}

.vm-hero:hover .vm-hero-background {
    transform: scale(1);
}

.vm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(19,41,75,0.60) 0%,
        rgba(128,0,0,0.30) 100%
    );
    z-index: 1;
}

/* Glass Reflection */
.vm-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 30% 20%,
        rgba(255,255,255,0.04) 0%,
        transparent 60%
    );
    z-index: 1;
    pointer-events: none;
    animation: glassReflection 12s ease-in-out infinite alternate;
}

@keyframes glassReflection {
    0% { transform: translate(-10%, -10%) rotate(-5deg); }
    100% { transform: translate(10%, 10%) rotate(5deg); }
}

.vm-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: scale(0.97) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.vm-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.vm-hero-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 0.4em 1.4em;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { border-color: rgba(255,255,255,0.12); }
    50% { border-color: rgba(255,255,255,0.30); }
}

.vm-hero-title {
    font-size: clamp(3rem, 8vw, 5.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.30);
}

.vm-hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.vm-hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    border-radius: 4px;
    opacity: 0.4;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes underlineReveal {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.vm-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.4);
}

.vm-hero-scroll {
    margin-top: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.vm-hero-scroll-line {
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    margin-top: 0.6em;
    animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); opacity: 0; transform-origin: top; }
    40% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* Hero Floating Accents */
.vm-hero-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    z-index: 1;
    pointer-events: none;
    animation: floatAccent 10s ease-in-out infinite alternate;
}

@keyframes floatAccent {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(5deg); }
}

.vm-hero-accent--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    background: rgba(128,0,0,0.08);
    animation-duration: 12s;
}

.vm-hero-accent--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    background: rgba(19,41,75,0.10);
    animation-duration: 8s;
    animation-delay: 1s;
}

/* ---------- SECTION 2 — INTRODUCTION ---------- */
.vm-intro {
    padding: 100px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.vm-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.vm-intro-left {
    animation: slideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.vm-intro-heading {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vm-intro-heading .highlight {
    color: var(--primary);
}

.vm-intro-right {
    animation: slideRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes slideRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.vm-intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.vm-intro-text:last-of-type {
    margin-bottom: 0;
}

.vm-intro-divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    margin-top: 24px;
}

/* ---------- SECTION 3 — VISION ---------- */
.vm-vision {
    padding: 100px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.vm-vision-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 50px;
    align-items: start;
}

.vm-vision-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.10;
    line-height: 1;
    letter-spacing: -0.05em;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.active .vm-vision-number {
    opacity: 0.12;
}

.vm-vision-content {
    position: relative;
}

.vm-vision-icon {
    display: inline-flex;
    margin-bottom: 16px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.vm-vision-icon svg {
    stroke: var(--primary);
}

.vm-vision-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.vm-vision-title .highlight {
    color: var(--primary);
}

.vm-vision-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    max-width: 700px;
    margin-bottom: 24px;
}

.vm-vision-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vm-vision-highlight-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.vm-vision-highlight-box span {
    font-size: 1.5rem;
    color: var(--primary);
}

.vm-vision-highlight-box p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ---------- SECTION 4 — MISSION (Timeline) ---------- */
.vm-mission {
    padding: 100px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.vm-mission-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.vm-mission-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.vm-mission-title .highlight {
    color: var(--primary);
}

.vm-mission-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.vm-mission-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.vm-mission-timeline::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    z-index: 0;
}

.vm-mission-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.vm-mission-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    padding-top: 4px;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.vm-mission-item:hover .vm-mission-number {
    opacity: 0.6;
    transform: scale(1.05);
}

.vm-mission-content {
    background: var(--bg-white);
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.vm-mission-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -12px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--border-light);
    transition: all 0.3s ease;
}

.vm-mission-item:hover .vm-mission-content::before {
    background: var(--primary-dark);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.vm-mission-item:hover .vm-mission-content {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.vm-mission-icon {
    display: inline-block;
    margin-bottom: 8px;
}

.vm-mission-icon svg {
    stroke: var(--primary);
}

.vm-mission-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.vm-mission-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.vm-mission-line {
    display: none;
}

/* ---------- SECTION 5 — HOW WE WORK ---------- */
.vm-how-we-work {
    padding: 100px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.vm-how-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.vm-how-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vm-how-title .highlight {
    color: var(--primary);
}

.vm-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vm-how-card {
    background: var(--bg-white);
    padding: 35px 28px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vm-how-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.vm-how-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 16px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vm-how-card:hover .vm-how-icon {
    transform: scale(1.1);
}

.vm-how-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.vm-how-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* ---------- SECTION 6 — JOURNEY (Horizontal Timeline) ---------- */
.vm-journey {
    padding: 100px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.vm-journey-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.vm-journey-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vm-journey-title .highlight {
    color: var(--primary);
}

.vm-journey-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 30px;
}

.vm-journey-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.vm-journey-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 120px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active .vm-journey-node:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal.active .vm-journey-node:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal.active .vm-journey-node:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal.active .vm-journey-node:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal.active .vm-journey-node:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

.vm-journey-dot {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--border-light);
    margin-bottom: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vm-journey-node:hover .vm-journey-dot {
    background: var(--primary-dark);
    box-shadow: 0 0 0 4px var(--primary-light);
    transform: scale(1.15);
}

.vm-journey-content {
    text-align: center;
    padding: 0 8px;
}

.vm-journey-step {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.vm-journey-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 4px;
}

.vm-journey-content p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.vm-journey-connector {
    flex: 0 0 30px;
    height: 2px;
    background: var(--border-light);
    align-self: center;
    margin-top: -18px;
    min-width: 20px;
}

/* ---------- SECTION 7 — QUOTE ---------- */
.vm-quote {
    padding: 120px 0;
    background: linear-gradient(145deg, #0F2343 0%, #13294B 40%, #0F2343 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vm-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(128,0,0,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.vm-quote::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.vm-quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.vm-quote-mark {
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.3;
    display: block;
    line-height: 0.5;
    margin-bottom: 20px;
}

.vm-quote-text {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    font-style: italic;
    margin: 0 0 24px;
    quotes: none;
}

.vm-quote-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 4px;
}

.vm-quote-author {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
}

.vm-quote-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    pointer-events: none;
    animation: floatAccent 10s ease-in-out infinite alternate;
}

.vm-quote-accent--1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -120px;
    background: rgba(128,0,0,0.06);
    animation-duration: 14s;
}

.vm-quote-accent--2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    background: rgba(19,41,75,0.08);
    animation-duration: 10s;
    animation-delay: 1s;
}

/* ---------- SECTION 8 — CTA ---------- */
.vm-cta {
    padding: 90px 20px;
    background: var(--bg-white);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.vm-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.vm-cta-title .highlight {
    color: var(--primary);
}

.vm-cta-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vm-cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vm-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.vm-cta-button:hover::before {
    left: 100%;
}

.vm-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(128,0,0,0.30);
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .vm-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vm-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vm-vision-number {
        font-size: 3rem;
    }
    .vm-how-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .vm-mission-timeline {
        max-width: 100%;
        padding: 0 20px;
    }
    .vm-journey-timeline {
        padding: 20px 20px 30px;
        justify-content: flex-start;
        gap: 10px;
    }
    .vm-journey-connector {
        flex: 0 0 20px;
        min-width: 20px;
    }
    .vm-journey-node {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .vm-hero {
        min-height: 60vh;
        padding: 0 16px;
    }
    .vm-hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    .vm-hero-subtitle {
        font-size: 0.95rem;
    }
    .vm-hero-badge {
        font-size: 10px;
        letter-spacing: 3px;
        padding: 0.3em 1em;
    }

    .vm-intro {
        padding: 60px 0;
    }
    .vm-intro-heading {
        font-size: 2rem;
    }
    .vm-intro-text {
        font-size: 0.95rem;
    }

    .vm-vision {
        padding: 60px 0;
    }
    .vm-vision-title {
        font-size: 2rem;
    }
    .vm-vision-text {
        font-size: 0.95rem;
    }

    .vm-mission {
        padding: 60px 0;
    }
    .vm-mission-title {
        font-size: 2rem;
    }
    .vm-mission-timeline {
        gap: 30px;
    }
    .vm-mission-timeline::before {
        left: 24px;
    }
    .vm-mission-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
    .vm-mission-number {
        font-size: 1.4rem;
        text-align: left;
    }
    .vm-mission-content {
        padding: 18px 20px;
    }
    .vm-mission-content h3 {
        font-size: 1.05rem;
    }
    .vm-mission-content p {
        font-size: 0.9rem;
    }
    .vm-mission-content::before {
        top: 18px;
        left: -10px;
        width: 10px;
        height: 10px;
    }

    .vm-how-we-work {
        padding: 60px 0;
    }
    .vm-how-title {
        font-size: 2rem;
    }
    .vm-how-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .vm-how-card {
        padding: 24px 18px;
    }
    .vm-how-card h3 {
        font-size: 1.05rem;
    }

    .vm-journey {
        padding: 60px 0;
    }
    .vm-journey-title {
        font-size: 2rem;
    }
    .vm-journey-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px 10px;
        gap: 16px;
    }
    .vm-journey-timeline::before {
        top: 20px;
        left: 8px;
        right: auto;
        bottom: 20px;
        width: 2px;
        height: auto;
    }
    .vm-journey-connector {
        display: none;
    }
    .vm-journey-node {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        padding-left: 30px;
        position: relative;
    }
    .vm-journey-dot {
        position: absolute;
        left: 0;
        top: 4px;
        margin-bottom: 0;
        width: 14px;
        height: 14px;
    }
    .vm-journey-content {
        text-align: left;
        padding: 0;
    }
    .vm-journey-step {
        display: inline-block;
        margin-right: 8px;
        font-size: 0.65rem;
    }
    .vm-journey-content h4 {
        font-size: 0.9rem;
        display: inline-block;
    }
    .vm-journey-content p {
        font-size: 0.75rem;
        display: block;
        margin-top: 2px;
    }

    .vm-quote {
        padding: 80px 20px;
    }
    .vm-quote-text {
        font-size: 1.6rem;
    }
    .vm-quote-mark {
        font-size: 4rem;
    }

    .vm-cta {
        padding: 60px 20px;
    }
    .vm-cta-title {
        font-size: 2rem;
    }
    .vm-cta-text {
        font-size: 0.95rem;
    }
    .vm-cta-button {
        padding: 12px 32px;
        font-size: 0.95rem;
    }

    .vm-hero-accent--1 {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -40px;
    }
    .vm-hero-accent--2 {
        width: 100px;
        height: 100px;
        bottom: -30px;
        left: -30px;
    }
    .vm-quote-accent--1 {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -60px;
    }
    .vm-quote-accent--2 {
        width: 120px;
        height: 120px;
        bottom: -40px;
        left: -40px;
    }
    .vm-hero-highlight::after{
        display: none;
}

@media (max-width: 480px) {
    .vm-hero-title {
        font-size: 1.8rem;
    }
    .vm-hero-subtitle {
        font-size: 0.85rem;
    }
    .vm-intro-heading {
        font-size: 1.6rem;
    }
    .vm-vision-title {
        font-size: 1.6rem;
    }
    .vm-vision-highlight-box {
        flex-direction: column;
        padding: 16px 20px;
    }
    .vm-mission-title {
        font-size: 1.6rem;
    }
    .vm-mission-item {
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }
    .vm-mission-number {
        font-size: 1.2rem;
    }
    .vm-mission-content {
        padding: 14px 16px;
    }
    .vm-mission-content h3 {
        font-size: 0.95rem;
    }
    .vm-mission-content p {
        font-size: 0.85rem;
    }
    .vm-how-title {
        font-size: 1.6rem;
    }
    .vm-how-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    .vm-journey-title {
        font-size: 1.6rem;
    }
    .vm-quote-text {
        font-size: 1.3rem;
    }
    .vm-cta-title {
        font-size: 1.6rem;
    }
    .vm-cta-button {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}