/* ==========================================================================
   Vireo Loadworks — Marketing Stylesheet
   Modern minimalism + fintech trust
   Scoped to body.vireo-marketing so the authenticated app is unaffected.
   ========================================================================== */

body.vireo-marketing {
    /* Design tokens */
    --brand-navy: #0B3C91;
    --brand-navy-deep: #082B6B;
    --brand-green: #2DB34A;
    --brand-green-deep: #1E8F39;
    --brand-sky: #3CA5E0;
    --brand-mint: #E8F8EC;
    --brand-ice: #EAF3FD;

    --ink: #0F172A;
    --ink-soft: #1E293B;
    --muted: #64748B;
    --muted-2: #94A3B8;
    --line: #E2E8F0;
    --line-soft: #EEF2F7;

    --surface: #FFFFFF;
    --surface-alt: #F7F9FC;
    --surface-dark: #0B1220;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
    --shadow-md: 0 4px 16px rgba(11,60,145,.08), 0 2px 6px rgba(11,60,145,.05);
    --shadow-lg: 0 18px 40px -12px rgba(11,60,145,.25), 0 6px 18px rgba(11,60,145,.12);

    --ease: cubic-bezier(.2,.8,.2,1);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

body.vireo-marketing *,
body.vireo-marketing *::before,
body.vireo-marketing *::after { box-sizing: border-box; }

body.vireo-marketing img { max-width: 100%; height: auto; display: block; }

body.vireo-marketing a {
    color: var(--brand-navy);
    text-decoration: none;
    transition: color .2s var(--ease);
}
body.vireo-marketing a:hover { color: var(--brand-sky); }

body.vireo-marketing h1, body.vireo-marketing h2,
body.vireo-marketing h3, body.vireo-marketing h4,
body.vireo-marketing h5, body.vireo-marketing h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 .5em;
    font-weight: 700;
}
body.vireo-marketing h1 { font-size: clamp(2.25rem, 4vw + .5rem, 3.75rem); font-weight: 800; letter-spacing: -.03em; }
body.vireo-marketing h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); }
body.vireo-marketing h3 { font-size: 1.5rem; }
body.vireo-marketing h4 { font-size: 1.125rem; }
body.vireo-marketing p  { margin: 0 0 1em; color: var(--ink-soft); }

body.vireo-marketing ::selection { background: var(--brand-navy); color: #fff; }

/* Focus */
body.vireo-marketing :focus-visible {
    outline: 3px solid var(--brand-sky);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ------- Container ------- */
.vm-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 1024px) { .vm-container { padding: 0 32px; } }

/* ------- Buttons ------- */
.vm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}
.vm-btn:active { transform: translateY(1px); }

.vm-btn-primary {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-deep) 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(45,179,74,.35);
}
.vm-btn-primary:hover { color: #fff; box-shadow: 0 10px 24px rgba(45,179,74,.45); transform: translateY(-1px); }

.vm-btn-secondary {
    background: #fff;
    color: var(--brand-navy);
    border-color: var(--line);
}
.vm-btn-secondary:hover { border-color: var(--brand-navy); color: var(--brand-navy-deep); }

.vm-btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 10px 18px;
}
.vm-btn-ghost:hover { background: var(--surface-alt); color: var(--brand-navy); }

.vm-btn-on-dark {
    background: #fff;
    color: var(--brand-navy);
}
.vm-btn-on-dark:hover { color: var(--brand-navy-deep); box-shadow: 0 10px 24px rgba(0,0,0,.3); }

.vm-btn svg { width: 18px; height: 18px; }

/* ------- Nav ------- */
.vm-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
}
.vm-nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 72px;
}
.vm-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--brand-navy);
    font-size: 18px;
    letter-spacing: -.01em;
}
.vm-brand img { height: 40px; width: auto; }
.vm-brand-text { line-height: 1; }
.vm-brand-text small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .02em; }

.vm-nav-links {
    display: none;
    list-style: none;
    margin: 0 auto 0 24px;
    padding: 0;
    gap: 6px;
}
.vm-nav-links a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 15px;
}
.vm-nav-links a:hover { background: var(--surface-alt); color: var(--brand-navy); }

