:root {
    --primary-color: #1a1a1a;
    --accent-color: #008006;
    --text-muted: #666;
    --bg-light: #fcfcfc;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--primary-color); margin: 0; }
.v-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

/* HERO */
.v-hero { position: relative; height: 65vh; display: flex; align-items: center; background: #000; overflow: hidden; }
.v-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.5; z-index: 1; }
.v-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.v-hero-content { position: relative; z-index: 2; max-width: 700px; color: #fff; }
.v-badge { display: inline-block; padding: 6px 16px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.v-hero h1 { font-size: 3.5rem; font-weight: 800; margin: 0; }
.v-hero h1 span { color: var(--accent-color); }
.v-hero p { font-size: 1.2rem; margin: 20px 0 30px; opacity: 0.9; }
.v-btn-primary { display: inline-block; padding: 16px 35px; background: var(--accent-color); color: #fff !important; text-decoration: none; border-radius: 50px; font-weight: 700; transition: var(--transition); }

/* PARTNERS */
.v-partners { padding: 50px 0; background: var(--bg-light); text-align: center; border-bottom: 1px solid #eee; }
.v-partner-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; margin-top: 30px; }
.v-partner-logos img { height: 45px; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.v-partner-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* AGENDA */
.v-agenda-section { padding: 100px 0; background: #fff; }
.v-agenda-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }
.v-agenda-visual img { width: 100%; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.v-agenda-text h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 25px; }
.v-agenda-text h2 span { color: var(--accent-color); }
.v-features { list-style: none; padding: 0; }
.v-features li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.v-features i { color: var(--accent-color); }

/* HIOFFICE */
.v-hioffice { padding: 100px 0; background: #fcfcfc; }
.v-hioffice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.v-hioffice-text h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 25px; }
.v-hioffice-text h2 span { color: var(--accent-color); }
.v-sol-label { font-size: 11px; font-weight: 800; color: var(--accent-color); text-transform: uppercase; margin-bottom: 15px; display: block; }
.v-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; list-style: none; padding: 0; margin-top: 30px; }
.v-features-grid li { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.v-features-grid i { color: var(--accent-color); }
.v-hioffice-visual img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

/* STOCKS */
.v-stocks-banner { background: var(--primary-color); color: #fff; padding: 80px 0; text-align: center; }
.v-icon-large { font-size: 40px; color: var(--accent-color); margin-bottom: 20px; }
.v-stocks-banner h3 { font-size: 2.2rem; margin-bottom: 15px; }
.v-stocks-banner p { opacity: 0.8; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .v-agenda-grid, .v-hioffice-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .v-features, .v-features-grid { text-align: left; max-width: 400px; margin: 0 auto; }
}