/* ══════════════════════════════════════════════════
   VERISAFE PAGE — STANDALONE STYLESHEET
   Independent from landing.css
   ══════════════════════════════════════════════════ */

/* ── FONT FACE ────────────────────────────── */
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ──────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #FAFBFF;
  --surface: #FFFFFF;
  --navy: rgba(15, 26, 12, 1);
  --green: rgba(68, 214, 44, 1);
  --green-dark: #38b824;
  --dark-text: rgba(26, 31, 23, 1);
  --muted: rgba(107, 127, 101, 1);
  --border: #E2E8F4;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 12px;
}

/* ── BURGER ───────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV ──────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 247, 1);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
}

.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: #5A6A85;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  cursor: pointer;
}

.nav-links > li > a:hover {
  color: var(--green);
}

.nav-dropdown {
  position: absolute;
  top: 62px;
  left: -12px;
  background: var(--green);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  backface-visibility: hidden;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: background-color 0.15s;
  background-color: transparent;
}

.nav-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 400 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none;
  align-self: center;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: var(--green);
  text-align: center;
  flex: 1;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 40px;
}

.hero-and-ticker {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

.hero h1 {
  font-size: clamp(48px, 10vw, 128px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #fff;
  overflow: visible;
}

.cycle-wrapper {
  display: inline-block;
  position: relative;
}

.cycle-text {
  color: var(--navy);
  display: inline-block;
  min-width: 2ch;
}

.cycle-cursor {
  display: inline-block;
  color: var(--navy);
  font-weight: 300;
  animation: blink-cursor 0.7s step-end infinite;
  margin-left: -0.2em;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 16px;
  color: white;
  max-width: 680px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PRICING / PACKAGES SECTION ──────────── */
.pricing-section {
  background: #f5f5f0;
  padding: 80px 60px;
}

.pricing-header {
  text-align: left;
  margin-bottom: 48px;
}

.pricing-h {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.pricing-p {
  font-size: 18px;
  font-weight: 100;
  color: rgba(107, 127, 101, 1);
  line-height: 1.05;
  padding-top: 25px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 52px) clamp(20px, 3vw, 48px) clamp(24px, 3.5vw, 48px);
  border: 1.5px solid #e8e8e8;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  flex: 1;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--green);
  border-width: 2px;
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: rgba(107, 127, 101, 1);
  line-height: 1.65;
  margin-bottom: 15px;
}

/* ── PACKAGE CARD INNER CONTENT ──────────────────── */
.vs-pkg-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.vs-pkg-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}

.vs-pkg-limit {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}

.vs-pkg-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(107, 127, 101, 1);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-top: 16px;
}

