/* ══════════════════════════════════════════════════
   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: 20px;
  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: rgba(107, 127, 101, 1);
}

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

.vs-pkg-label {
  font-size: 13px;
  font-weight: 500;
  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: 15px;
  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: 16px;
  font-weight: 500;
  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;
  width: 240px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  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(248, 250, 252, 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: rgba(248, 250, 252, 1);
  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(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0.95) 30%, rgba(248, 250, 252, 0.6) 65%, rgba(248, 250, 252, 0) 100%);
}

.vs-who-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0.95) 30%, rgba(248, 250, 252, 0.6) 65%, rgba(248, 250, 252, 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: rgba(248, 250, 252, 1);
  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;
}

/* ── 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;
  }
}

/* ── REAL NUMBERS / CLEAR DECISIONS SECTION ─────────────────── */
.vs-numbers-section {
  background: rgba(248, 250, 252, 1);
  padding: 100px 5vw;
  overflow: hidden;
}

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

.vs-numbers-card-image {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

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

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

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

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

.vs-numbers-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  max-width: 460px;
}

/* Carousel — mirrors testi-carousel from landing page */
.vs-numbers-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 56px;
}

.vs-numbers-track-outer {
  overflow: hidden;
}

.vs-numbers-track {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.vs-numbers-card {
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  display: block;
}

.vs-numbers-btn-left,
.vs-numbers-btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: none !important;
  color: rgba(195, 196, 205, 1);
  font-size: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 3;
}

.vs-numbers-btn-left { left: 0; }
.vs-numbers-btn-right { right: 0; }

.vs-numbers-btn-left:hover,
.vs-numbers-btn-right:hover {
  color: var(--green);
  background: white;
}

.vs-numbers-btn-left:disabled,
.vs-numbers-btn-right:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vs-numbers-dots-wrap {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}

.vs-numbers-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.vs-numbers-dot.active {
  background: var(--green);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .vs-numbers-section {
    padding: 60px 5vw;
  }

  .vs-numbers-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .vs-numbers-head-left,
  .vs-numbers-head-right {
    flex: initial;
    width: 100%;
  }

  .vs-numbers-heading {
    font-size: 28px;
  }

  .vs-numbers-desc {
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
  }

  .vs-numbers-carousel {
    padding: 0 36px;
  }

  .vs-numbers-btn-left,
  .vs-numbers-btn-right {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }

  .vs-numbers-dots-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .vs-numbers-section {
    padding: 48px 5vw;
  }

  .vs-numbers-carousel {
    padding: 0 28px;
  }

  .vs-numbers-heading {
    font-size: 26px;
  }
}

/* ── THE PROBLEM SECTION ────────────────────────────── */
.vs-pain-section {
  background: #0f1a0c;
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

.vs-pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 70% at 100% 50%, rgba(68, 214, 44, 0.08), transparent 65%);
  pointer-events: none;
}

.vs-pain-inner {
  position: relative;
  margin: 0 auto;
}

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

.vs-pain-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px 120px;
}

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

.vs-pain-heading {
  font-size: clamp(40px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

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

.vs-pain-sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0;
}

.vs-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.vs-pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 48px 40px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.vs-pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.vs-pain-card:hover {
  border-color: rgba(68, 214, 44, 0.3);
  background: rgba(68, 214, 44, 0.04);
  transform: translateY(-4px);
}

.vs-pain-card:hover::before {
  opacity: 1;
}

.vs-pain-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.vs-pain-number {
  font-size: 36px;
  font-weight: 900;
  color: rgba(68, 214, 44, 0.25);
  line-height: 1;
  transition: color 0.25s;
}

.vs-pain-card:hover .vs-pain-number {
  color: rgba(68, 214, 44, 0.6);
}

.vs-pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.vs-pain-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

@media (max-width: 1100px) {
  .vs-pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vs-pain-section {
    padding: 60px 5vw;
  }

  .vs-pain-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .vs-pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .vs-pain-heading {
    font-size: 22px;
  }

  .vs-pain-sub {
    font-size: 13px;
  }

  .vs-pain-card {
    padding: 36px 28px;
    min-height: 0;
  }
}

/* ── CASES WE HELP YOU AVOID SECTION ─────────────────── */
.vs-cases-section {
  background: rgba(248, 250, 252, 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;
}

.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;
}

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

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

.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;
}

@media (max-width: 768px) {
  .vs-cases-section {
    padding: 60px 5vw;
  }

  .vs-cases-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .vs-cases-head-left,
  .vs-cases-head-right {
    flex: initial;
    width: 100%;
  }

  .vs-cases-heading {
    font-size: 28px;
  }

  .vs-cases-sub {
    font-size: 14px;
    line-height: 1.65;
  }

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

  .vs-cases-carousel {
    margin-top: 32px;
  }

  .vs-case-card {
    width: 260px;
  }
}

/* ── 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;
}

@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;
  }
}