.vm-nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.vm-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid var(--line);
    cursor: pointer;
    color: var(--ink);
}
.vm-nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 900px) {
    .vm-nav-links { display: flex; }
    .vm-nav-toggle { display: none; }
}

.vm-nav-drawer {
    display: none;
    padding: 12px 0 20px;
    border-top: 1px solid var(--line-soft);
}
.vm-nav-drawer.open { display: block; }
.vm-nav-drawer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.vm-nav-drawer a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-weight: 500;
}
.vm-nav-drawer a:hover { background: var(--surface-alt); }
.vm-nav-drawer .vm-drawer-cta { display: flex; gap: 10px; margin-top: 14px; padding: 0 16px; }
.vm-nav-drawer .vm-drawer-cta .vm-btn { flex: 1; }

@media (min-width: 900px) { .vm-nav-drawer { display: none !important; } }

/* ------- Hero ------- */
.vm-hero {
    position: relative;
    padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
    background:
        radial-gradient(1200px 600px at 90% -10%, rgba(60,165,224,.18), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(45,179,74,.15), transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--surface-alt) 100%);
    overflow: hidden;
}
.vm-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) {
    .vm-hero-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}
.vm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--brand-navy-deep);
    background: var(--brand-ice);
    border: 1px solid rgba(11,60,145,.12);
    border-radius: var(--radius-pill);
    letter-spacing: .02em;
    margin-bottom: 20px;
}
.vm-eyebrow .vm-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-green); box-shadow: 0 0 0 4px rgba(45,179,74,.2); }
.vm-hero h1 .grad {
    background: linear-gradient(120deg, var(--brand-navy) 0%, var(--brand-sky) 60%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.vm-hero-lead { font-size: clamp(1rem, 1vw + .6rem, 1.25rem); color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.vm-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.vm-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}
.vm-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.vm-hero-trust svg { width: 16px; height: 16px; color: var(--brand-green); }

/* Hero visual */
.vm-hero-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vm-phone {
    position: relative;
    width: 300px;
    aspect-ratio: 300 / 600;
    background: linear-gradient(145deg, #0F172A, #1E293B);
    border-radius: 42px;
    padding: 14px;
    box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.05);
    transform: rotate(-4deg);
    animation: vm-float 6s ease-in-out infinite;
}
@keyframes vm-float {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
    .vm-phone { animation: none; }
}
.vm-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
    padding: 28px 22px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vm-phone-notch {
    width: 100px;
    height: 24px;
    background: #0b0b0b;
    border-radius: 14px;
    margin: -4px auto 8px;
}
.vm-phone-header { display: flex; align-items: center; justify-content: space-between; font-size: 12px; opacity: .8; }
.vm-phone-greet { font-size: 13px; opacity: .8; }
.vm-phone-balance {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.vm-phone-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.vm-phone-chip {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    padding: 6px 10px;
    font-size: 11px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}
.vm-phone-tx {
    margin-top: 10px;
    background: rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vm-phone-tx-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.vm-phone-tx-logo {
    width: 30px; height: 30px; border-radius: 8px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-sky));
    display: grid; place-items: center; font-weight: 800; font-size: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.vm-phone-tx-row .meta { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.vm-phone-tx-row .meta small { opacity: .6; font-size: 10px; }
.vm-phone-tx-row .amt { font-weight: 700; font-size: 13px; }
.vm-phone-tx-row.s .amt { color: #7EE89A; }

/* Floating cards around phone */
.vm-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    animation: vm-float-alt 7s ease-in-out infinite;
    border: 1px solid var(--line-soft);
}
@keyframes vm-float-alt {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) { .vm-float-card { animation: none; } }
.vm-float-card.top { top: 10%; right: -6%; animation-delay: -2s; }
.vm-float-card.bot { bottom: 10%; left: -8%; animation-delay: -4s; }
.vm-float-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: grid; place-items: center;
}
.vm-float-icon.green { background: var(--brand-mint); color: var(--brand-green-deep); }
.vm-float-icon.blue  { background: var(--brand-ice);  color: var(--brand-navy); }
.vm-float-icon svg { width: 20px; height: 20px; }
.vm-float-card small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; }

@media (max-width: 640px) {
    .vm-float-card.top { right: 4%; }
    .vm-float-card.bot { left: 4%; }
}

/* Partner strip */
.vm-partners-strip {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px dashed var(--line);
}
.vm-partners-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    text-align: center;
    margin-bottom: 18px;
}
.vm-partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 24px;
}
.vm-partner-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--ink-soft);
    font-size: 14px;
    letter-spacing: .02em;
    box-shadow: var(--shadow-sm);
    transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.vm-partner-chip:hover { transform: translateY(-2px); border-color: var(--brand-sky); }

