/* ==========================================================================
   Vision Executors — theme styles
   Design tokens extracted from the Figma source (Plus Jakarta Sans).
   ========================================================================== */

:root {
  /* Colors */
  --ve-ink: #18181b;          /* near-black: headings, dark surfaces, primary buttons */
  --ve-black: #000000;
  --ve-text: #4b4c4d;         /* body copy */
  --ve-muted: #7c7c7c;        /* eyebrows, meta, secondary */
  --ve-border: rgba(75, 76, 77, 0.25);
  --ve-line: #c7c7c7;
  --ve-bg: #ffffff;
  --ve-bg-alt: #f5f5f5;       /* alternating light sections */
  --ve-gold: #f0b429;         /* star ratings */
  --ve-whatsapp: #25d366;

  /* Radii */
  --ve-radius-sm: 12px;
  --ve-radius: 16px;
  --ve-radius-lg: 24px;
  --ve-radius-pill: 100px;

  /* Layout */
  --ve-container: 1200px;
  --ve-gutter: 24px;
  --ve-section-y: clamp(56px, 7vw, 104px);

  /* Type */
  --ve-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Elevation */
  --ve-shadow-sm: 0 1px 2px rgba(24, 24, 27, 0.04), 0 1px 3px rgba(24, 24, 27, 0.06);
  --ve-shadow: 0 12px 32px rgba(24, 24, 27, 0.10);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ve-font);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ve-text);
  background: var(--ve-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { opacity: .85; }

h1, h2, h3, h4, h5, h6 { color: var(--ve-ink); margin: 0 0 .4em; font-weight: 700; line-height: 1.1; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

button { font-family: inherit; cursor: pointer; }

:focus-visible { outline: 2px solid var(--ve-ink); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.ve-container {
  width: 100%;
  max-width: var(--ve-container);
  margin-inline: auto;
  padding-inline: var(--ve-gutter);
}

.ve-section { padding-block: var(--ve-section-y); }
.ve-section--alt { background: var(--ve-bg-alt); }

.ve-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ve-muted);
  margin: 0 0 14px;
}

.ve-section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.ve-section__head .ve-eyebrow { margin-bottom: 10px; }
.ve-section__head h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.02em; }
.ve-section__head p { color: var(--ve-text); font-size: 18px; margin-top: 12px; }

.ve-grid { display: grid; gap: 24px; }
.ve-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ve-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ve-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* --------------------------------------------------------------------------
   Buttons & chips
   -------------------------------------------------------------------------- */
.ve-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: var(--ve-radius-pill);
  border: 1px solid transparent; transition: transform .15s ease, background .15s ease, color .15s ease;
}
.ve-btn:hover { opacity: 1; transform: translateY(-1px); }
.ve-btn--primary { background: var(--ve-ink); color: #fff; }
.ve-btn--primary:hover { background: #000; }
.ve-btn--light { background: #fff; color: var(--ve-ink); border-color: var(--ve-border); }
.ve-btn--light:hover { background: var(--ve-bg-alt); }
.ve-btn--outline { background: transparent; color: var(--ve-ink); border-color: var(--ve-ink); }
.ve-btn--outline:hover { background: var(--ve-ink); color: #fff; }

.ve-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--ve-radius-pill);
  background: var(--ve-bg-alt); border: 1px solid var(--ve-border);
  font-size: 14px; font-weight: 500; color: var(--ve-text);
}
.ve-chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.ve-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--ve-radius-pill);
  background: var(--ve-bg-alt); border: 1px solid var(--ve-border);
  font-size: 14px; font-weight: 600; color: var(--ve-text);
}
.ve-eyebrow-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ve-ink); }

