:root {
  color-scheme: dark;
  --bg: #0a0f1f;
  --bg-2: #0e1629;
  --card: rgba(17, 25, 45, 0.7);
  --stroke: rgba(148, 163, 184, 0.2);
  --text: #e5e7eb;
  --muted: #a7b0c4;
  --gold: #f4c24f;
  --blue: #63b3ed;
  --accent: #f8d477;
  --shadow: 0 30px 80px rgba(4, 7, 16, 0.45);
}

* { box-sizing: border-box; }
body.vp {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.vp-shell { position: relative; overflow: hidden; }
.vp-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.vp-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(148,163,184,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.2;
}
.vp-orb { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.vp-orb--gold { background: rgba(244, 194, 79, 0.5); top: -120px; right: -120px; }
.vp-orb--blue { background: rgba(99, 179, 237, 0.45); bottom: -200px; left: -140px; }

.vp-top { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(16px); background: rgba(8,12,26,0.6); border-bottom: 1px solid var(--stroke); }
.vp-top__inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 20px; justify-content: space-between; }
.vp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.vp-brand img { display: block; }
.vp-brand img:first-child { width: 40px; height: 40px; }
.vp-brand img:last-child { height: 26px; width: auto; }

.vp-nav { display: flex; gap: 18px; font-size: 14px; }
.vp-nav a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.vp-nav a:hover { color: var(--text); }

.vp-top__cta { display: flex; align-items: center; gap: 12px; }
.vp-pill {
  padding: 6px 12px; border-radius: 999px; font-size: 12px; border: 1px solid var(--stroke);
  color: var(--muted); background: rgba(15, 23, 42, 0.7);
}
.vp-pill--live { color: var(--gold); border-color: rgba(244,194,79,0.5); }

.vp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: 1px solid transparent;
}
.vp-btn--primary { background: linear-gradient(135deg, #f4c24f, #ffd98a); color: #1c1f2b; box-shadow: 0 12px 30px rgba(244,194,79,0.35); }
.vp-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(244,194,79,0.45); }
.vp-btn--ghost { border-color: var(--stroke); color: var(--text); background: rgba(15,23,42,0.5); }
.vp-btn:focus-visible { outline: 2px solid rgba(244,194,79,0.6); outline-offset: 2px; }

.vp-main { position: relative; z-index: 1; }
.vp-hero { padding: 90px 24px 60px; }
.vp-hero__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 36px; }
.vp-hero__content h1 { font-size: clamp(32px, 4vw, 52px); margin: 8px 0 12px; }
.vp-hero__content p { color: var(--muted); }
.vp-kicker { color: var(--gold); text-transform: uppercase; font-weight: 600; letter-spacing: .12em; font-size: 12px; }
.vp-hero__cta { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.vp-hero__note { margin-top: 16px; color: var(--muted); font-size: 14px; }
.vp-hero__bullets { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; color: var(--muted); }
.vp-hero__bullets li { display: grid; grid-template-columns: 12px 1fr; align-items: start; gap: 10px; }
.vp-bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(244,194,79,0.6); margin-top: 6px; }

.vp-panel { background: var(--card); border: 1px solid var(--stroke); padding: 20px; border-radius: 24px; box-shadow: var(--shadow); }
.vp-panel__row { display: flex; align-items: center; gap: 10px; color: var(--muted); padding: 8px 0; }
.vp-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px rgba(244,194,79,0.7); }
.vp-panel__summary { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 12px; }
.vp-panel__summary small { color: var(--muted); display: block; margin-bottom: 4px; }