.vs-pkg-bestfor {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.vs-pkg-bestfor li {
  font-size: 14px;
  color: var(--navy);
  padding: 4px 0;
}

.vs-pkg-bestfor li::before {
  content: "→ ";
  color: var(--green-dark);
}

.vs-pkg-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.vs-pkg-includes li {
  font-size: 14px;
  color: var(--navy);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vs-pkg-includes li::before {
  content: "✓";
  color: var(--green-dark);
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(68, 214, 44, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vs-pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: auto;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.vs-pkg-btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(68, 214, 44, 0.4);
}

.vs-pkg-btn-outline:hover {
  background: rgba(68, 214, 44, 0.1);
  border-color: var(--green);
  color: var(--green-dark);
}

.vs-pkg-btn-fill {
  background: var(--green);
  color: var(--navy);
  border: 1px solid var(--green);
  box-shadow: 0 4px 20px rgba(68, 214, 44, 0.35);
}

.vs-pkg-btn-fill:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ── HERO SECTION 2 (buttons & note) ─────────────── */
.vs-hero-btn {
  background: black;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border: 2px solid black;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vs-hero-btn:hover {
  background: #fff;
  color: black;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.vs-hero-note {
  font-size: 11px;
  color: rgba(255,255,255);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  line-height: 1.7;
}

.vs-hero-note-lead {
  white-space: nowrap;
}

.vs-hero-note-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}

/* ── SECTION LABEL (shared) ──────────────────────── */
.vs-section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.vs-green {
  color: var(--green);
}

/* ── WHY VERISAFE SECTION ────────────────────────── */
.vs-why-section {
  background: rgba(238, 242, 234, 1);
  padding: 100px 5vw;
}

.vs-why-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vs-why-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.vs-why-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(107, 127, 101, 1);
  margin-bottom: 16px;
}

.vs-why-bold {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.vs-why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vs-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(47, 184, 24, 0.1);
}

.vs-feature-item:first-child {
  padding-top: 0;
}

.vs-feature-item:last-child {
  border-bottom: none;
}

.vs-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(68, 214, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(68, 214, 44, 0.2);
  color: rgba(68, 214, 44, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.vs-feature-item:hover .vs-feature-icon {
  background: rgba(68, 214, 44, 0.25);
  border-color: rgba(68, 214, 44, 0.5);
}

.vs-feature-icon svg {
  width: 17px;
  height: 17px;
  color: rgba(47, 184, 24, 1);
}

.vs-feature-item strong {
  font-size: 15px;
  color: var(--navy);
  display: block;
  margin-bottom: 5px;
  font-weight: 900 !important;
}

.vs-feature-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.vs-feature-description {
 color: rgba(107, 127, 101, 1) !important; 
}

.vs-nobreak {
  white-space: nowrap;
}

.vs-exclusive-badge {
  display: inline-block;
  background: var(--green);
  color: black;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* ── WHO IS VERISAFE FOR ─────────────────────────── */
.vs-who-section {
  background: linear-gradient(180deg, #f8f8f4 0%, #f0fdf4 100%);
  padding: 100px 0;
}

.vs-who-inner {
  margin: 0 auto;
}

.vs-who-section .vs-section-label,
.vs-who-heading,
.vs-who-desc,
.vs-who-carousel {
  padding-left: 5vw;
  padding-right: 5vw;
}

.vs-who-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.vs-who-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
}

.vs-who-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.vs-who-carousel::before,
.vs-who-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  pointer-events: none;
  z-index: 2;
}

.vs-who-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(240, 253, 244, 1) 0%, rgba(240, 253, 244, 0.95) 30%, rgba(240, 253, 244, 0.6) 65%, rgba(240, 253, 244, 0) 100%);
}

.vs-who-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(240, 253, 244, 1) 0%, rgba(240, 253, 244, 0.95) 30%, rgba(240, 253, 244, 0.6) 65%, rgba(240, 253, 244, 0) 100%);
}

.vs-who-track-outer {
  overflow: hidden;
  padding: 24px 0 32px;
}

.vs-who-cards {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: vsWhoScroll 45s linear infinite;
}

.vs-who-cards:hover {
  animation-play-state: paused;
}

@keyframes vsWhoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.vs-who-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e5e5e0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s;
}

.vs-who-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.vs-who-card-icon {
  font-size: 24px;
  margin-bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4edda;
}

.vs-who-card-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(47, 184, 24, 1);
}

.vs-who-card strong {
  font-size: 16px;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

.vs-who-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── HOW IT WORKS SECTION ────────────────────────── */
.vs-how-section {
  background: var(--surface);
  padding: 100px 5vw;
}

.vs-how-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.vs-how-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.vs-how-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(107, 127, 101, 1);
  margin-bottom: 40px;
}

.vs-how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vs-how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(68,214,44,0.15);
}

.vs-how-step:last-child {
  border-bottom: none;
}

.vs-step-num {
  font-size: 40px;
  font-weight: 900;
  color: rgba(68, 214, 44, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  min-width: 50px;
  transition: color 0.25s;
}

.vs-how-step:hover .vs-step-num {
  color: var(--green-dark);
}

.vs-how-step strong {
  font-size: 17px;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.vs-how-step p {
  font-size: 14px;
  color: rgba(107, 127, 101, 1);
  line-height: 1.65;
  margin: 0;
}

.vs-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

/* ── HOW IT WORKS — RIGHT IMAGE ──────────────────── */
.vs-how-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
}

/* ── SCREENING MOCKUP ────────────────────────────── */
.vs-mockup {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 1px solid #e5e5e0;
}

.vs-mockup-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.vs-mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4d4d4;
}