/* ------- Section ------- */
.vm-section { padding: clamp(64px, 8vw, 112px) 0; }
.vm-section-alt { background: var(--surface-alt); }
.vm-section-dark {
    background: var(--surface-dark);
    color: #CBD5E1;
    background-image:
        radial-gradient(600px 300px at 20% 20%, rgba(60,165,224,.18), transparent 70%),
        radial-gradient(600px 300px at 80% 90%, rgba(45,179,74,.18), transparent 70%);
}
body.vireo-marketing .vm-section-dark h2,
body.vireo-marketing .vm-section-dark h3,
body.vireo-marketing .vm-section-dark h4 { color: #fff; }
body.vireo-marketing .vm-section-dark p { color: #94A3B8; }

.vm-section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 56px); }
.vm-section-head .vm-eyebrow { margin-bottom: 16px; }
.vm-section-head p { color: var(--muted); font-size: 1.0625rem; }

.vm-section-head.left { text-align: left; margin-left: 0; margin-right: 0; }

/* ------- Stats ------- */
.vm-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.vm-stats::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(400px 200px at 100% 0, rgba(45,179,74,.25), transparent 60%);
    pointer-events: none;
}
.vm-stat { text-align: center; padding: 12px; position: relative; }
.vm-stat-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3vw + .5rem, 2.75rem);
    letter-spacing: -.02em;
    line-height: 1;
    background: linear-gradient(120deg, #fff 0%, #BDE3FF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vm-stat-lbl { display: block; margin-top: 8px; font-size: 13px; font-weight: 500; color: #BDE3FF; opacity: .9; }

@media (min-width: 768px) { .vm-stats { grid-template-columns: repeat(4, 1fr); padding: 40px; } }

/* ------- Service cards ------- */
.vm-grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .vm-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vm-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.vm-grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .vm-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.vm-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.vm-card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: grid; place-items: center;
    margin-bottom: 18px;
}
.vm-card-icon svg { width: 24px; height: 24px; }
.vm-card-icon.green { background: var(--brand-mint); color: var(--brand-green-deep); }
.vm-card-icon.blue  { background: var(--brand-ice);  color: var(--brand-navy); }
.vm-card-icon.sky   { background: #E1F4FF;           color: #1D78AE; }
.vm-card-icon.amber { background: #FEF3C7;           color: #92400E; }
.vm-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.vm-card p  { color: var(--muted); font-size: .9375rem; margin: 0; }
.vm-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px;
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 14px;
}
.vm-card-link:hover { gap: 10px; }

/* ------- Steps ------- */
.vm-steps {
    counter-reset: vm-step;
    display: grid; grid-template-columns: 1fr; gap: 24px;
    position: relative;
}
@media (min-width: 768px) { .vm-steps { grid-template-columns: repeat(3, 1fr); } }
.vm-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
}
.vm-step::before {
    counter-increment: vm-step;
    content: counter(vm-step, decimal-leading-zero);
    position: absolute; top: 20px; right: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--brand-ice);
    letter-spacing: -.03em;
    line-height: 1;
}
.vm-step-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-sky));
    color: #fff;
    display: grid; place-items: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(11,60,145,.25);
}
.vm-step-icon svg { width: 24px; height: 24px; }
.vm-step h3 { font-size: 1.125rem; margin-bottom: 8px; }
.vm-step p { color: var(--muted); margin: 0; font-size: .9375rem; }

