/* ==========================================================================
   MSP Process — Verify My Tech page
   Green-led with cyan accents. Reuses sa-hero / sa-section primitives.
   Single hero with widget iframe + supporting context sections.
   ========================================================================== */

.vmt-hero .sa-hero__title-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.vmt-hero .sa-hero__pulse-eyebrow {
  color: var(--brand-green);
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
}
.vmt-hero .sa-hero__pulse-eyebrow .sa-pulse {
  background: var(--brand-green);
  box-shadow: 0 0 10px var(--brand-green), 0 0 0 4px rgba(10, 154, 86, 0.18);
}
.vmt-hero .sa-hero__glow { background: rgba(10, 154, 86, 0.30); }

.vmt-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Widget panel — embeds the public Verify My Tech iframe */
.vmt-widget {
  position: relative;
  background: var(--card-grad);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--card-shadow), 0 30px 60px -22px rgba(10, 154, 86, 0.35);
  overflow: hidden;
  isolation: isolate;
}
.vmt-widget::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 154, 86, 0.18), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.vmt-widget__bar {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 12px;
}
.vmt-widget__dot { width: 10px; height: 10px; border-radius: 50%; }
.vmt-widget__status {
  margin-left: auto;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.12em; font-weight: 800;
  color: var(--brand-green);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.vmt-widget__status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-green); box-shadow: 0 0 10px var(--brand-green);
  animation: vmtPulse 1.4s infinite;
}
@keyframes vmtPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.vmt-widget__frame {
  position: relative; z-index: 1;
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  display: block;
}

/* --- Feature list — non-boxy left-accent green ----------------------- */
.vmt-feats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px clamp(1.5rem, 2.5vw, 2rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.vmt-feat {
  position: relative;
  padding: 22px 4px 22px 22px;
  display: flex; flex-direction: column; gap: 11px;
  border-left: 2px solid rgba(10, 154, 86, 0.20);
  background: transparent;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.vmt-feat:hover { border-left-color: var(--brand-green); transform: translateX(2px); }
.vmt-feat__icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  color: var(--brand-green);
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.12), rgba(10, 154, 86, 0.03));
  border: 1px solid rgba(10, 154, 86, 0.24);
}
.vmt-feat__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.vmt-feat__title { font-family: var(--font-brand); font-weight: 600; font-size: 16.5px; line-height: 1.25; letter-spacing: -0.2px; color: var(--heading); margin: 0; }
.vmt-feat__desc { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
.vmt-feat__tag { align-self: flex-start; font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace); font-size: 10px; letter-spacing: 0.12em; font-weight: 800; text-transform: uppercase; color: var(--brand-green); }
@media (max-width: 960px) { .vmt-feats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vmt-feats { grid-template-columns: 1fr; } }

/* --- Final CTA -------------------------------------------------------- */
.vmt-final {
  position: relative; overflow: hidden;
  max-width: 1080px; margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 22px; text-align: center;
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.10), rgba(0, 186, 251, 0.04));
  border: 1px solid rgba(10, 154, 86, 0.22);
}
.vmt-final::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 900px; max-width: 130%; height: 280px;
  background: rgba(10, 154, 86, 0.14); filter: blur(110px); border-radius: 700px;
  pointer-events: none;
}
.vmt-final__inner { position: relative; z-index: 1; }
.vmt-final__title { font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem); font-weight: 500; line-height: 1.12; letter-spacing: -0.4px; margin: 0 0 14px; }
.vmt-final__sub { font-weight: 300; font-size: 15.5px; line-height: 1.55; color: var(--text); max-width: 640px; margin: 0 auto 24px; }
.vmt-final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