.vs-mockup-dots span:first-child { background: #ff5f57; }
.vs-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.vs-mockup-dots span:nth-child(3) { background: #28c840; }

.vs-mockup-input {
  background: #f5f5f0;
  border: 1px solid #e5e5e0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
}

.vs-mockup-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 24px;
}

.vs-mockup-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vs-result-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #f0f0ec;
  font-size: 14px;
  color: var(--navy);
}

.vs-result-row span:nth-child(2) {
  flex: 1;
}

.vs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vs-dot-green { background: #00c853; }
.vs-dot-yellow { background: #ffbd2e; }

.vs-result-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.vs-badge-clear {
  color: #00c853;
  background: #f0fdf4;
  border: 1px solid #d4edda;
}

.vs-badge-review {
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

/* ── GOOGLE REVIEWS (EMBEDSOCIAL) ─────────── */
.grev-section {
  background: rgba(248, 249, 247, 1);
  padding: 48px 40px;
  overflow: hidden;
}

.grev-header {
  text-align: center;
  margin-bottom: 28px;
}

.grev-header-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ── CASES WE HELP YOU AVOID SECTION ─────────────────── */
.vs-cases-section {
  background: rgba(248, 249, 247, 1);
  padding: 100px 5vw;
}

.vs-cases-inner {
  margin: 0 auto;
}

.vs-cases-head {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 56px;
}

.vs-cases-head-left {
  flex-shrink: 0;
}

.vs-cases-head-right {
  flex: 1;
}

.vs-cases-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  margin: 0;
}

.vs-cases-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.vs-cases-sub-break {
  display: block;
}

@media (max-width: 768px) {
  .vs-cases-sub-break {
    display: inline;
  }
}

.vs-cases-carousel {
  position: relative;
  max-width: 100%;
  margin: 40px auto 0;
}

.vs-cases-track-outer {
  overflow: hidden;
  padding: 16px 0 60px;
}

.vs-cases-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: vsCasesScroll 60s linear infinite;
  animation-delay: -30s;
}

.vs-cases-track:hover {
  animation-play-state: paused;
}

@keyframes vsCasesScroll {
  0% { transform: translateX(calc(-50% - 20px)); }
  100% { transform: translateX(0); }
}

.vs-case-card {
  background: transparent;
  display: block;
  flex-shrink: 0;
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vs-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.vs-case-thumb {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

/* ── FLOATING CTAs ─────────────────────────────────── */
.vs-floating-ctas {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.vs-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 184, 30, 1);
  color: #fff;
  padding: 8px 22px 8px 8px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vs-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(46, 184, 30, 0.5);
}

.vs-fab-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.vs-fab-icon svg {
  width: 15px;
  height: 15px;
}

.vs-fab-label {
  white-space: nowrap;
}

/* ── SLOGAN SECTION ───────────────────────── */
.slogan-section {
  background: rgba(68, 214, 44, 1);
  padding: 80px 40px;
  text-align: center;
}

.slogan-section h2:first-child {
  color: black;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 auto 16px;
}

.slogan-section h2:nth-child(2) {
  color: white;
  font-size: 22px;
  font-weight: 400 !important;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 12px auto 0;
  max-width: none;
  white-space: nowrap;
}

.slogan-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 36px;
}

.btn-slogan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-slogan-outline {
  color: #44d62c;
  background: #fff;
  border: 2px solid #fff;
}

.btn-slogan-outline:hover {
  background: #f0f0f0;
}

.btn-slogan-fill {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}

.btn-slogan-fill:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: #f8f8f6;
  padding: 56px 60px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
}

.footer-heading {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #5A6A85;
  margin-bottom: 16px;
  text-transform: none;
}