.ve-arrow-link { font-weight: 700; color: var(--ve-ink); display: inline-flex; gap: 6px; align-items: center; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.ve-card {
  background: #fff; border: 1px solid var(--ve-border);
  border-radius: var(--ve-radius); padding: 28px;
}
.ve-card__icon {
  width: 48px; height: 48px; border-radius: var(--ve-radius-sm);
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--ve-bg-alt); color: var(--ve-ink);
}
.ve-card__icon--dark { background: var(--ve-ink); color: #fff; }
.ve-card h3 { font-size: 20px; margin-bottom: 8px; }
.ve-card p { font-size: 16px; color: var(--ve-text); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.ve-announce {
  background: var(--ve-ink); color: #fff; text-align: center;
  font-size: 14px; padding: 10px 16px;
}
.ve-announce a { text-decoration: underline; font-weight: 700; }

.ve-header { background: var(--ve-ink); padding: 16px 0; position: sticky; top: 0; z-index: 50; }
.ve-header__inner {
  background: var(--ve-ink);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--ve-radius-pill);
  padding: 12px 16px 12px 24px;
  display: flex; align-items: center; gap: 24px;
}
.ve-header__logo img { height: 26px; width: auto; }
.ve-nav { display: flex; align-items: center; gap: 28px; margin-left: 12px; }
.ve-nav a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; }
.ve-nav a:hover { color: #fff; opacity: 1; }
.ve-header__actions { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.ve-header__actions .contact-link { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px; }
.ve-header__actions .ve-btn { padding: 12px 20px; font-size: 15px; }

.ve-nav-toggle { display: none; background: none; border: 0; color: #fff; padding: 8px; }
.ve-nav-toggle svg { width: 26px; height: 26px; }

/* dropdown (sub-menu) */
.ve-nav .menu-item-has-children { position: relative; }
.ve-nav .sub-menu {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 12px;
  background: #fff; border: 1px solid var(--ve-border); border-radius: var(--ve-radius);
  padding: 10px; min-width: 220px; list-style: none; box-shadow: var(--ve-shadow); z-index: 60;
}
.ve-nav .menu-item-has-children:hover .sub-menu { display: block; }
.ve-nav .sub-menu li { margin: 0; }
.ve-nav .sub-menu a { display: block; color: var(--ve-text); padding: 10px 12px; border-radius: 10px; font-size: 15px; }
.ve-nav .sub-menu a:hover { background: var(--ve-bg-alt); color: var(--ve-ink); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.ve-hero { padding-block: clamp(48px, 6vw, 88px); }
.ve-hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.ve-hero h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  letter-spacing: -0.03em; line-height: 1.0; margin: 20px 0 24px;
}
.ve-hero__lead { font-size: 18px; max-width: 34em; margin-bottom: 24px; }
.ve-hero .ve-chip-row { margin-bottom: 32px; }
.ve-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.ve-hero__stats { display: flex; flex-wrap: wrap; gap: 40px; }
.ve-hero__stats .num { font-size: clamp(28px, 3vw, 38px); font-weight: 700; color: var(--ve-ink); line-height: 1; }
.ve-hero__stats .lbl { font-size: 14px; color: var(--ve-muted); margin-top: 6px; }
.ve-hero__media img { width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   Feature row (3 mini cards under hero)
   -------------------------------------------------------------------------- */
.ve-feature-card { background: var(--ve-bg-alt); border: 1px solid var(--ve-border); border-radius: var(--ve-radius); padding: 26px; }
.ve-feature-card.is-plain { background: #fff; }
.ve-feature-card .ve-eyebrow { margin-bottom: 14px; }
.ve-feature-card h3 { font-size: 20px; }

/* --------------------------------------------------------------------------
   Managed banner (P&L strip)
   -------------------------------------------------------------------------- */
.ve-managed {
  background: var(--ve-bg-alt); border: 1px solid var(--ve-border);
  border-radius: var(--ve-radius-lg); padding: 40px;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.ve-managed h3 { font-size: clamp(22px, 2.4vw, 28px); max-width: 16em; }

/* --------------------------------------------------------------------------
   Value-added cards (2-up)
   -------------------------------------------------------------------------- */
.ve-value-card { position: relative; overflow: hidden; background: var(--ve-bg-alt); border: 1px solid var(--ve-border); border-radius: var(--ve-radius-lg); padding: 40px; }
.ve-value-card::after {
  content: ""; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(24,24,27,.06), transparent 70%);
}
.ve-value-card h3 { font-size: clamp(22px, 2.4vw, 26px); margin-bottom: 12px; }
.ve-check { list-style: none; padding: 0; margin: 18px 0 26px; }
.ve-check li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ve-text); font-size: 16px; }
.ve-check li::before { content: "✓"; position: absolute; left: 0; color: var(--ve-ink); font-weight: 700; }

/* --------------------------------------------------------------------------
   Flagship offer band
   -------------------------------------------------------------------------- */
.ve-flagship {
  background: linear-gradient(135deg, #56585c, #35363a);
  border-radius: var(--ve-radius-lg); padding: clamp(32px, 4vw, 56px); color: #fff;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.ve-flagship h2 { color: #fff; font-size: clamp(30px, 3.6vw, 42px); letter-spacing: -0.02em; }
.ve-flagship p { color: rgba(255,255,255,0.85); }
.ve-flagship .ve-chip { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); color: #fff; }
.ve-flagship .ve-eyebrow-pill { background: rgba(255,255,255,0.95); color: var(--ve-ink); border: 0; }
.ve-flagship .ve-btn--primary { background: var(--ve-ink); }
.ve-price-card { background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--ve-radius); padding: 32px; text-align: center; }
.ve-price-card .cap { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.ve-price-card .price { font-size: clamp(40px, 5vw, 52px); font-weight: 700; color: #fff; margin: 8px 0 4px; }
.ve-price-card .note { font-size: 14px; color: rgba(255,255,255,0.75); }
.ve-price-card .stack { margin-top: 20px; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.9; }

/* --------------------------------------------------------------------------
   Stat cards row
   -------------------------------------------------------------------------- */
.ve-statbox { border: 1px solid var(--ve-border); border-radius: var(--ve-radius); padding: 28px; text-align: center; }
.ve-statbox .num { font-size: clamp(28px, 3vw, 38px); font-weight: 700; color: var(--ve-ink); }
.ve-statbox .lbl { font-size: 15px; color: var(--ve-muted); margin-top: 6px; }

/* --------------------------------------------------------------------------
   Marketplace marquee
   -------------------------------------------------------------------------- */
.ve-marquee { background: var(--ve-bg-alt); padding: 40px 0; overflow: hidden; }
.ve-marquee__label { text-align: center; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ve-muted); margin-bottom: 24px; }
.ve-marquee__track { display: flex; gap: 64px; justify-content: center; flex-wrap: wrap; }
.ve-marquee__track span { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; color: var(--ve-muted); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.ve-testi { border: 1px solid var(--ve-border); border-radius: var(--ve-radius); padding: 28px; }
.ve-stars { color: var(--ve-gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 15px; }
.ve-testi blockquote { margin: 0 0 22px; font-size: 16px; color: var(--ve-ink); }
.ve-testi__author { display: flex; align-items: center; gap: 12px; }
.ve-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ve-ink); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; }
.ve-testi__author .name { font-weight: 700; color: var(--ve-ink); font-size: 15px; }
.ve-testi__author .role { font-size: 13px; color: var(--ve-muted); }

/* --------------------------------------------------------------------------
   Team / "not a dashboard"
   -------------------------------------------------------------------------- */
.ve-team { border: 1px solid var(--ve-border); border-radius: var(--ve-radius-lg); padding: 24px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.ve-team__media img { border-radius: var(--ve-radius); width: 100%; object-fit: cover; }
.ve-team h2 { font-size: clamp(24px, 3vw, 30px); letter-spacing: -0.01em; }
.ve-team__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 28px; }
.ve-team__stats .num { font-size: 24px; font-weight: 700; color: var(--ve-ink); }
.ve-team__stats .lbl { font-size: 14px; color: var(--ve-muted); }

/* --------------------------------------------------------------------------
   How it works (steps)
   -------------------------------------------------------------------------- */
.ve-step { background: #fff; border: 1px solid var(--ve-border); border-radius: var(--ve-radius); padding: 28px; }
.ve-step .num { width: 40px; height: 40px; border-radius: 10px; background: var(--ve-ink); color: #fff; display: grid; place-items: center; font-weight: 700; margin-bottom: 22px; }
.ve-step h3 { font-size: 20px; margin-bottom: 8px; }
.ve-step p { font-size: 15px; color: var(--ve-text); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.ve-contact { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: start; }
.ve-contact h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.02em; }
.ve-contact__methods { margin-top: 32px; display: grid; gap: 20px; }
.ve-contact__method { display: flex; gap: 14px; align-items: center; }
.ve-contact__method .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--ve-bg-alt); }
.ve-contact__method .ic.wa { background: rgba(37,211,102,0.15); }
.ve-contact__method .t { font-weight: 700; color: var(--ve-ink); }
.ve-contact__method .s { font-size: 14px; color: var(--ve-muted); }

.ve-form { background: #fff; border: 1px solid var(--ve-border); border-radius: var(--ve-radius-lg); padding: 32px; box-shadow: var(--ve-shadow-sm); }
.ve-form label.group-label { display: block; font-size: 14px; color: var(--ve-text); margin: 20px 0 10px; font-weight: 500; }
.ve-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ve-form input[type=text], .ve-form input[type=email], .ve-form select, .ve-form textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ve-ink);
  padding: 14px 16px; border: 1px solid var(--ve-border); border-radius: 12px; background: #fff;
}
.ve-form textarea { min-height: 120px; resize: vertical; }
.ve-form input:focus, .ve-form select:focus, .ve-form textarea:focus { outline: none; border-color: var(--ve-ink); }
.ve-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ve-radio { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--ve-border); border-radius: 12px; font-size: 15px; cursor: pointer; }
.ve-radio input { accent-color: var(--ve-ink); }
.ve-form .ve-btn { width: 100%; justify-content: center; margin-top: 24px; }
.ve-form__note { font-size: 13px; color: var(--ve-muted); margin-top: 12px; text-align: center; }
.ve-form__success { background: rgba(37,211,102,0.12); border: 1px solid var(--ve-whatsapp); color: #147a3e; padding: 16px; border-radius: 12px; margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ve-footer { background: var(--ve-ink); color: rgba(255,255,255,0.7); padding-top: 72px; }
.ve-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.ve-footer__brand img { height: 28px; margin-bottom: 20px; }
.ve-footer__brand p { font-size: 15px; max-width: 30ch; color: rgba(255,255,255,0.6); }
.ve-footer__social { display: flex; gap: 12px; margin-top: 24px; }
.ve-footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; }
.ve-footer__social a:hover { background: rgba(255,255,255,0.16); opacity: 1; }
.ve-footer h4 { color: #fff; font-size: 15px; letter-spacing: .02em; margin-bottom: 18px; }
.ve-footer ul { list-style: none; padding: 0; margin: 0; }
.ve-footer li { margin-bottom: 12px; }
.ve-footer a { color: rgba(255,255,255,0.7); font-size: 15px; }
.ve-footer a:hover { color: #fff; opacity: 1; }
.ve-footer .ve-btn--light { margin-top: 8px; }
.ve-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.ve-footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }
.ve-footer__bottom .disclaimer { max-width: 60ch; }

/* Floating WhatsApp */
.ve-wa-float { position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--ve-whatsapp); display: grid; place-items: center; z-index: 90; box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.ve-wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* --------------------------------------------------------------------------
   Generic page / posts (About, Blog, legal)
   -------------------------------------------------------------------------- */
.ve-page-hero { background: var(--ve-bg-alt); padding-block: clamp(56px, 7vw, 96px); text-align: center; }
.ve-page-hero h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.02em; }
.ve-page-hero p { max-width: 60ch; margin: 16px auto 0; font-size: 18px; }

.ve-prose { max-width: 760px; margin-inline: auto; }
.ve-prose h2 { font-size: 28px; margin-top: 1.6em; }
.ve-prose h3 { font-size: 22px; margin-top: 1.4em; }
.ve-prose p, .ve-prose li { font-size: 17px; }
.ve-prose img { border-radius: var(--ve-radius); margin: 1.5em 0; }

.ve-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ve-post-card { border: 1px solid var(--ve-border); border-radius: var(--ve-radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.ve-post-card__thumb { aspect-ratio: 16/10; background: var(--ve-bg-alt); overflow: hidden; }
.ve-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ve-post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ve-post-card__meta { font-size: 13px; color: var(--ve-muted); letter-spacing: .04em; text-transform: uppercase; }
.ve-post-card h3 { font-size: 19px; }
.ve-post-card p { font-size: 15px; color: var(--ve-text); }
.ve-post-card .ve-arrow-link { margin-top: auto; font-size: 15px; }

.ve-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.ve-pagination .page-numbers { padding: 10px 16px; border: 1px solid var(--ve-border); border-radius: 10px; color: var(--ve-ink); }
.ve-pagination .current { background: var(--ve-ink); color: #fff; border-color: var(--ve-ink); }

/* --------------------------------------------------------------------------
   Breadcrumb / page-hero glow / CTA band / badges
   -------------------------------------------------------------------------- */
.ve-breadcrumb { font-size: 14px; color: var(--ve-muted); margin-bottom: 18px; }
.ve-breadcrumb a { color: var(--ve-muted); }
.ve-breadcrumb a:hover { color: var(--ve-ink); }
.ve-breadcrumb span { margin: 0 6px; }

.ve-page-hero.has-glow { position: relative; overflow: hidden; }
.ve-page-hero.has-glow::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,24,27,.06), transparent 62%); pointer-events: none;
}
.ve-page-hero .ve-breadcrumb { text-align: center; }

.ve-cta-band {
  background: linear-gradient(135deg, #56585c, #303135); color: #fff; border-radius: var(--ve-radius-lg);
  padding: clamp(40px, 6vw, 80px); text-align: center;
}
.ve-cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; }
.ve-cta-band p { color: rgba(255,255,255,0.82); max-width: 46ch; margin: 12px auto 28px; }

.ve-badge-float {
  position: absolute; bottom: 20px; right: 20px; background: #fff; border-radius: var(--ve-radius);
  padding: 16px 20px; box-shadow: var(--ve-shadow); text-align: right;
}
.ve-badge-float .t { font-weight: 700; color: var(--ve-ink); font-size: 20px; }
.ve-badge-float .s { font-size: 13px; color: var(--ve-muted); }

/* --------------------------------------------------------------------------
   Marketplace hub
   -------------------------------------------------------------------------- */
.ve-hub-hero { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.ve-hub-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.ve-hub-head h2 { letter-spacing: -0.02em; }

.ve-pricing-card { border: 1px solid var(--ve-border); border-radius: var(--ve-radius); padding: 30px; display: flex; flex-direction: column; }
.ve-pricing-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.ve-pricing-card h3 { font-size: 22px; margin-bottom: 8px; }
.ve-pricing-card p { color: var(--ve-text); font-size: 16px; }
.ve-pricing-card .ve-check { margin: 16px 0 22px; }
.ve-pricing-card .ve-check li { font-size: 15px; }
.ve-pricing-card__foot { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--ve-border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ve-pricing-card__foot .cap { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ve-muted); }
.ve-pricing-card__foot .price { font-size: 24px; font-weight: 700; color: var(--ve-ink); }

.ve-tag { display: inline-block; padding: 5px 12px; border-radius: var(--ve-radius-pill); background: var(--ve-bg-alt); border: 1px solid var(--ve-border); font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--ve-muted); text-transform: uppercase; }
.ve-tag.is-retainer { background: var(--ve-ink); color: #fff; border-color: var(--ve-ink); }

/* FAQ accordion */
.ve-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.ve-faq__item { background: #fff; border: 1px solid var(--ve-border); border-radius: var(--ve-radius); padding: 4px 24px; }
.ve-faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font-weight: 700; color: var(--ve-ink); font-size: 17px; }
.ve-faq__item summary::-webkit-details-marker { display: none; }
.ve-faq__mark { position: relative; width: 16px; height: 16px; flex: none; }
.ve-faq__mark::before, .ve-faq__mark::after { content: ""; position: absolute; background: var(--ve-ink); transition: transform .2s ease; }
.ve-faq__mark::before { top: 7px; left: 0; width: 16px; height: 2px; }
.ve-faq__mark::after { left: 7px; top: 0; width: 2px; height: 16px; }
.ve-faq__item[open] .ve-faq__mark::after { transform: scaleY(0); }
.ve-faq__body { padding: 0 0 22px; color: var(--ve-text); font-size: 16px; }

/* --------------------------------------------------------------------------
   Service detail
   -------------------------------------------------------------------------- */
.ve-sd-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.ve-sd-media { border-radius: var(--ve-radius); overflow: hidden; aspect-ratio: 16/10; }
.ve-sd-media img { width: 100%; height: 100%; object-fit: cover; }

.ve-incl { border: 1px solid var(--ve-border); border-radius: var(--ve-radius); padding: 20px; display: flex; gap: 14px; }
.ve-incl__check { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--ve-ink); display: grid; place-items: center; }
.ve-incl strong { color: var(--ve-ink); font-size: 16px; display: block; margin-bottom: 4px; }
.ve-incl p { font-size: 14px; color: var(--ve-text); margin: 0; }

.ve-benefit { background: var(--ve-bg-alt); border: 1px solid var(--ve-border); border-radius: var(--ve-radius-lg); padding: 36px; margin-top: 32px; }
.ve-benefit h3 { font-size: 22px; margin-bottom: 12px; }
.ve-benefit .ve-statbox { background: #fff; }

.ve-buy-card { position: sticky; top: 96px; border: 1px solid var(--ve-border); border-radius: var(--ve-radius-lg); padding: 30px; box-shadow: var(--ve-shadow); }
.ve-buy-card .cap { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ve-muted); }
.ve-buy-card__price { font-size: 44px; font-weight: 700; color: var(--ve-ink); margin: 4px 0 20px; }
.ve-buy-card__price span { font-size: 16px; font-weight: 500; color: var(--ve-muted); }
.ve-buy-card__tabs { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; }
.ve-buy-card__tabs button { border: 0; background: var(--ve-ink); color: #fff; padding: 12px 22px; border-radius: var(--ve-radius-pill); font-weight: 700; }
.ve-buy-card__tabs a { color: var(--ve-ink); font-weight: 700; }
.ve-buy-card__calc { display: flex; justify-content: space-between; font-size: 14px; color: var(--ve-muted); margin: 4px 0 16px; }
.ve-buy-card__secure { text-align: center; font-size: 13px; color: var(--ve-muted); margin-top: 14px; }

/* --------------------------------------------------------------------------
   Blog tools + featured
   -------------------------------------------------------------------------- */
.ve-blog-tools { max-width: 820px; margin: 40px auto 0; }
.ve-search { display: flex; align-items: center; gap: 12px; background: var(--ve-bg-alt); border: 1px solid var(--ve-border); border-radius: var(--ve-radius-pill); padding: 14px 22px; }
.ve-search input { border: 0; background: transparent; width: 100%; font-family: inherit; font-size: 16px; color: var(--ve-ink); }
.ve-search input:focus { outline: none; }
.ve-cat-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.ve-cat-chip { padding: 8px 18px; border-radius: var(--ve-radius-pill); background: var(--ve-bg-alt); border: 1px solid var(--ve-border); font-size: 14px; font-weight: 500; color: var(--ve-text); }
.ve-cat-chip.is-active { background: var(--ve-ink); color: #fff; border-color: var(--ve-ink); }
.ve-cat-chip:hover { opacity: 1; border-color: var(--ve-ink); }

.ve-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--ve-border); border-radius: var(--ve-radius-lg); overflow: hidden; margin-bottom: 40px; background: var(--ve-bg-alt); }
.ve-featured__media { min-height: 320px; background: var(--ve-line); }
.ve-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.ve-featured__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.ve-featured__body h2 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.01em; }
.ve-featured__body p { color: var(--ve-text); }
.ve-byline { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.ve-byline img { border-radius: 50%; }
.ve-byline .name { font-weight: 700; color: var(--ve-ink); font-size: 14px; }
.ve-byline .meta { font-size: 13px; color: var(--ve-muted); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ve-hero__inner { grid-template-columns: 1fr; }
  .ve-hero__media { order: -1; }
  .ve-flagship { grid-template-columns: 1fr; }
  .ve-team { grid-template-columns: 1fr; }
  .ve-contact { grid-template-columns: 1fr; gap: 40px; }
  .ve-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ve-footer__top { grid-template-columns: 1fr 1fr; }
  .ve-hub-hero { grid-template-columns: 1fr; gap: 32px; }
  .ve-sd-grid { grid-template-columns: 1fr; gap: 32px; }
  .ve-buy-card { position: static; }
  .ve-featured { grid-template-columns: 1fr; }
  .ve-featured__media { min-height: 240px; }
}

@media (max-width: 860px) {
  .ve-nav, .ve-header__actions .contact-link { display: none; }
  .ve-nav-toggle { display: block; margin-left: auto; }
  .ve-header__actions { margin-left: 0; }
  .ve-header__inner.is-open .ve-nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    position: absolute; left: 0; right: 0; top: calc(100% + 8px);
    background: var(--ve-ink); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--ve-radius); padding: 16px; margin: 0 var(--ve-gutter);
  }
  .ve-header { position: relative; }
  .ve-header__inner { position: relative; }
  .ve-nav .sub-menu { position: static; display: block; background: transparent; border: 0; box-shadow: none; padding: 4px 0 4px 12px; }
  .ve-nav .sub-menu a { color: rgba(255,255,255,0.7); }
}

@media (max-width: 720px) {
  .ve-grid--3, .ve-grid--2, .ve-grid--4, .ve-post-grid { grid-template-columns: 1fr; }
  .ve-form .row, .ve-radio-grid { grid-template-columns: 1fr; }
  .ve-managed { flex-direction: column; align-items: flex-start; }
  .ve-footer__top { grid-template-columns: 1fr; }
  .ve-hero__stats { gap: 28px; }
}
