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

    html {
      scroll-behavior: smooth
    }

    :root {
      --bg: #FAFBFF;
      --surface: #FFFFFF;
      --navy: #0C1E3C;
      --green: rgba(68, 214, 44, 1);
      --green-dark: #38b824;
      --dark-text: rgba(26, 31, 23, 1);
      --muted: #5A6A85;
      --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;
      /* Body of Text base */
    }

    /* ── TYPOGRAPHY SCALE ─────────────────────── */
    /* Dynamic Header: 128px | Header: 48px | Subheader: 22px | Hook Body: 24px | Body: 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(255, 255, 255, 0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      height: 64px;
    }

    /* WordPress admin bar offset for logged-in users */
    .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-logo-icon {
      display: none;
    }

    .nav-logo-text {
      display: none;
    }

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

    .nav-links>li {
      position: relative
    }

    .nav-links>li>a {
      color: var(--muted);
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 20px 0;
      cursor: pointer;
    }

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

    /* Dropdown */
    .nav-dropdown {
      position: absolute;
      top: 62px;
      left: -12px;
      background: var(--green);
      /* border-radius: 8px; */
      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: 600;
      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: 700 !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 {
      background: linear-gradient(90deg, #003300, #001a00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      min-width: 2ch;
    }

    .cycle-cursor {
      display: inline-block;
      color: #003300;
      font-weight: 300;
      animation: blink-cursor 0.7s step-end infinite;
      margin-left: -0.2em;
      -webkit-text-fill-color: #003300;
    }

    @keyframes blink-cursor {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    .hero-sub {
      font-size: 24px;
      color: white;
      max-width: 680px;
      /* margin: 0 auto 36px; */
      line-height: 1.7;
      font-weight: 500;
    }

    .hero-sub-2nd {
       font-size: 24px;
      color: white;
      max-width: 680px;
      margin: 0 auto 36px;
      line-height: 1.7;
      font-weight: 500;
    }

    .hero-sub strong {
      color: white;
      font-weight: 700
    }

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

    .btn-hero {
      background: white;
      color: var(--green);
      padding: 15px 32px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
    }

    /* Floating CTA */
    .floating-cta {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 999;
      background: rgba(46, 184, 30, 1);
      color: #fff;
      padding: 14px 26px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 1;
      transform: translateY(0);
      transition: box-shadow 0.2s, transform 0.2s;
    }

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

    /* ── TRUST TICKER ─────────────────────────── */
    .trust-ticker {
      background: rgba(0, 0, 0, 1);
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-flex;
      gap: 48px;
      will-change: transform
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      color: white;
      flex-shrink: 0;
    }

    .ticker-bullet {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(68, 214, 44, 1);
      flex-shrink: 0;
    }

    /* ── SECTION 2: VERIFICATION BUILDS CONFIDENCE ── */
    .video-section {
      background: rgba(68, 214, 44, 1);
      padding: 80px 40px;
      text-align: center;
    }

    .video-section h2 {
      font-size: 48px;
      font-weight: 900;
      color: var(--dark-text);
      padding-bottom: 12px;
      letter-spacing: -1px;
      max-width: 640px;
      margin: 0 auto;
    }

    .video-section .section-sub {
      color: var(--dark-text);
      font-size: 22px;
      line-height: 1.7;
      /* max-width: 640px; */
      margin: 0 auto 48px;
    }

    @media (max-width: 960px) {
      .video-section .section-sub {
        max-width: 640px
      }
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto 1fr auto;
      column-gap: 50px;
      row-gap: 12px;
      max-width: 1500px;
      margin: 0 auto;
    }

    .video-card {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/4;
      background: #111;
      transition: transform 0.3s;
      cursor: pointer;
    }

    .video-card:hover {
      transform: translateY(-4px)
    }

    .video-card iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
      pointer-events: none;
    }

    .video-card.playing iframe {
      opacity: 1;
      pointer-events: auto;
    }

    .video-card-thumb {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #222;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .video-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    /* Play button: top-left, green fill, white play icon */
    .video-play-btn {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 3;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--green);
      border: 4px solid white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    .video-play-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4)
    }

    .video-play-btn svg {
      width: 30px;
      height: 30px;
      display: block;
      margin: auto;
    }

    .video-card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
      padding: 48px 16px 16px;
      color: white;
      font-size: 12px;
      font-weight: 600;
      z-index: 3;
      pointer-events: none;
      line-height: 1.5;
    }

    .video-card-name {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 2px
    }

    .video-card-role {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7)
    }

    .video-item {
      display: grid;
      grid-row: span 3;
      grid-template-rows: subgrid;
    }

    .video-caption-top {
      color: rgba(255, 255, 255, 0.75);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.5;
      text-align: center;
      align-self: end;
      /* max-width: 300px; */
    }

    .video-caption-bottom {
      margin: 8px 0 0;
      color: rgba(17, 34, 64, 1);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.5;
      text-align: center;
    }

    /* ── CLIENT LOGOS CAROUSEL (2 rows) ────────── */
    .clients-section {
      background: white;
      padding: 48px 0;
      overflow: hidden;
      /* border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border); */
      position: relative;
    }

    .clients-section::before,
    .clients-section::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }

    .clients-section::before {
      left: 0;
      background: linear-gradient(90deg, white, transparent)
    }

    .clients-section::after {
      right: 0;
      background: linear-gradient(270deg, white, transparent)
    }

    .client-row-container {
      margin-bottom: 50px;
    }

    .clients-row {
      display: flex;
      align-items: center;
      width: max-content;
      margin-bottom: 24px;
      will-change: transform;
    }

    .clients-row:last-child {
      margin-bottom: 0
    }

    .client-logo {
      height: 60px;
      min-width: 80px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
      margin-right: 64px;
    }

    .client-placeholder {
      height: 40px;
      padding: 8px 20px;
      border-radius: 8px;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      color: #555;
      flex-shrink: 0;
      margin-right: 64px;
      white-space: nowrap;
      transition: opacity 0.3s;
      opacity: 0.6;
    }

    .client-placeholder:hover {
      opacity: 1
    }

    /* ── TESTIMONIALS ─────────────────────────── */
    .testi-section {
      background: var(--surface);
      padding: 50px 24px;
      overflow: hidden
    }

    .testi-section .section-head {
      text-align: center;
      margin-bottom: 48px
    }

    .testi-section h2 {
      font-size: clamp(24px, 5vw, 48px);
      font-weight: 900;
      color: var(--navy);
      /* letter-spacing: -0.5px; */
    }

    .testi-carousel {
      position: relative;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 56px
    }

    .testi-track-outer {
      overflow: hidden;
      border-radius: 12px
    }

    .testi-track {
      display: flex;
      gap: 24px;
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .testi-card {
      flex-shrink: 0;
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 60px;
      overflow: hidden;
      /* Width set by JS based on container measurement */
    }

    .testi-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .testi-quote {
      font-size: 12px;
      line-height: 1.85;
      color: var(--muted);
      flex: 1;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      min-width: 0;
    }

    .testi-author > div:last-child {
      flex: 1;
      min-width: 0;
    }

    .testi-name, .testi-role {
      white-space: normal;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    .testi-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      /* background: var(--green); */
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 18px;
      flex-shrink: 0;
    }

    .testi-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testi-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy)
    }

    .testi-role {
      font-size: 13px;
      color: var(--muted);
      margin-top: 2px
    }

    /* Arrow buttons on left and right sides */
    .testi-btn-left,
    .testi-btn-right {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      /* border-radius: 50%; */
      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;
      /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    }

    .testi-btn-left {
      left: 0
    }

    .testi-btn-right {
      right: 0
    }

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

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

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

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

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

    /* ── GOOGLE REVIEWS (EMBEDSOCIAL) ─────────── */
    .grev-section {
      background: white;
      padding: 48px 40px;
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    /* ── STATS / ROAD TO 1 MIL ───────────────── */
    .stats-section {
      background: #0a0a0a;
      padding: 80px 60px;
      overflow: hidden;
      position: relative;
    }

    .stats-tag {
      text-align: center;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(68, 214, 44, 0.15);
      border: 1px solid rgba(68, 214, 44, 0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green);
      margin: 0 auto 20px;
      width: fit-content;
    }

    .stats-tag-dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: blink-dot 2s infinite;
      display: inline-block;
    }

    @keyframes blink-dot {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    .stats-title {
      text-align: center;
      font-size: clamp(40px, 7vw, 96px);
      font-weight: 900;
      color: white;
      letter-spacing: -3px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stats-title span {
      color: var(--green)
    }

    .stats-subtitle {
      text-align: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 16px
    }

    .stats-bar {
      width: 100%;
      max-width: 600px;
      height: 3px;
      margin: 0 auto 48px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 2px;
      overflow: hidden;
    }

    .stats-bar-fill {
      height: 100%;
      width: 16%;
      background: var(--green);
      border-radius: 2px;
      animation: statsBarGrow 2s ease-out forwards;
    }

    @keyframes statsBarGrow {
      from {
        width: 0
      }

      to {
        width: 16%
      }
    }

    .stats-map-area {
      display: grid;
      grid-template-columns: 250px 1fr 280px;
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto 48px;
      align-items: start;
    }

    .stats-panel {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 24px;
    }

    .stats-panel-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .stats-panel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0
    }

    .stats-industry-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
    }

    .stats-industry-item:last-child {
      border-bottom: none
    }

    .stats-ind-bar {
      width: 60px;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      overflow: hidden;
    }

    .stats-ind-bar-fill {
      height: 100%;
      background: var(--green);
      border-radius: 2px
    }

    .stats-map-center {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      min-height: 300px;
    }

    .stats-map-svg {
      width: 100%;
      max-width: 360px;
      height: auto
    }

    .stats-rf-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 12px;
    }

    .stats-rf-item:last-child {
      border-bottom: none
    }

    .stats-rf-name {
      color: rgba(255, 255, 255, 0.6)
    }

    .stats-rf-count {
      color: var(--green);
      font-weight: 700
    }

    .stats-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 0 auto 32px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 28px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px
    }

    .stat-card:nth-child(1)::before {
      background: var(--green)
    }

    .stat-card:nth-child(2)::before {
      background: #E74C3C
    }

    .stat-card:nth-child(3)::before {
      background: #3498DB
    }

    .stat-card-number {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 900;
      color: white;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -1px;
    }

    .stat-card:nth-child(1) .stat-card-number {
      color: var(--green)
    }

    .stat-card:nth-child(2) .stat-card-number {
      color: #E74C3C
    }

    .stat-card:nth-child(3) .stat-card-number {
      color: #3498DB
    }

    .stat-card-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.4
    }

    .stats-breakdown-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      padding: 10px 24px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
    }

    .stats-breakdown-btn:hover {
      background: rgba(68, 214, 44, 0.1);
      border-color: var(--green);
      color: var(--green);
    }

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

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

    .pricing-tag {
      display: inline-flex;
      align-items: center;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 16px;
      border: 1px solid var(--green);
      border-radius: 50px;
      padding: 6px 16px;
    }

    .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(0, 0, 0, 0.75);
      /* letter-spacing: -1.5px; */
      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-wrap .pricing-cta {
      align-self: center
    }

    .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: var(--muted);
      line-height: 1.65;
      margin-bottom: 28px;
      min-height: 56px
    }

    .pricing-divider {
      display: none;
    }

    .pricing-features {
      list-style: none;
      margin: 0 0 28px;
      padding: 0;
      display: flex;
      flex-direction: column;
      flex: 1
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #333;
      padding: 11px 0;
      border-bottom: 1px solid #f5f5f5;
      line-height: 1.45;
    }

    .pricing-features li:first-child {
      border-top: 1px solid #f5f5f5;
    }

    .pricing-features li:last-child {
      border-bottom: none
    }

    .pricing-name-sub {
      color: rgba(123, 123, 123, 1);
      font-weight: 700;
    }

    .pricing-tagline {
      font-size: 14px;
      font-weight: 900;
      color: var(--navy);
      text-align: center;
      padding-top: 20px;
      margin-top: auto;
    }

    .pricing-check {
      color: var(--green);
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0
    }

    .pricing-cta {
      width: 100%;
      max-width: 300px;
      display: inline-block;
      padding: 14px 32px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 800;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      font-family: inherit;
      align-self: center;
    }

    .pricing-cta-outline {
      background: white;
      color: var(--navy);
      border: 1.5px solid #ddd
    }

    .pricing-cta-outline:hover {
      border-color: var(--green);
      color: var(--green)
    }

    .pricing-cta-fill {
      background: var(--green);
      color: white;
      border: 1.5px solid var(--green)
    }

    .pricing-cta-fill:hover {
      background: var(--green-dark)
    }

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

    .slogan-section h2:first-child {
      color: rgba(255, 255, 255, 1);
      font-size: 48px;
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1.2;
      margin: 0 auto 16px;
      /* max-width: 800px; */
    }

    .slogan-section h2:nth-child(2) {
      color: rgba(17, 34, 64, 1);
      font-size: 48px;
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1.2;
      margin: 0 auto;
    }

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

    .btn-slogan {
      padding: 14px 36px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      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: 600;
      color: var(--muted);
      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, .hero-sub-2nd {
        font-size: 18px
      }

      .video-section h2 {
        font-size: 32px
      }

      .video-section .section-sub {
        font-size: 16px
      }

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

      .testi-carousel {
        padding: 0 32px;
      }

      .testi-track {
        align-items: flex-start;
      }

      .testi-track-outer {
        transition: height 0.4s ease;
      }

      .testi-btn-left {
        left: -4px;
      }

      .testi-btn-right {
        right: -4px;
      }

      .testi-avatar {
        width: 64px;
        height: 64px;
        font-size: 14px;
      }

      .testi-author {
        flex-direction: column;
        align-items: flex-start;
      }

      .stats-section {
        padding: 60px 24px
      }

      .stats-map-area {
        grid-template-columns: 1fr
      }

      .stats-cards {
        grid-template-columns: 1fr
      }

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

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

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

      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
      }

    @media (max-width: 480px) {
      .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;
      }
    }

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

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

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

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

    /* ══ VERITYPULSE DASHBOARD ══════════════════ */
    /* ══════════════════════════════════════════════════════════════════════════════
   VERITYPULSE STYLES
   ══════════════════════════════════════════════════════════════════════════════ */

    .veritypulse-section {
      background: #0a0a0a;
      padding: 80px 40px;
      font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
      position: relative;
      overflow: hidden;
    }

    .veritypulse-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Header */
    .vp-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .vp-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(68, 214, 44, 0.1);
      border: 1px solid rgba(68, 214, 44, 0.3);
      border-radius: 100px;
      padding: 8px 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #44D62C;
      margin-bottom: 20px;
    }

    .vp-pulse-dot {
      width: 8px;
      height: 8px;
      background: #44D62C;
      border-radius: 50%;
      animation: vpPulse 2s infinite;
    }

    @keyframes vpPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8);
      }
    }

    .vp-title {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      color: white;
      line-height: 1.1;
      letter-spacing: -2px;
      margin-bottom: 12px;
    }

    .vp-title span {
      color: #44D62C;
    }

    .vp-subtitle {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.5);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Data Status Indicator */
    .vp-data-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(68, 214, 44, 0.1);
      border: 1px solid rgba(68, 214, 44, 0.2);
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 12px;
    }

    .vp-data-status.error {
      background: rgba(239, 68, 68, 0.1);
      border-color: rgba(239, 68, 68, 0.2);
      color: #ef4444;
    }

    .vp-data-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #44D62C;
      animation: vpPulse 2s infinite;
    }

    .vp-data-status.error .vp-data-status-dot {
      background: #ef4444;
    }

    /* Main Layout */
    .vp-main-grid {
      display: grid;
      grid-template-columns: 280px 1fr 280px;
      gap: 24px;
      margin-bottom: 40px;
    }

    /* Grid collapse handled in responsive section below */

    /* Live Feed Panel */
    .vp-feed-panel {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px;
      max-height: 500px;
      overflow: hidden;
    }

    .vp-panel-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .vp-panel-title::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #44D62C;
      border-radius: 50%;
      animation: vpPulse 1.5s infinite;
    }

    .vp-feed-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      gap: 12px;
    }

    .vp-feed-header .vp-panel-title {
      margin-bottom: 0;
    }

    .vp-today-flags-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(239, 68, 68, 0.15);
      border: 1px solid rgba(239, 68, 68, 0.3);
      border-radius: 8px;
      padding: 6px 12px;
      animation: vpBadgePulse 2s infinite;
    }

    @keyframes vpBadgePulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3);
      }

      50% {
        box-shadow: 0 0 12px 2px rgba(239, 68, 68, 0.2);
      }
    }

    .vp-today-icon {
      font-size: 14px;
    }

    .vp-today-count {
      font-size: 16px;
      font-weight: 900;
      color: #ef4444;
      min-width: 20px;
      text-align: center;
    }

    .vp-today-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 600;
    }

    .vp-feed-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-height: 420px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(68, 214, 44, 0.3) transparent;
    }

    .vp-feed-list::-webkit-scrollbar {
      width: 4px;
    }

    .vp-feed-list::-webkit-scrollbar-thumb {
      background: rgba(68, 214, 44, 0.3);
      border-radius: 4px;
    }

    .vp-feed-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 12px 14px;
      animation: vpFeedIn 0.4s ease;
      transition: all 0.2s;
    }

    .vp-feed-item:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .vp-feed-item.red-flag {
      border-left: 3px solid #ef4444;
      background: rgba(239, 68, 68, 0.05);
    }

    .vp-feed-item.clean {
      border-left: 3px solid #44D62C;
    }

    @keyframes vpFeedIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .vp-feed-time {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 4px;
    }

    .vp-feed-industry {
      font-size: 12px;
      font-weight: 700;
      color: white;
      margin-bottom: 2px;
    }

    .vp-feed-category {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
    }

    .vp-feed-value {
      font-size: 11px;
      font-weight: 700;
      margin-top: 4px;
    }

    .vp-feed-value.red {
      color: #ef4444;
    }

    .vp-feed-value.green {
      color: #44D62C;
    }

    /* Map Container */
    .vp-map-container {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 24px;
      position: relative;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .vp-map-wrapper {
      position: relative;
      width: 100%;
      max-width: 800px;
    }

    .vp-map-image {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 0 20px rgba(68, 214, 44, 0.15));
    }

    .vp-map-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .vp-hq-label {
      position: absolute;
      background: #44D62C;
      color: white;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      z-index: 10;
      animation: vpHqPulse 2s infinite;
      box-shadow: 0 0 15px rgba(68, 214, 44, 0.5);
    }

    .vp-hq-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      background: #44D62C;
      border-radius: 50%;
      z-index: 9;
      box-shadow: 0 0 20px rgba(68, 214, 44, 0.8);
      animation: vpHqPulse 2s infinite;
    }

    @keyframes vpHqPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 15px rgba(68, 214, 44, 0.5);
      }

      50% {
        transform: scale(1.2);
        opacity: 0.85;
        box-shadow: 0 0 25px rgba(68, 214, 44, 0.8);
      }
    }

    .vp-grid-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      background:
        linear-gradient(rgba(68, 214, 44, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 214, 44, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    /* Stats Panel */
    .vp-stats-panel {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px;
    }

    .vp-stats-panel.vp-flags-only {
      display: flex;
      flex-direction: column;
    }

    .vp-rank-section-full {
      flex: 1;
      display: flex;
      flex-direction: column;
      margin-bottom: 0;
    }

    .vp-rank-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .vp-rank-list-expanded {
      flex: 1;
      overflow-y: auto;
      max-height: 450px;
      scrollbar-width: thin;
      scrollbar-color: rgba(239, 68, 68, 0.3) transparent;
    }

    .vp-rank-list-expanded::-webkit-scrollbar {
      width: 4px;
    }

    .vp-rank-list-expanded::-webkit-scrollbar-thumb {
      background: rgba(239, 68, 68, 0.3);
      border-radius: 4px;
    }

    .vp-rank-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 8px;
      transition: all 0.2s;
    }

    .vp-rank-item:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .vp-rank-num {
      font-size: 11px;
      font-weight: 700;
      color: #44D62C;
      min-width: 18px;
    }

    .vp-rank-name {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      flex: 1;
    }

    .vp-rank-count {
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
    }

    /* Bottom Stats Cards */
    .vp-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }

    /* Stats row collapse handled in responsive section below */

    .vp-stat-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .vp-stat-card.highlight {
      border-color: rgba(68, 214, 44, 0.3);
      background: rgba(68, 214, 44, 0.05);
    }

    .vp-stat-card.alert {
      border-color: rgba(239, 68, 68, 0.3);
      background: rgba(239, 68, 68, 0.05);
    }

    .vp-stat-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .vp-stat-number {
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 900;
      color: white;
      line-height: 1;
      margin-bottom: 12px;
      transition: transform 0.5s ease;
    }

    .vp-stat-card.highlight .vp-stat-number {
      color: #44D62C;
    }

    .vp-stat-card.alert .vp-stat-number {
      color: #ef4444;
    }

    .vp-stat-number.flip-anim {
      animation: vpFlip 0.5s ease;
    }

    @keyframes vpFlip {
      0% {
        transform: rotateX(0);
      }

      25% {
        transform: rotateX(-90deg) scaleY(0.85);
      }

      50% {
        transform: rotateX(-90deg) scaleY(0.85);
      }

      75% {
        transform: rotateX(0);
      }

      100% {
        transform: rotateX(0);
      }
    }

    .vp-stat-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 600;
      line-height: 1.4;
    }

    /* Industry Breakdown */
    .vp-breakdown {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
    }

    .vp-breakdown-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .vp-breakdown-header:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .vp-breakdown-title {
      font-size: 14px;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .vp-breakdown-toggle {
      font-size: 18px;
      color: #44D62C;
      transition: transform 0.3s;
    }

    .vp-breakdown.expanded .vp-breakdown-toggle {
      transform: rotate(180deg);
    }

    .vp-breakdown-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .vp-breakdown.expanded .vp-breakdown-content {
      max-height: 1200px;
    }

    .vp-breakdown-table {
      width: 100%;
      border-collapse: collapse;
    }

    .vp-breakdown-table th,
    .vp-breakdown-table td {
      padding: 12px 20px;
      text-align: left;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .vp-breakdown-table th {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.02);
    }

    .vp-breakdown-table td {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.8);
    }

    .vp-breakdown-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .vp-ind-bar {
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden;
    }

    .vp-ind-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #44D62C, #22a80a);
      border-radius: 4px;
      transition: width 0.5s ease;
      position: relative;
      overflow: hidden;
    }

    .vp-ind-bar-red {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: linear-gradient(90deg, #ef4444, #dc2626);
      border-radius: 4px 0 0 4px;
      transition: width 0.5s ease;
      box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
    }

    /* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — Mobile → Tablet → Desktop → Large Screens
   ══════════════════════════════════════════════════════════════════════════════ */

/* ─── MOBILE (up to 768px) ─── */
@media (max-width: 768px) {
  .veritypulse-section {
    padding: 32px 16px;
  }

  .vp-header {
    margin-bottom: 24px;
  }

  .vp-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .vp-subtitle {
    font-size: 14px;
  }

  .vp-badge {
    font-size: 10px;
    padding: 6px 14px;
    gap: 6px;
  }

  .vp-pulse-dot {
    width: 6px;
    height: 6px;
  }

  /* Stack to single column */
  .vp-main-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reorder: Map first, Feed second, Stats third */
  .vp-map-container { order: 1; }
  .vp-feed-panel { order: 2; }
  .vp-stats-panel { order: 3; }

  /* Map */
  .vp-map-container {
    min-height: 220px;
    padding: 12px;
    border-radius: 12px;
  }

  .vp-hq-label {
    font-size: 8px;
    padding: 3px 6px;
  }

  .vp-hq-dot {
    width: 8px;
    height: 8px;
  }

  /* Feed */
  .vp-feed-panel {
    max-height: 320px;
    padding: 14px;
    border-radius: 12px;
  }

  .vp-panel-title {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .vp-feed-header {
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .vp-today-flags-badge {
    padding: 4px 10px;
    border-radius: 6px;
  }

  .vp-today-count { font-size: 14px; }
  .vp-today-label { font-size: 10px; }
  .vp-today-icon { font-size: 12px; }

  .vp-feed-list {
    max-height: 240px;
    gap: 6px;
  }

  .vp-feed-item {
    padding: 10px 12px;
    border-radius: 8px;
  }

  .vp-feed-time { font-size: 9px; }
  .vp-feed-industry { font-size: 11px; }
  .vp-feed-category { font-size: 10px; }
  .vp-feed-value { font-size: 10px; }

  /* Red Flag Categories */
  .vp-stats-panel {
    padding: 14px;
    border-radius: 12px;
  }

  .vp-rank-list-expanded {
    max-height: 300px;
  }

  .vp-rank-item {
    padding: 6px 8px;
    gap: 8px;
  }

  .vp-rank-num { font-size: 10px; min-width: 16px; }
  .vp-rank-name { font-size: 11px; }
  .vp-rank-count { font-size: 10px; }

  /* Stats Cards: single column */
  .vp-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .vp-stat-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .vp-stat-icon { font-size: 24px; margin-bottom: 10px; }
  .vp-stat-number { font-size: 32px; margin-bottom: 8px; }
  .vp-stat-label { font-size: 12px; }

  /* Industry Breakdown */
  .vp-breakdown {
    border-radius: 12px;
  }

  .vp-breakdown-header {
    padding: 12px 14px;
  }

  .vp-breakdown-title {
    font-size: 12px;
    gap: 8px;
  }

  .vp-breakdown-toggle { font-size: 14px; }

  .vp-breakdown.expanded .vp-breakdown-content {
    max-height: 2000px;
    overflow-x: auto;
  }

  .vp-breakdown-table {
    min-width: 500px;
  }

  .vp-breakdown-table th,
  .vp-breakdown-table td {
    padding: 8px 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .vp-breakdown-table th { font-size: 9px; }

  .vp-ind-bar { height: 6px; }

  .vp-data-status {
    font-size: 9px;
    padding: 3px 10px;
  }

  .vp-grid-overlay {
    background-size: 30px 30px;
  }
}

/* ─── TABLET (769px – 1024px) ─── */
@media (min-width: 769px) and (max-width: 1024px) {
  .veritypulse-section {
    padding: 48px 24px;
  }

  .vp-header {
    margin-bottom: 32px;
  }

  .vp-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .vp-subtitle {
    font-size: 15px;
  }

  /* 2-column layout: feed + map on top row, stats below */
  .vp-main-grid {
    grid-template-columns: 260px 1fr;
    gap: 16px;
  }

  .vp-feed-panel { order: 1; }
  .vp-map-container { order: 2; }
  .vp-stats-panel {
    order: 3;
    grid-column: 1 / -1;
  }

  .vp-map-container {
    min-height: 300px;
    padding: 16px;
  }

  .vp-feed-panel {
    max-height: 400px;
    padding: 16px;
  }

  .vp-feed-list {
    max-height: 320px;
  }

  .vp-stats-panel {
    padding: 16px;
  }

  .vp-rank-list-expanded {
    max-height: 200px;
  }

  /* Stats Cards: 3 columns still fits on tablet */
  .vp-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }

  .vp-stat-card {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .vp-stat-icon { font-size: 28px; margin-bottom: 12px; }
  .vp-stat-number { font-size: 36px; }
  .vp-stat-label { font-size: 13px; }

  /* Industry Breakdown - allow horizontal scroll */
  .vp-breakdown.expanded .vp-breakdown-content {
    overflow-x: auto;
  }

  .vp-breakdown-table th,
  .vp-breakdown-table td {
    padding: 10px 16px;
  }

  .vp-breakdown-table td { font-size: 12px; }
}

/* ─── SMALL TABLET / LARGE PHONE (481px – 768px) — Stats 2-column ─── */
@media (min-width: 481px) and (max-width: 768px) {
  .vp-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Last stat card spans full width when odd */
  .vp-stats-row .vp-stat-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

    /* ─── LARGE SCREEN / TV DISPLAY SUPPORT ─── */

    /* Full HD TVs (1920px+) */
    @media (min-width: 1920px) {
      .veritypulse-inner {
        max-width: 1800px;
      }

      .veritypulse-section {
        padding: 100px 60px;
      }

      .vp-main-grid {
        grid-template-columns: 360px 1fr 360px;
        gap: 32px;
      }

      .vp-header {
        margin-bottom: 60px;
      }

      .vp-title {
        font-size: 64px;
      }

      .vp-subtitle {
        font-size: 20px;
        max-width: 800px;
      }

      .vp-badge {
        font-size: 13px;
        padding: 10px 24px;
      }

      .vp-panel-title {
        font-size: 14px;
      }

      .vp-feed-panel {
        max-height: 600px;
        padding: 24px;
      }

      .vp-feed-list {
        max-height: 520px;
      }

      .vp-feed-item {
        padding: 14px 16px;
      }

      .vp-feed-time {
        font-size: 11px;
      }

      .vp-feed-industry {
        font-size: 14px;
      }

      .vp-feed-category {
        font-size: 12px;
      }

      .vp-feed-value {
        font-size: 13px;
      }

      .vp-stats-panel {
        padding: 24px;
      }

      .vp-rank-list-expanded {
        max-height: 550px;
      }

      .vp-rank-item {
        padding: 10px 12px;
      }

      .vp-rank-num {
        font-size: 13px;
      }

      .vp-rank-name {
        font-size: 14px;
      }

      .vp-rank-count {
        font-size: 13px;
      }

      .vp-map-container {
        min-height: 500px;
        padding: 32px;
      }

      .vp-map-wrapper {
        max-width: 100%;
      }

      .vp-stat-card {
        padding: 40px 32px;
        border-radius: 20px;
      }

      .vp-stat-icon {
        font-size: 40px;
      }

      .vp-stat-number {
        font-size: 56px;
      }

      .vp-stat-label {
        font-size: 16px;
      }

      .vp-stats-row {
        gap: 28px;
        margin-bottom: 40px;
      }

      .vp-breakdown-title {
        font-size: 16px;
      }

      .vp-breakdown-table th {
        font-size: 11px;
      }

      .vp-breakdown-table td {
        font-size: 15px;
      }

      .vp-breakdown-table th,
      .vp-breakdown-table td {
        padding: 14px 24px;
      }

      .vp-hq-label {
        font-size: 12px;
        padding: 5px 12px;
      }

      .vp-hq-dot {
        width: 14px;
        height: 14px;
      }

      .vp-data-status {
        font-size: 12px;
        padding: 6px 16px;
      }

      .vp-today-count {
        font-size: 18px;
      }

      .vp-today-label {
        font-size: 12px;
      }

      .vp-today-icon {
        font-size: 16px;
      }
    }

    /* QHD / Large Displays (2560px+) */
    @media (min-width: 2560px) {
      .veritypulse-inner {
        max-width: 2400px;
      }

      .veritypulse-section {
        padding: 120px 80px;
      }

      .vp-main-grid {
        grid-template-columns: 440px 1fr 440px;
        gap: 40px;
      }

      .vp-header {
        margin-bottom: 72px;
      }

      .vp-title {
        font-size: 80px;
        letter-spacing: -3px;
      }

      .vp-subtitle {
        font-size: 24px;
        max-width: 960px;
      }

      .vp-badge {
        font-size: 15px;
        padding: 12px 28px;
        gap: 10px;
      }

      .vp-pulse-dot {
        width: 10px;
        height: 10px;
      }

      .vp-panel-title {
        font-size: 16px;
        letter-spacing: 3px;
        margin-bottom: 20px;
      }

      .vp-feed-panel {
        max-height: 720px;
        padding: 28px;
        border-radius: 20px;
      }

      .vp-feed-list {
        max-height: 620px;
        gap: 10px;
      }

      .vp-feed-item {
        padding: 16px 18px;
        border-radius: 12px;
      }

      .vp-feed-time {
        font-size: 12px;
      }

      .vp-feed-industry {
        font-size: 16px;
      }

      .vp-feed-category {
        font-size: 14px;
      }

      .vp-feed-value {
        font-size: 14px;
      }

      .vp-stats-panel {
        padding: 28px;
        border-radius: 20px;
      }

      .vp-rank-list-expanded {
        max-height: 650px;
      }

      .vp-rank-item {
        padding: 12px 14px;
        border-radius: 10px;
        gap: 12px;
      }

      .vp-rank-num {
        font-size: 14px;
        min-width: 22px;
      }

      .vp-rank-name {
        font-size: 16px;
      }

      .vp-rank-count {
        font-size: 14px;
      }

      .vp-map-container {
        min-height: 600px;
        padding: 40px;
        border-radius: 20px;
      }

      .vp-stat-card {
        padding: 48px 40px;
        border-radius: 24px;
      }

      .vp-stat-icon {
        font-size: 48px;
        margin-bottom: 20px;
      }

      .vp-stat-number {
        font-size: 68px;
        margin-bottom: 16px;
      }

      .vp-stat-label {
        font-size: 18px;
      }

      .vp-stats-row {
        gap: 36px;
        margin-bottom: 48px;
      }

      .vp-breakdown {
        border-radius: 20px;
      }

      .vp-breakdown-header {
        padding: 20px 28px;
      }

      .vp-breakdown-title {
        font-size: 18px;
      }

      .vp-breakdown-toggle {
        font-size: 22px;
      }

      .vp-breakdown-table th {
        font-size: 12px;
        letter-spacing: 2px;
      }

      .vp-breakdown-table td {
        font-size: 16px;
      }

      .vp-breakdown-table th,
      .vp-breakdown-table td {
        padding: 16px 28px;
      }

      .vp-ind-bar {
        height: 10px;
      }

      .vp-hq-label {
        font-size: 14px;
        padding: 6px 14px;
      }

      .vp-hq-dot {
        width: 16px;
        height: 16px;
      }

      .vp-data-status {
        font-size: 13px;
        padding: 8px 18px;
      }

      .vp-data-status-dot {
        width: 8px;
        height: 8px;
      }

      .vp-today-flags-badge {
        padding: 8px 16px;
        border-radius: 10px;
      }

      .vp-today-count {
        font-size: 20px;
      }

      .vp-today-label {
        font-size: 13px;
      }

      .vp-today-icon {
        font-size: 18px;
      }
    }

    /* 4K TVs (3840px+) */
    @media (min-width: 3840px) {
      .veritypulse-inner {
        max-width: 3600px;
      }

      .veritypulse-section {
        padding: 160px 120px;
      }

      .vp-main-grid {
        grid-template-columns: 600px 1fr 600px;
        gap: 60px;
      }

      .vp-header {
        margin-bottom: 96px;
      }

      .vp-title {
        font-size: 112px;
        letter-spacing: -4px;
        margin-bottom: 20px;
      }

      .vp-subtitle {
        font-size: 32px;
        max-width: 1200px;
        line-height: 1.5;
      }

      .vp-badge {
        font-size: 18px;
        padding: 16px 36px;
        gap: 12px;
        border-radius: 100px;
        margin-bottom: 28px;
      }

      .vp-pulse-dot {
        width: 14px;
        height: 14px;
      }

      .vp-panel-title {
        font-size: 20px;
        letter-spacing: 4px;
        margin-bottom: 24px;
      }

      .vp-panel-title::before {
        width: 10px;
        height: 10px;
      }

      .vp-feed-panel {
        max-height: 1000px;
        padding: 40px;
        border-radius: 28px;
      }

      .vp-feed-list {
        max-height: 860px;
        gap: 14px;
      }

      .vp-feed-list::-webkit-scrollbar {
        width: 6px;
      }

      .vp-feed-item {
        padding: 20px 24px;
        border-radius: 14px;
      }

      .vp-feed-item.red-flag {
        border-left-width: 5px;
      }

      .vp-feed-item.clean {
        border-left-width: 5px;
      }

      .vp-feed-time {
        font-size: 16px;
        margin-bottom: 6px;
      }

      .vp-feed-industry {
        font-size: 22px;
        margin-bottom: 4px;
      }

      .vp-feed-category {
        font-size: 18px;
      }

      .vp-feed-value {
        font-size: 18px;
        margin-top: 6px;
      }

      .vp-stats-panel {
        padding: 40px;
        border-radius: 28px;
      }

      .vp-rank-list-expanded {
        max-height: 900px;
        gap: 12px;
      }

      .vp-rank-list-expanded::-webkit-scrollbar {
        width: 6px;
      }

      .vp-rank-item {
        padding: 16px 20px;
        border-radius: 12px;
        gap: 16px;
      }

      .vp-rank-num {
        font-size: 18px;
        min-width: 28px;
      }

      .vp-rank-name {
        font-size: 20px;
      }

      .vp-rank-count {
        font-size: 18px;
      }

      .vp-map-container {
        min-height: 900px;
        padding: 60px;
        border-radius: 28px;
      }

      .vp-stat-card {
        padding: 64px 52px;
        border-radius: 32px;
      }

      .vp-stat-icon {
        font-size: 64px;
        margin-bottom: 28px;
      }

      .vp-stat-number {
        font-size: 96px;
        margin-bottom: 20px;
      }

      .vp-stat-label {
        font-size: 24px;
      }

      .vp-stats-row {
        gap: 48px;
        margin-bottom: 64px;
      }

      .vp-breakdown {
        border-radius: 28px;
      }

      .vp-breakdown-header {
        padding: 28px 40px;
      }

      .vp-breakdown-title {
        font-size: 24px;
        gap: 14px;
      }

      .vp-breakdown-toggle {
        font-size: 28px;
      }

      .vp-breakdown.expanded .vp-breakdown-content {
        max-height: 1500px;
      }

      .vp-breakdown-table th {
        font-size: 14px;
        letter-spacing: 3px;
      }

      .vp-breakdown-table td {
        font-size: 20px;
      }

      .vp-breakdown-table th,
      .vp-breakdown-table td {
        padding: 20px 40px;
      }

      .vp-ind-bar {
        height: 14px;
        border-radius: 7px;
      }

      .vp-ind-bar-fill {
        border-radius: 7px;
      }

      .vp-ind-bar-red {
        border-radius: 7px 0 0 7px;
      }

      .vp-hq-label {
        font-size: 18px;
        padding: 8px 18px;
        border-radius: 6px;
      }

      .vp-hq-dot {
        width: 22px;
        height: 22px;
      }

      .vp-data-status {
        font-size: 16px;
        padding: 10px 24px;
        border-radius: 10px;
      }

      .vp-data-status-dot {
        width: 10px;
        height: 10px;
      }

      .vp-today-flags-badge {
        padding: 12px 20px;
        border-radius: 12px;
        gap: 10px;
      }

      .vp-today-count {
        font-size: 28px;
      }

      .vp-today-label {
        font-size: 16px;
      }

      .vp-today-icon {
        font-size: 24px;
      }

      .vp-grid-overlay {
        background-size: 80px 80px;
      }
    }