.footer-col a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.footer-bar {
  background: var(--green);
  padding: 14px 60px;
  font-size: 11px;
  color: white;
  text-align: center;
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */

@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
    animation: navSlideDown 0.25s ease forwards;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links > li:last-child > a {
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f4f4f4;
    border-radius: 0 0 8px 8px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .nav-dropdown a {
    color: var(--navy);
    padding: 10px 8px;
  }

  .hero {
    padding: 40px 24px 40px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 56px);
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .pricing-section {
    padding: 60px 24px;
  }

  .pricing-h {
    font-size: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }

  .vs-why-section {
    padding: 60px 24px;
  }

  .vs-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vs-why-heading {
    font-size: clamp(26px, 6vw, 36px);
  }

  .vs-who-section {
    padding: 60px 0;
  }

  .vs-who-section .vs-section-label,
  .vs-who-heading,
  .vs-who-desc,
  .vs-who-carousel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .vs-who-heading {
    font-size: clamp(26px, 6vw, 36px);
  }

  .vs-who-carousel::before,
  .vs-who-carousel::after {
    width: 80px;
  }

  .vs-who-card {
    padding: 24px 20px;
  }

  .vs-how-section {
    padding: 60px 24px;
  }

  .vs-how-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vs-how-heading {
    font-size: clamp(26px, 6vw, 36px);
  }

  .vs-step-num {
    font-size: 32px;
    width: 44px;
    min-width: 44px;
  }

  .vs-how-step {
    gap: 16px;
    padding: 24px 0;
  }

  footer {
    padding: 40px 24px 40px;
    overflow: hidden;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    flex: 1;
  }

  .footer-right {
    align-items: flex-end;
    flex-shrink: 0;
  }

  .footer-bar {
    padding: 14px 24px;
  }

  .slogan-section {
    padding: 60px 24px;
  }

  .slogan-section h2:first-child {
    font-size: clamp(24px, 6vw, 36px);
    letter-spacing: -0.5px;
  }

  .slogan-section h2:nth-child(2) {
    font-size: 16px;
    white-space: normal;
    max-width: 600px;
  }

  .slogan-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-slogan {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .vs-hero-btn {
    width: 100%;
    text-align: center;
  }

  .vs-who-carousel::before,
  .vs-who-carousel::after {
    width: 50px;
  }

  .vs-feature-item {
    gap: 14px;
    padding: 20px 0;
  }

  .vs-feature-icon {
    width: 34px;
    height: 34px;
  }

  .vs-feature-icon svg {
    width: 15px;
    height: 15px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    width: 100%;
    justify-items: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-right {
    align-items: center;
    width: 100%;
  }

  .footer-logo-img {
    height: 70px;
  }
}

/* ══════════════════════════════════════════════════
   VERITY BGC — PAGE-SPECIFIC STYLES
   ══════════════════════════════════════════════════ */

/* ── SECTION 1: DARK HERO ───────────────── */
.bgc-hero {
  background: rgba(245, 251, 240, 1);
  color: var(--text);
  padding: 100px 5vw;
}
.bgc-hero-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.bgc-hero-h { font-size: clamp(32px, 5vw, 52px); font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.bgc-green { color: var(--green); }
.bgc-hero-sub { color: var(--muted); font-size: 17px; margin-bottom: 48px; }

.bgc-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.bgc-plan { display: flex; justify-content: center; }
.bgc-plan-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: rgba(68, 214, 44, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bgc-plan-circle:hover {
  background: rgba(68, 214, 44, 0.18);
  transform: translateY(-4px);
}
.bgc-plan-circle strong { color: var(--green); font-size: 24px; margin-bottom: 8px; }
.bgc-plan-circle span { color: var(--muted); font-size: 15px; line-height: 1.5; }

.bgc-hero-callout { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.bgc-hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.bgc-btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid var(--green);
}
.bgc-btn-fill { background: var(--green); color: #fff; }
.bgc-btn-fill:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(68,214,44,0.3); }
.bgc-btn-outline { background: var(--green); color: #fff; }
.bgc-btn-outline:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(68,214,44,0.3); }

/* ── SECTION 2: SCREENING SCOPE ────────── */
.bgc-scope-section {
  background: var(--green);
  color: var(--green);
  padding: 100px 5vw;
}
.bgc-scope { text-align: center; max-width: 1200px; margin: 0 auto; }
.bgc-scope-label { color: #fff; font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }
.bgc-scope-h { font-size: clamp(32px, 5vw, 52px); font-weight: 700; margin-bottom: 14px; line-height: 1.2; color: #fff; }
.bgc-scope-h .bgc-green { color: rgba(11, 27, 34, 1); }
.bgc-scope-sub { color: rgba(255, 255, 255, 0.82); font-size: 17px; margin-bottom: 36px; }
.bgc-scope-ctas {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.bgc-scope-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  background: rgba(11, 27, 34, 1);
  color: #fff;
  border: 2px solid rgba(11, 27, 34, 1);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.bgc-scope-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 27, 34, 0.24);
}
/* Pill carousel rows */
.bgc-checks-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.bgc-checks-row {
  display: flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  animation: bgcMarqueeLtr 30s linear infinite;
}
.bgc-checks-row-rtl { animation: bgcMarqueeRtl 36s linear infinite !important; }
.bgc-checks-row:hover { animation-play-state: paused; }

@keyframes bgcMarqueeLtr {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bgcMarqueeRtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.bgc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  transition: all 0.2s;
  cursor: default;
}
.bgc-pill:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}
.bgc-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.bgc-scope-note {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.bgc-scope-note svg { width: 14px; height: 14px; min-width: 14px; color: #fff; flex-shrink: 0; }

/* ── SECTION 2: WHY VERITY BGC ────────── */
.bgc-why { background: var(--bg); padding: 100px 5vw; }
.bgc-why-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.bgc-section-label { color: var(--green); font-size: 13px; letter-spacing: 1.5px; margin-bottom: 12px; font-weight: 600; text-transform: uppercase; }
.bgc-section-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 248, 232, 1);
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 6px 16px;
}
.bgc-section-label-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: bgcDotPulse 2s ease-in-out infinite;
}
@keyframes bgcDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.bgc-center { text-align: center; }
.bgc-why-h { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.bgc-green-italic { color: var(--green); font-style: italic; }
.bgc-why-sub { color: rgba(74, 85, 104, 1); font-size: 15px; max-width: 640px; margin: 0 auto 48px; line-height: 1.6; }
.bgc-why-sub-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 300;
  text-align: left;
  color: var(--green);
  white-space: nowrap;
}
.bgc-why-sub-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 31, 46, 0.1);
}

.bgc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bgc-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 30px;
  min-height: 258px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.bgc-why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.bgc-why-card:hover::before { transform: scaleX(1); }
.bgc-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.bgc-why-card-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}
.bgc-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(68, 214, 44, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  color: var(--green);
  transition: all 0.3s;
}
.bgc-why-card:hover .bgc-why-icon { background: rgba(68,214,44,0.25); }
.bgc-why-icon svg { width: 18px; height: 18px; }
.bgc-why-card strong {
  display: block;
  max-width: 215px;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.35;
}
.bgc-why-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── SECTION 3: END-TO-END SERVICE ─────── */
.bgc-service {
  background: linear-gradient(180deg, #f5f7fc 0%, #eef3f9 100%);
  padding: 100px 5vw;
}
.bgc-service-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.bgc-service-h { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--navy); line-height: 1.15; margin: 12px 0 20px; }
.bgc-service-sub { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 24px; max-width: 460px; }
.bgc-service-list { list-style: none; padding: 0; }
.bgc-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(30, 42, 58, 1);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}
.bgc-service-list svg {
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

/* Report mockup */
.bgc-report {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  max-width: 440px;
  margin-left: auto;
  animation: bgcFloat 6s ease-in-out infinite;
}
@keyframes bgcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.bgc-report-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 16px; }
.bgc-report-title { font-size: 11px; letter-spacing: 2px; color: rgba(138, 150, 170, 1); font-weight: 600; }
.bgc-report-badge { font-size: 11px; letter-spacing: 0.5px; color: var(--green); background: rgba(255, 248, 232, 1); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.bgc-report-person { margin-bottom: 16px; padding-bottom: 16px; }
.bgc-report-person strong { display: block; font-size: 18px; letter-spacing: 0.3px; color: var(--navy); margin-bottom: 4px; }
.bgc-report-person span { color: rgba(138, 150, 170, 1); font-size: 12px; letter-spacing: 0.3px; }
.bgc-report-rows { list-style: none; padding: 0; }
.bgc-report-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--muted);
}
.bgc-report-rows li span:first-child { color: var(--navy); }
.bgc-status { font-size: 12px; letter-spacing: 0.3px; padding: 3px 10px; border-radius: 999px; font-weight: 600; }
.bgc-status-ok { color: var(--green); background: rgba(255, 248, 232, 1); }
.bgc-status-pending { color: rgba(255, 0, 0, 1); background: rgba(255, 248, 232, 1); }
.bgc-report-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.bgc-report-foot span { display: block; font-size: 10px; letter-spacing: 1.5px; color: rgba(138, 150, 170, 1); margin-bottom: 3px; }
.bgc-report-foot strong { font-size: 13px; letter-spacing: 0.3px; color: var(--navy); }