/* WhatsApp Chat Simulation */
.vp-whatsapp-panel { background: linear-gradient(145deg, #0b3d2e, #075e45); border: 2px solid #25D366; padding: 16px; border-radius: 24px; box-shadow: 0 20px 60px rgba(37, 211, 102, 0.25), inset 0 1px 0 rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.vp-whatsapp-panel::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.vp-whatsapp-header { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 12px; position: relative; z-index: 1; }
.vp-whatsapp-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); overflow: hidden; padding: 4px; }\n.vp-whatsapp-avatar img { width: 100%; height: 100%; object-fit: contain; }
.vp-whatsapp-info strong { color: #fff; display: block; font-size: 14px; }
.vp-whatsapp-info span { color: rgba(255,255,255,0.6); font-size: 11px; }
.vp-whatsapp-chat { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.vp-chat-bubble { padding: 10px 14px; border-radius: 12px; max-width: 85%; font-size: 14px; line-height: 1.4; position: relative; animation: bubbleIn 0.4s ease-out; }
.vp-chat-bubble--user { background: #005c4b; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.vp-chat-bubble--bot { background: rgba(255,255,255,0.12); color: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.vp-chat-bubble--audio { display: flex; align-items: center; gap: 10px; }
.vp-chat-audio-wave { display: flex; align-items: center; gap: 2px; height: 20px; }
.vp-chat-audio-wave span { width: 3px; background: rgba(255,255,255,0.7); border-radius: 2px; animation: audioWave 0.8s ease-in-out infinite; }
.vp-chat-audio-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.vp-chat-audio-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.vp-chat-audio-wave span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.vp-chat-audio-wave span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.vp-chat-audio-wave span:nth-child(5) { height: 10px; animation-delay: 0.4s; }
.vp-chat-time { font-size: 10px; color: rgba(255,255,255,0.5); text-align: right; margin-top: 2px; }
.vp-chat-check { color: #53bdeb; font-size: 12px; margin-left: 4px; }
.vp-whatsapp-result { margin-top: 10px; padding: 12px; background: rgba(37, 211, 102, 0.15); border: 1px solid rgba(37, 211, 102, 0.3); border-radius: 12px; position: relative; z-index: 1; }
.vp-whatsapp-result strong { color: #25D366; display: block; font-size: 13px; margin-bottom: 6px; }
.vp-whatsapp-result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.vp-whatsapp-result-item small { color: rgba(255,255,255,0.5); font-size: 10px; display: block; }
.vp-whatsapp-result-item span { color: #fff; font-size: 14px; font-weight: 600; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes audioWave { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.5); } }

.vp-proof { padding: 10px 24px 50px; }
.vp-proof__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.vp-proof__item { background: var(--card); border: 1px solid var(--stroke); border-radius: 18px; padding: 16px 18px; }
.vp-proof__item strong { display: block; color: var(--text); margin-bottom: 4px; }
.vp-proof__item span { color: var(--muted); }

.vp-section { padding: 70px 24px; }
.vp-section__head { max-width: 900px; margin: 0 auto 28px; text-align: left; }
.vp-section__head h2 { margin: 10px 0; font-size: clamp(24px, 3vw, 38px); }
.vp-section__head p { color: var(--muted); }
.vp-eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.vp-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.vp-grid--dense { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.vp-card { background: var(--card); border: 1px solid var(--stroke); padding: 20px; border-radius: 20px; color: var(--muted); transition: transform .2s ease, border .2s ease; }
.vp-card strong { color: var(--text); display: block; margin-bottom: 6px; }
.vp-card:hover { transform: translateY(-4px); border-color: rgba(244,194,79,0.35); }

/* Card de destaque (diferencial) */
.vp-card--accent { background: linear-gradient(145deg, rgba(244,194,79,0.06), rgba(99,179,237,0.04)); border-color: rgba(244,194,79,0.28); }
.vp-card--accent:hover { border-color: rgba(244,194,79,0.55); }

/* Seção de destaque */
.vp-section--highlight { background: linear-gradient(180deg, rgba(244,194,79,0.03) 0%, transparent 100%); border-top: 1px solid rgba(244,194,79,0.12); border-bottom: 1px solid rgba(244,194,79,0.12); }

/* Seção "Em breve" (WhatsApp) */
.vp-section--coming { background: linear-gradient(180deg, rgba(37,211,102,0.03) 0%, transparent 100%); border-top: 1px solid rgba(37,211,102,0.12); border-bottom: 1px solid rgba(37,211,102,0.12); }
.vp-card--coming { background: linear-gradient(145deg, rgba(37,211,102,0.06), rgba(37,211,102,0.02)); border-color: rgba(37,211,102,0.25); }
.vp-card--coming:hover { border-color: rgba(37,211,102,0.5); }
.vp-coming-note { max-width: 700px; margin: 28px auto 0; text-align: center; padding: 20px 24px; background: linear-gradient(145deg, rgba(37,211,102,0.08), rgba(37,211,102,0.03)); border: 1px solid rgba(37,211,102,0.2); border-radius: 16px; }
.vp-coming-note p { margin: 0; }
.vp-coming-note span { color: var(--muted); }

/* WhatsApp - Seção ativa com destaque */
.vp-section--whatsapp { background: linear-gradient(180deg, rgba(37,211,102,0.08) 0%, rgba(37,211,102,0.02) 50%, transparent 100%); border-top: 2px solid rgba(37,211,102,0.4); border-bottom: 2px solid rgba(37,211,102,0.4); }
.vp-eyebrow--new { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff !important; padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: 13px; display: inline-block; animation: pulse-glow 2s ease-in-out infinite; }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 0 20px 4px rgba(37,211,102,0.3); } }
.vp-card--whatsapp { background: linear-gradient(145deg, rgba(37,211,102,0.12), rgba(37,211,102,0.04)); border-color: rgba(37,211,102,0.35); transition: all 0.3s ease; }
.vp-card--whatsapp:hover { border-color: #25D366; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.15); }
.vp-card--whatsapp strong { color: #25D366; }

/* WhatsApp Chat Demo */
.vp-whatsapp-demo { max-width: 420px; margin: 32px auto 0; }
.vp-whatsapp-chat { background: linear-gradient(180deg, #0b141a 0%, #0d1418 100%); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; gap: 10px; border: 1px solid rgba(37,211,102,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.vp-chat-bubble { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.vp-chat-bubble--user { background: #005c4b; color: #e9edef; align-self: flex-end; border-bottom-right-radius: 4px; }
.vp-chat-bubble--bot { background: #202c33; color: #e9edef; align-self: flex-start; border-bottom-left-radius: 4px; }
.vp-chat-bubble--bot strong { color: #25D366; }
.vp-chat-bubble--bot em { color: #8696a0; font-style: normal; font-size: 13px; }

/* WhatsApp Video Player */
.vp-whatsapp-video { max-width: 360px; margin: 32px auto 0; }
.vp-video-player { width: 100%; border-radius: 24px; border: 3px solid rgba(37,211,102,0.4); box-shadow: 0 20px 60px rgba(37,211,102,0.2), 0 8px 24px rgba(0,0,0,0.3); background: #000; }
@media (min-width: 768px) { .vp-whatsapp-video { max-width: 320px; } }

/* Botão WhatsApp CTA */
.vp-btn--whatsapp { background: linear-gradient(135deg, #25D366, #128C7E) !important; color: #fff !important; border: none !important; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; padding: 16px 28px !important; font-size: 16px !important; box-shadow: 0 8px 24px rgba(37,211,102,0.3); transition: all 0.3s ease; }
.vp-btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }
.vp-btn--whatsapp svg { flex-shrink: 0; }

/* CTA inline */
.vp-cta-inline { max-width: 900px; margin: 0 auto; text-align: center; padding: 20px; }
.vp-cta-inline p { color: var(--muted); margin-bottom: 16px; }
.vp-cta-inline em { color: var(--text); font-style: italic; }

.vp-steps { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.vp-step { display: flex; gap: 16px; align-items: center; padding: 18px; border-radius: 18px; background: var(--card); border: 1px solid var(--stroke); }
.vp-step__index { font-size: 22px; color: var(--gold); font-weight: 700; }
.vp-step span { color: var(--muted); }

.vp-plans { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.vp-plan {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 28px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.vp-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.vp-plan header { display: flex; justify-content: space-between; align-items: center; }
.vp-plan h3 { margin: 0; font-size: 1.3em; }
.vp-plan header > span { color: var(--muted); font-size: 13px; }
.vp-price { font-size: 28px; font-weight: 700; color: var(--text); }
.vp-price__old { font-size: .65em; text-decoration: line-through; opacity: .45; display: block; }
.vp-price__promo { color: #22c55e; font-weight: 800; font-size: 1.5em; display: block; }
.vp-price__label { font-size: .5em; display: block; color: #facc15; font-weight: 700; }
.vp-price__main { font-size: 1em; }
.vp-price__note { color: var(--muted); font-size: .9em; }
.vp-plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); font-size: .92em; }
.vp-plan ul li { display: flex; align-items: baseline; gap: 6px; }

/* Savings pill */
.vp-plan__savings {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .82em;
  font-weight: 600;
  text-align: center;
}
.vp-plan__savings--green {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e;
}
.vp-plan__savings--gold {
  background: rgba(244,194,79,0.1);
  border: 1px solid rgba(244,194,79,0.3);
  color: #f4c24f;
}
.vp-plan__savings--purple {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  color: #a78bfa;
}

/* Micro guarantee text */
.vp-plan__micro {
  text-align: center;
  font-size: .72em;
  opacity: .55;
  margin-top: -4px;
}

/* Promo card (mensal) */
.vp-plan--promo {
  border-color: rgba(34,197,94,0.35);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.1), 0 20px 50px rgba(34,197,94,0.08);
}
.vp-plan--promo:hover {
  border-color: rgba(34,197,94,0.6);
  box-shadow: 0 20px 60px rgba(34,197,94,0.15);
}
.vp-plan__ribbon {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  padding: 8px 16px;
  text-align: center;
  font-size: .75em;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 24px 24px 0 0;
}
.vp-plan--promo header { margin-top: 28px; }

/* Gold CTA button */
.vp-btn--gold {
  background: linear-gradient(135deg, #f4c24f, #d97706) !important;
  color: #1a1a1a !important;
  border: none !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(244,194,79,0.3);
}
.vp-btn--gold:hover {
  box-shadow: 0 6px 28px rgba(244,194,79,0.5);
  transform: translateY(-1px);
}

/* Glow CTA button */
.vp-btn--glow {
  animation: vp-glow-pulse 2s infinite;
}
@keyframes vp-glow-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 4px 28px rgba(34,197,94,0.7); }
}

/* Featured card (anual) */
.vp-plan--featured {
  border-color: rgba(244,194,79,0.45);
  box-shadow: 0 0 0 1px rgba(244,194,79,0.1), 0 30px 60px rgba(244,194,79,0.12);
  overflow: hidden;
  padding-top: 38px;
}
.vp-plan--featured:hover {
  border-color: rgba(244,194,79,0.7);
  box-shadow: 0 30px 70px rgba(244,194,79,0.18);
}
.vp-plan--featured header { margin-top: 2px; }
.vp-plan__badge {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 8px 16px;
  text-align: center;
  background: linear-gradient(135deg, rgba(244,194,79,0.2), rgba(244,194,79,0.08));
  border-bottom: 1px solid rgba(244,194,79,0.3);
  color: var(--gold); font-size: .75em; font-weight: 700; letter-spacing: .03em;
}

.vp-faq { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.vp-faq details { background: var(--card); border: 1px solid var(--stroke); border-radius: 18px; padding: 16px 18px; color: var(--muted); }
.vp-faq summary { cursor: pointer; color: var(--text); font-weight: 600; }

.vp-cta-strip { padding: 10px 24px 70px; }
.vp-cta-strip__inner {
  max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px;
  background: linear-gradient(145deg, rgba(244,194,79,0.08), rgba(99,179,237,0.08)), var(--card);
  border: 1px solid rgba(244,194,79,0.24); border-radius: 24px; padding: 24px;
}
.vp-cta-strip__inner h2 { margin: 8px 0 10px; font-size: clamp(22px, 2.6vw, 32px); }
.vp-cta-strip__inner p { color: var(--muted); margin: 0; }
.vp-cta-strip__actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

.vp-video-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.vp-video-card { margin: 0; background: var(--card); border: 1px solid var(--stroke); border-radius: 20px; padding: 12px; display: grid; gap: 10px; }
.vp-video { width: 100%; border-radius: 14px; background: #0b1220; border: 1px solid rgba(148,163,184,0.2); }
.vp-video-card figcaption { color: var(--muted); font-size: 14px; }

.vp-final { padding: 80px 24px; background: linear-gradient(180deg, rgba(12,18,35,0.2), rgba(12,18,35,0.8)); }
.vp-final__content { max-width: 860px; margin: 0 auto; text-align: center; }
.vp-final__cta { margin-top: 20px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.vp-final__note { margin-top: 14px; color: var(--muted); }

.vp-footer { max-width: 1200px; margin: 0 auto; padding: 28px 24px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; color: var(--muted); border-top: 1px solid var(--stroke); }
.vp-footer a { color: var(--muted); text-decoration: none; }
.vp-footer__brand { display: flex; gap: 12px; align-items: center; }
.vp-footer__brand strong { color: var(--text); display: block; }
.vp-footer__brand span { font-size: 13px; color: var(--muted); }
.vp-footer__social { display: grid; gap: 8px; }
.vp-footer__hint { font-size: 13px; }
.vp-footer__links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.vp-social { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; }
.vp-social__icon { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(244,194,79,0.15); color: var(--gold); border: 1px solid rgba(244,194,79,0.4); }
.vp-social__handle { color: var(--muted); font-weight: 500; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .vp-top__inner { flex-wrap: wrap; }
  .vp-nav { flex-wrap: wrap; justify-content: center; }
  .vp-hero__grid { grid-template-columns: 1fr; }
  .vp-cta-strip__inner { grid-template-columns: 1fr; }
  .vp-cta-strip__actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .vp-top { position: relative; }
  .vp-top__cta { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .vp-brand img:first-child { width: 34px; height: 34px; }
  .vp-brand img:last-child { height: 22px; }
}