/* ------- Networks ------- */
.vm-networks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 640px) { .vm-networks { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .vm-networks { grid-template-columns: repeat(4, 1fr); } }

.vm-network {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: transform .2s var(--ease), border-color .2s var(--ease);
    text-decoration: none;
    color: inherit;
}
.vm-network:hover { transform: translateY(-3px); border-color: var(--brand-sky); color: inherit; }
.vm-network-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -.01em;
}
.vm-network-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vm-network-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    background: var(--surface-alt);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: .02em;
}

/* Network brand swatches (non-official) */
.vm-network-swatch {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: grid; place-items: center;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -.01em;
}
.vm-sw-globe { background: linear-gradient(135deg, #004FFF, #0033A0); }
.vm-sw-smart { background: linear-gradient(135deg, #00A551, #007E3A); }
.vm-sw-sun   { background: linear-gradient(135deg, #F7941D, #D97706); }
.vm-sw-tnt   { background: linear-gradient(135deg, #FFD200, #F59E0B); color: #1E1B4B; }
.vm-sw-dito  { background: linear-gradient(135deg, #E91E63, #AD1457); }
.vm-sw-cignal{ background: linear-gradient(135deg, #111827, #374151); }
.vm-sw-meralco { background: linear-gradient(135deg, #F97316, #C2410C); }
.vm-sw-ecpay { background: linear-gradient(135deg, #2563EB, #1E40AF); }

/* ------- Feature split ------- */
.vm-split {
    display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 1024px) { .vm-split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.vm-split .vm-feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 18px; }
.vm-feature { display: flex; align-items: flex-start; gap: 14px; }
.vm-feature-check {
    flex: 0 0 32px; height: 32px; border-radius: 10px;
    background: var(--brand-mint); color: var(--brand-green-deep);
    display: grid; place-items: center;
}
.vm-feature-check svg { width: 18px; height: 18px; }
.vm-feature strong { display: block; font-weight: 700; color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; }
.vm-feature span { color: var(--muted); font-size: .9375rem; }

/* Visual illustration */
.vm-illu {
    background: linear-gradient(135deg, var(--brand-ice) 0%, #fff 50%, var(--brand-mint) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--line-soft);
    aspect-ratio: 4 / 3;
    display: grid; place-items: center;
    position: relative;
    overflow: hidden;
}
.vm-illu-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--line-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .6;
    mask-image: radial-gradient(closest-side, #000 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(closest-side, #000 20%, transparent 100%);
}
.vm-illu-core {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    text-align: center;
}
.vm-illu-ring {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--brand-navy), var(--brand-sky), var(--brand-green), var(--brand-navy));
    display: grid; place-items: center;
    margin: 0 auto 18px;
    position: relative;
}
.vm-illu-ring::before {
    content: ""; position: absolute; inset: 6px;
    border-radius: 50%; background: #fff;
}
.vm-illu-ring svg { position: relative; width: 40px; height: 40px; color: var(--brand-navy); }
.vm-illu-core strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; display: block; color: var(--ink); }
.vm-illu-core small { color: var(--muted); }

/* ------- Testimonials ------- */
.vm-quote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex; flex-direction: column; gap: 18px;
    position: relative;
    height: 100%;
}
.vm-quote-stars { display: flex; gap: 2px; color: #F59E0B; }
.vm-quote-stars svg { width: 16px; height: 16px; fill: currentColor; }
.vm-quote p { font-size: 1.0625rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.vm-quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.vm-quote-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
    color: #fff; display: grid; place-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px;
}
.vm-quote-who strong { display: block; font-size: 14px; color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; }
.vm-quote-who small { color: var(--muted); font-size: 12px; }

/* ------- FAQ ------- */
.vm-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.vm-faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.vm-faq details[open] {
    border-color: var(--brand-sky);
    box-shadow: var(--shadow-md);
}
.vm-faq summary {
    list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem;
}
.vm-faq summary::-webkit-details-marker { display: none; }
.vm-faq summary::after {
    content: "";
    width: 14px; height: 14px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform .2s var(--ease);
    flex: 0 0 14px;
}
.vm-faq details[open] summary::after { transform: rotate(-135deg); color: var(--brand-navy); }
.vm-faq details[open] summary { color: var(--brand-navy); }
.vm-faq .vm-faq-body {
    padding: 0 24px 22px;
    color: var(--muted);
    line-height: 1.65;
}

/* ------- CTA band ------- */
.vm-cta-band {
    position: relative;
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 72px);
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(600px 300px at 80% -20%, rgba(45,179,74,.5), transparent 60%),
        radial-gradient(600px 400px at -10% 120%, rgba(60,165,224,.5), transparent 60%),
        linear-gradient(135deg, var(--brand-navy-deep) 0%, var(--brand-navy) 100%);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
body.vireo-marketing .vm-cta-band h2 { color: #fff; }
body.vireo-marketing .vm-cta-band p { color: rgba(255,255,255,.9); max-width: 580px; margin: 0 auto 28px; font-size: 1.0625rem; }
.vm-cta-band .vm-cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ------- Footer ------- */
.vm-footer {
    background: var(--surface-dark);
    color: #94A3B8;
    padding: 72px 0 24px;
}
.vm-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) { .vm-footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; } }
body.vireo-marketing .vm-footer h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #E2E8F0;
    margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}
body.vireo-marketing .vm-footer p { color: #94A3B8; font-size: .9375rem; max-width: 340px; }
body.vireo-marketing .vm-footer li { color: #94A3B8; font-size: .9375rem; }
body.vireo-marketing .vm-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
body.vireo-marketing .vm-footer a { color: #CBD5E1; font-size: .9375rem; }
body.vireo-marketing .vm-footer a:hover { color: #fff; }
.vm-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; }
.vm-footer-brand img { height: 38px; width: auto; filter: brightness(1.2) saturate(1.1); }
.vm-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.vm-footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.06);
    color: #CBD5E1;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.vm-footer-social a:hover { background: rgba(255,255,255,.14); color: #fff; }
.vm-footer-social svg { width: 18px; height: 18px; }
.vm-footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
    font-size: 13px;
}
.vm-footer-bottom a { color: #94A3B8; }
body.vireo-marketing .vm-footer-bottom a:hover { color: #fff; }
body.vireo-marketing .vm-footer-bottom { color: #94A3B8; }

/* ------- Utilities ------- */
.vm-center { text-align: center; }
.vm-mt-8  { margin-top: 8px; }
.vm-mt-16 { margin-top: 16px; }
.vm-mt-24 { margin-top: 24px; }
.vm-mt-32 { margin-top: 32px; }
.vm-mt-48 { margin-top: 48px; }

/* Reveal on scroll */
.vm-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.vm-reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .vm-reveal { opacity: 1; transform: none; transition: none; } }

/* Print / reduced */
@media (max-width: 420px) {
    .vm-hero-cta .vm-btn { flex: 1 1 auto; }
}

/* ------- Merchant partner card ------- */
.vm-merchant {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    height: 100%;
}
.vm-merchant:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.vm-merchant-media {
    aspect-ratio: 16 / 9;
    background: var(--surface-alt);
    display: grid; place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
}
.vm-merchant-media img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 16px;
    background: #fff;
}
.vm-merchant-body { padding: 20px 22px 22px; }
.vm-merchant h3 { font-size: 1rem; margin-bottom: 10px; }
.vm-merchant ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.vm-merchant ul li {
    display: flex; align-items: flex-start; gap: 8px;
    color: var(--ink-soft); font-size: .9375rem;
    line-height: 1.5;
}
.vm-merchant ul li::before {
    content: "";
    flex: 0 0 18px; height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--brand-mint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E8F39' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / 12px no-repeat;
}
.vm-merchant-link {
    margin-top: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 14px;
}
.vm-merchant-link:hover { gap: 10px; }