/* ── SECTION 4: DECISION MAKERS ────────── */
.bgc-who { background: var(--bg); padding: 100px 5vw; }
.bgc-who-inner { max-width: 1200px; margin: 0 auto; }
.bgc-who-head {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 56px;
}
.bgc-who-head-left {
  flex-shrink: 0;
}
.bgc-who-head-right {
  flex: 1;
}
.bgc-who-h { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--navy); margin: 0; line-height: 1.2; }
.bgc-who-sub { color: var(--muted); font-size: 15px; max-width: 640px; margin: 0; line-height: 1.8; }
.bgc-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bgc-who-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.bgc-who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.bgc-who-card:hover::before { transform: scaleX(1); }
.bgc-who-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.bgc-who-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 248, 232, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 14px;
  transition: all 0.3s;
}
.bgc-who-card:hover .bgc-who-icon { background: rgba(255, 248, 232, 1); }
.bgc-who-icon svg { width: 20px; height: 20px; }
.bgc-who-card strong { display: block; font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.bgc-who-card p { color: var(--muted); font-size: 14px; line-height: 1.6; font-weight: 100;}

/* ── MOBILE ──────────────────────────── */
@media (max-width: 960px) {
  .bgc-hero { padding: 80px 24px 60px; }
  .bgc-plans { grid-template-columns: 1fr; gap: 20px; max-width: 260px; }
  .bgc-plan-circle { width: 180px; height: 180px; }
  .bgc-why, .bgc-who, .bgc-service { padding: 80px 24px; }
  .bgc-who-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .bgc-who-head-left,
  .bgc-who-head-right {
    flex: initial;
    width: 100%;
  }
  .bgc-why-grid, .bgc-who-grid { grid-template-columns: 1fr; gap: 16px; }
  .bgc-service-inner { grid-template-columns: 1fr; gap: 40px; }
  .bgc-report { margin-left: 0; max-width: 100%; }
  .bgc-scope-section { padding: 80px 24px; }
  .bgc-pill { font-size: 12px; padding: 8px 16px; }
  .bgc-hero-ctas { flex-direction: column; align-items: stretch; max-width: 280px; margin-left: auto; margin-right: auto; }
  .vs-cases-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .vs-cases-head-left,
  .vs-cases-head-right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .bgc-hero { padding: 60px 20px; }
  .bgc-why, .bgc-who, .bgc-service { padding: 60px 20px; }
  .bgc-why-card, .bgc-who-card { padding: 20px; }
  .bgc-why-card strong { font-size: 16px; }
  .bgc-why-card p, .bgc-who-card p { font-size: 13px; }
  .bgc-service-list li { font-size: 13px; }
  .bgc-hero-sub, .bgc-why-sub, .bgc-who-sub, .bgc-service-sub, .bgc-scope-sub { font-size: 14px; }
}
@media (max-width: 480px) {
  .vs-floating-ctas {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .vs-fab {
    font-size: 13px;
    padding: 6px 18px 6px 6px;
  }

  .vs-fab-icon {
    width: 26px;
    height: 26px;
  }

  .vs-fab-icon svg {
    width: 13px;
    height: 13px;
  }

  .bgc-plan-circle { width: 160px; height: 160px; padding: 18px; }
  .bgc-plan-circle strong { font-size: 16px; }
  .bgc-plan-circle span { font-size: 11px; }
}
