:root {
      --navy: #002e6d;
      --blue: #2569a6;
      --blue-mid: #008ed2;
      --blue-hover: #1f5788;
      --orange: #ff8b1a;
      --orange-hover: #ea7c10;
      --blue-soft: #edf5fd;
      --blue-pale: #BCD5F3;
      --peach-pale: #F7E3D1;
      --slate-950: #0f172a;
      --slate-900: #1e293b;
      --slate-700: #334155;
      --slate-600: #475569;
      --slate-500: #64748b;
      --slate-400: #94a3b8;
      --slate-200: #e2e8f0;
      --slate-100: #f1f5f9;
      --slate-50: #f8fafc;
      --green: #10b981;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    ::selection {
      background-color: #BCD5F3;
      color: #002e6d;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, "Segoe UI", Arial, sans-serif;
      color: var(--slate-900);
      background: var(--slate-50);
      min-height: 100vh;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: 80rem;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    @media (max-width: 640px) {
      .container {
        padding-left: 1rem;
        padding-right: 1rem;
      }
    }

    /* ── HEADER ── */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--slate-100);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 4rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand img {
      height: 2.25rem;
      width: auto;
      object-fit: contain;
    }

    .brand-name {
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      color: var(--blue);
      line-height: 1;
    }

    .brand-sub {
      font-size: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #000000;
      font-weight: 800;
      margin-top: 2px;
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 2rem;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .header-nav a {
      color: var(--slate-600);
      transition: color 150ms;
    }

    .header-nav a:hover {
      color: var(--blue);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      transition: all 180ms;
      font-weight: 700;
      font-family: inherit;
    }

    .btn-primary {
      background: #fff;
      color: var(--navy);
      border: 1.5px solid var(--blue-pale);
      padding: 0.6rem 1.4rem;
      border-radius: 0.875rem;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 1px 4px rgba(0, 46, 109, 0.06);
    }

    .btn-primary:hover {
      background: var(--blue-soft);
      border-color: var(--blue);
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
      padding: 1rem 2.5rem;
      border-radius: 0.875rem;
      font-size: 1rem;
      box-shadow: 0 12px 32px rgba(255, 139, 26, 0.3);
    }

    .btn-orange:hover {
      background: var(--orange-hover);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--blue-pale);
      padding: 0.75rem 2rem;
      border-radius: 0.875rem;
      font-size: 0.9rem;
    }

    .btn-outline:hover {
      background: var(--blue-soft);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: 6rem 0 5rem;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }

    .blob-orange {
      width: 600px;
      height: 600px;
      background: var(--peach-pale);
      top: -200px;
      left: -200px;
      opacity: 0.55;
    }

    .blob-blue {
      width: 500px;
      height: 500px;
      background: var(--blue-pale);
      bottom: -200px;
      right: -150px;
      opacity: 0.5;
    }

    /* ── NEW HERO ── */
    .hero-container {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      border-radius: 9999px;
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: var(--green);
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 1.75rem;
    }

    .badge-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: var(--green);
    }

    .hero-left h1 {
      font-size: clamp(2rem, 4.2vw, 3.25rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }

    .hero-left h1 span {
      color: var(--blue);
    }

    .hero-left h1 .highlight-orange {
      color: var(--orange);
    }

    .hero-left .hero-lead {
      color: var(--slate-600);
      font-size: 1.05rem;
      line-height: 1.65;
      margin-bottom: 2rem;
      text-align: left;
      max-width: 100%;
    }

    .hero-left .hero-cta {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .btn-blue {
      background: var(--blue);
      color: #fff;
      padding: 0.85rem 2.2rem;
      border-radius: 0.875rem;
      font-size: 0.95rem;
      box-shadow: 0 8px 24px rgba(37, 105, 166, 0.25);
    }

    .btn-blue:hover {
      background: var(--blue-hover);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(37, 105, 166, 0.35);
    }

    .btn-orange-hero {
      background: var(--orange);
      color: #fff;
      padding: 0.85rem 2.2rem;
      border-radius: 0.875rem;
      font-size: 0.95rem;
      box-shadow: 0 8px 24px rgba(255, 139, 26, 0.25);
    }

    .btn-orange-hero:hover {
      background: var(--orange-hover);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(255, 139, 26, 0.35);
    }

    .btn-blue-outline {
      background: transparent;
      color: var(--blue);
      border: 1.5px solid var(--blue-pale);
      padding: 0.85rem 2.2rem;
      border-radius: 0.875rem;
      font-size: 0.95rem;
    }

    .btn-blue-outline:hover {
      background: var(--blue-soft);
      border-color: var(--blue);
    }

    .hero-video-card {
      position: relative;
      background: linear-gradient(135deg, #0e1b30 0%, #050b18 100%);
      border-radius: 1.75rem;
      aspect-ratio: 16 / 9;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
      padding: 2rem;
    }

    .hero-video-card .play-btn {
      width: 4.5rem;
      height: 4.5rem;
      border-radius: 50%;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .hero-video-card:hover .play-btn {
      transform: scale(1.1);
      background: var(--blue-soft);
    }

    .hero-video-card .play-btn svg {
      margin-left: 4px;
      width: 1.5rem;
      height: 1.5rem;
    }

    .video-overlay-bar {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      right: 1.25rem;
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 1rem;
      padding: 1rem 1.25rem;
      text-align: left;
    }

    .video-overlay-bar .overlay-title {
      color: #ffffff;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
    }

    .video-overlay-bar .overlay-sub {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.75rem;
      font-weight: 500;
    }

    /* ── HERO VIDEO CARD HOVER EFFECT ── */
    .hero-video-card {
      cursor: pointer;
    }

    .hero-video-card .video-thumb {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.95;
      transition: transform 0.5s ease;
    }

    .hero-video-card:hover .video-thumb {
      transform: scale(1.05);
    }

    .mobile-video-caption {
      display: none;
    }

    /* ── INFO BUTTON ── */
    .info-btn {
      display: none;
    }

    /* ── FEATURE INFO MODAL ── */
    .feature-info-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0, 0, 0, 0.6);
      align-items: center;
      justify-content: center;
      padding: 1rem;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .feature-info-modal.active {
      display: flex;
    }

    .feature-info-modal-content {
      background: #ffffff;
      border-radius: 1.25rem;
      padding: 1.5rem;
      width: 90%;
      max-width: 380px;
      box-shadow: 0 20px 50px rgba(2, 32, 71, 0.15);
      border: 1px solid rgba(0, 145, 213, 0.1);
      transform: scale(0.95);
      transition: transform 0.2s ease;
      position: relative;
      text-align: left;
    }

    .feature-info-modal.active .feature-info-modal-content {
      transform: scale(1);
    }

    .feature-info-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
      border-bottom: 1px solid var(--slate-100);
      padding-bottom: 0.5rem;
    }

    .feature-info-modal-header h4 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0;
    }

    .feature-info-close-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--slate-400);
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .feature-info-close-btn:hover {
      color: var(--slate-700);
    }

    .feature-info-modal-content p {
      font-size: 0.875rem;
      color: var(--slate-600);
      line-height: 1.6;
      font-weight: 500;
      margin: 0;
    }

    /* ── VIDEO MODAL ── */
    .video-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.9);
      align-items: center;
      justify-content: center;
    }

    .video-modal.active {
      display: flex;
    }

    .video-modal .close-btn {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.8);
      font-size: 2.5rem;
      cursor: pointer;
      transition: color 150ms;
      z-index: 1010;
      line-height: 1;
    }

    .video-modal .close-btn:hover {
      color: #ffffff;
    }

    .video-modal .video-container {
      width: 95vw;
      max-width: 1100px;
      aspect-ratio: 16 / 9;
      position: relative;
    }

    .video-modal iframe {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 12px;
    }

    /* ── FEATURES STRIP ── */
    .strip {
      background: var(--navy);
      padding: 1.25rem 0;
      overflow: hidden;
    }

    .strip-inner {
      display: flex;
      gap: 3rem;
      justify-content: center;
      flex-wrap: wrap;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.65);
    }

    .strip-inner span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .strip-inner span::before {
      content: "✦";
      color: var(--orange);
      font-size: 0.6rem;
    }

    /* ── SECTION HEADING ── */
    .section-tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--blue);
      background: var(--blue-soft);
      padding: 0.35rem 0.9rem;
      border-radius: 9999px;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-title span {
      background: linear-gradient(135deg, var(--blue) 0%, #00bcff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .explore-bracket {
      font-size: 0.45em;
      font-weight: 700;
      color: var(--blue);
      background: var(--blue-soft);
      padding: 0.35rem 0.9rem;
      border-radius: 9999px;
      margin-left: 0.5rem;
      display: inline-block;
      vertical-align: middle;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border: 1px solid rgba(0, 145, 213, 0.15);
    }

    .section-lead {
      color: var(--slate-500);
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 36rem;
      margin: 0 auto;
    }

    /* ── FEATURES GRID ── */
    .features-section {
      padding: 6rem 0;
      background: #fff;
    }

    .features-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .feature-card {
      position: relative;
      padding: 1.5rem 1.25rem;
      border: 1px solid rgba(37, 105, 166, 0.08);
      border-radius: 1.25rem;
      background: linear-gradient(135deg, #ffffff 0%, #edf5fd 100%);
      box-shadow: 0 10px 25px rgba(37, 105, 166, 0.02);
      transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      gap: 1.15rem;
      text-align: left;
    }

    .feature-card:hover {
      border-color: rgba(37, 105, 166, 0.25);
      transform: translateY(-3px);
      box-shadow: 0 16px 36px rgba(37, 105, 166, 0.08);
    }

    .feature-icon {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 46, 109, 0.05);
      border: 1px solid rgba(0, 46, 109, 0.02);
      flex-shrink: 0;
      padding: 0.6rem;
      position: relative;
    }

    .feature-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      pointer-events: none;
    }

    .feature-content {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .feature-card h3 {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy);
    }

    .feature-card p {
      font-size: 0.75rem;
      color: var(--slate-600);
      line-height: 1.45;
      font-weight: 500;
    }

    /* Free badge in card */
    .free-badge {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: var(--green);
      font-size: 0.55rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 0.15rem 0.45rem;
      border-radius: 9999px;
      letter-spacing: 0.05em;
    }

    /* ── PRICING SECTION ── */
    .pricing-section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
      background: var(--slate-50);
    }

    .pricing-blob-1 {
      position: absolute;
      width: 700px;
      height: 700px;
      background: var(--peach-pale);
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.5;
      top: -300px;
      right: -200px;
      pointer-events: none;
    }

    .pricing-blob-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: var(--blue-pale);
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.4;
      bottom: -200px;
      left: -150px;
      pointer-events: none;
    }

    .pricing-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .pricing-left h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }

    .pricing-left p {
      color: var(--slate-600);
      font-size: 0.95rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 420px;
    }

    .why-item {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--navy);
      background: #ffffff;
      padding: 0.75rem 1.25rem;
      border-radius: 1rem;
      border: 1px solid rgba(37, 105, 166, 0.08);
      box-shadow: 0 4px 12px rgba(37, 105, 166, 0.03);
      transition: all 0.2s ease;
    }

    .why-item:hover {
      transform: translateY(-2px);
      border-color: rgba(37, 105, 166, 0.2);
      box-shadow: 0 8px 20px rgba(37, 105, 166, 0.08);
    }

    .why-dot {
      width: 1.45rem;
      height: 1.45rem;
      border-radius: 50%;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(37, 105, 166, 0.2);
    }

    /* Pricing Card */
    .pricing-card {
      background: #fff;
      border-radius: 2rem;
      border: 1px solid var(--slate-200);
      box-shadow: 0 32px 80px rgba(2, 32, 71, 0.1);
      overflow: hidden;
    }

    .pricing-card-top {
      background: var(--navy);
      padding: 2.5rem 2.5rem 2rem;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .pricing-card-top::after {
      content: "₹";
      position: absolute;
      right: 1.5rem;
      top: 0.5rem;
      font-size: 8rem;
      font-weight: 900;
      opacity: 0.05;
      line-height: 1;
    }

    .card-badge {
      display: inline-block;
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #93c5fd;
      margin-bottom: 0.75rem;
    }

    .price-row {
      display: flex;
      align-items: flex-end;
      gap: 0.25rem;
      margin-bottom: 0.25rem;
    }

    .price-currency {
      font-size: 1.75rem;
      font-weight: 600;
      opacity: 0.75;
      margin-bottom: 0.5rem;
    }

    .price-amount {
      font-size: 5rem;
      font-weight: 900;
      letter-spacing: -0.05em;
      line-height: 1;
    }

    .price-period {
      font-size: 1rem;
      font-weight: 600;
      opacity: 0.55;
      margin-bottom: 0.75rem;
    }

    .card-desc {
      font-size: 0.75rem;
      color: #93c5fd;
      font-weight: 500;
    }

    .pricing-card-body {
      padding: 2rem 2.5rem;
    }

    .features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      margin-bottom: 2rem;
    }

    .features-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      font-size: 0.875rem;
      color: var(--slate-700);
      font-weight: 600;
    }

    .check-circle {
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 50%;
      background: #eff6ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      transition: background 200ms;
    }

    .check-circle svg {
      width: 0.6rem;
      height: 0.6rem;
    }

    .cta-block {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
    }

    .btn-full {
      width: 100%;
      padding: 1rem;
      border-radius: 0.875rem;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 200ms;
      font-family: inherit;
    }

    .btn-orange-full {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 8px 24px rgba(255, 139, 26, 0.25);
    }

    .btn-orange-full:hover {
      background: var(--orange-hover);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(255, 139, 26, 0.3);
    }

    .btn-navy-full {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 6px 16px rgba(0, 46, 109, 0.18);
    }

    .btn-navy-full:hover {
      background: var(--blue);
    }

    .secure-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      font-size: 0.7rem;
      color: var(--slate-400);
      font-weight: 600;
      margin-top: 0.25rem;
    }

    /* ── ROLES SECTION ── */
    .roles-section {
      padding: 6rem 0;
      background: #fff;
    }

    .roles-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .roles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .role-card {
      padding: 1.75rem 1.5rem;
      border-radius: 1.25rem;
      border: 1.5px solid var(--slate-100);
      background: var(--slate-50);
      transition: all 250ms;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .role-card:hover {
      border-color: var(--blue-mid);
      background: #fff;
      box-shadow: 0 12px 32px rgba(0, 142, 210, 0.1);
      transform: translateY(-3px);
    }

    .role-header-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
      width: 100%;
    }

    .role-emoji {
      font-size: 2rem;
      line-height: 1;
    }

    .role-card h3 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0;
    }

    .role-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      font-size: 0.8rem;
      line-height: 1.55;
      font-weight: 500;
    }

    .role-problem {
      color: var(--slate-600);
    }

    .role-problem strong {
      color: #e11d48;
      font-weight: 700;
    }

    .role-solution {
      color: var(--slate-700);
    }

    .role-solution strong {
      color: #10b981;
      font-weight: 700;
    }

    .roles-footer {
      margin-top: 5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: 2.5rem;
    }

    .value-proposition-box {
      background: linear-gradient(135deg, rgba(37, 105, 166, 0.05) 0%, rgba(0, 142, 210, 0.02) 100%);
      border: 1.5px dashed rgba(37, 105, 166, 0.25);
      border-radius: 1.5rem;
      padding: 2.5rem 3rem;
      text-align: center;
      max-width: 900px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .value-prop-label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--blue);
      background: rgba(37, 105, 166, 0.08);
      padding: 0.4rem 1.2rem;
      border-radius: 9999px;
      margin-bottom: 1.25rem;
    }

    .value-prop-text {
      font-size: 1.15rem;
      color: var(--navy);
      line-height: 1.6;
      font-weight: 600;
      margin: 0;
    }

    .value-prop-text strong {
      color: var(--navy);
      font-weight: 800;
    }

    .tagline-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--navy);
    }

    .tagline-row span {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .dot-separator {
      color: var(--orange) !important;
      -webkit-text-fill-color: initial !important;
      font-size: 1rem;
    }

    /* ── FAQ SECTION ── */
    .faq-section {
      padding: 6rem 0;
      background: var(--slate-50);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .faq-left h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--slate-950);
      margin-bottom: 2.5rem;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    details.faq-item {
      padding: 0;
      border-radius: 1rem;
      background: #fff;
      border: 1px solid var(--slate-100);
      overflow: hidden;
    }

    .faq-question {
      padding: 1.5rem;
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      list-style: none;
      user-select: none;
      position: relative;
    }

    .faq-question::-webkit-details-marker {
      display: none;
    }

    .faq-question::after {
      content: "+";
      position: absolute;
      right: 1.5rem;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--blue);
    }

    details[open] .faq-question::after {
      content: "—";
    }

    .faq-question::before {
      content: "?";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 50%;
      background: #dbeafe;
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 900;
      flex-shrink: 0;
    }

    .faq-answer {
      padding: 0 1.5rem 1.5rem 3.35rem;
      font-size: 0.8rem;
      color: var(--slate-600);
      line-height: 1.7;
    }

    .faq-right {
      background: linear-gradient(135deg, #002e6d 0%, #1a4b8c 100%);
      border-radius: 2rem;
      padding: 3rem;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .faq-right::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 50%;
      right: -100px;
      bottom: -100px;
    }

    .faq-right h2 {
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    .faq-right p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.75;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .trust-list {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      position: relative;
      z-index: 1;
    }

    .trust-list-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      font-weight: 700;
      color: #fff;
    }

    .trust-check {
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.55rem;
      font-weight: 900;
      color: #fff;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      padding: 5rem 0;
      text-align: center;
      background: #fff;
      border-top: 1px solid var(--slate-100);
    }

    .final-cta h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--slate-950);
      margin-bottom: 1rem;
    }

    .final-cta p {
      color: var(--slate-500);
      font-size: 0.95rem;
      margin-bottom: 2.5rem;
    }

    .final-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--slate-50);
      border-top: 1px solid var(--slate-100);
      padding: 3.5rem 0 2.5rem;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 3rem;
      flex-wrap: wrap;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--slate-200);
      margin-bottom: 2rem;
    }

    .footer-brand img {
      height: 2rem;
      width: auto;
      margin-bottom: 0.75rem;
      object-fit: contain;
    }

    .footer-brand .name {
      font-size: 1rem;
      font-weight: 800;
      color: var(--slate-900);
    }

    .footer-brand .tagline {
      font-size: 0.75rem;
      color: var(--slate-400);
      margin-top: 0.25rem;
    }

    .footer-nav {
      display: flex;
      gap: 2.5rem;
    }

    .footer-nav a {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--slate-600);
      transition: color 150ms;
    }

    .footer-nav a:hover {
      color: var(--blue);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .copyright {
      font-size: 0.7rem;
      color: var(--slate-400);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .footer-tagline-end {
      font-size: 0.75rem;
      color: var(--slate-400);
      font-style: italic;
      font-weight: 600;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1200px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
      }

      .hero-left {
        align-items: center;
      }

      .hero-left .hero-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 36rem;
      }

      .hero-left .hero-cta {
        justify-content: center;
      }

      .hero-video-card {
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .pricing-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .why-list {
        align-items: stretch;
        width: 100%;
        max-width: 420px;
        margin: 0 auto 2rem auto;
      }

      .why-item {
        justify-content: flex-start;
      }

      .pricing-card {
        max-width: 480px;
        margin: 0 auto;
      }

      .roles-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 640px) {
      .strip {
        display: none;
      }

      .hero-video-card .video-overlay-bar {
        display: none;
      }

      .mobile-video-caption {
        display: block;
        margin-top: 1.25rem;
        text-align: center;
        padding: 0 1rem;
      }

      .mobile-video-caption .caption-title {
        color: var(--navy);
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: 0.25rem;
      }

      .mobile-video-caption .caption-sub {
        color: var(--slate-500);
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.4;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }

      .feature-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 0.5rem 0.5rem;
        height: 108px;
        min-height: 108px;
        border-radius: 13px;
        background: linear-gradient(rgba(0, 145, 213, 0) 0%, rgba(0, 145, 213, 0.16) 100%), linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
        border: 0.85px solid rgba(0, 145, 213, 0.16);
        box-shadow: 0px 6.79px 15.278px 0px rgba(2, 32, 71, 0.05);
        transition: all 0.3s ease-out;
      }

      .feature-card:hover {
        border-color: rgba(0, 145, 213, 0.5);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0px 10px 24px rgba(0, 145, 213, 0.1);
      }

      .feature-card .feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
      }

      .feature-card h3 {
        font-size: 12px;
        font-weight: 600;
        color: #1e293b;
        line-height: 1.2;
        margin: 0;
      }

      .feature-card p {
        display: none;
      }

      .info-btn {
        display: flex;
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        color: var(--blue);
        background: rgba(0, 145, 213, 0.08);
        padding: 0.25rem;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s;
        z-index: 10;
      }

      .info-btn:hover {
        background: rgba(0, 145, 213, 0.16);
      }

      .info-btn svg {
        width: 14px;
        height: 14px;
      }

      .explore-bracket {
        font-size: 0.55em;
        padding: 0.2rem 0.6rem;
        margin-top: 0.5rem;
        display: inline-block;
        vertical-align: middle;
      }

      .hero {
        padding: 2.5rem 0 3rem;
      }

      .hero-left h1 {
        font-size: 1.85rem;
        letter-spacing: -0.03em;
        margin-bottom: 1rem;
        text-align: center;
      }

      .hero-left .hero-lead {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        text-align: center;
      }

      .hero-left .hero-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        gap: 0.75rem;
      }

      .hero-left .hero-cta .btn-blue,
      .hero-left .hero-cta .btn-orange-hero {
        width: auto;
        flex: 1;
        padding: 0.875rem 0.5rem;
        font-size: 0.9rem;
        text-align: center;
      }

      .hero-badge {
        font-size: 0.7rem;
        margin-bottom: 1.25rem;
        padding: 0.35rem 0.85rem;
      }

      .features-section,
      .pricing-section,
      .roles-section,
      .faq-section {
        padding: 3rem 0;
      }

      .features-header {
        margin-bottom: 2rem;
      }

      .roles-grid {
        grid-template-columns: 1fr 1fr;
      }

      .header-nav .nav-link-home {
        display: none;
      }

      .brand-sub {
        display: none;
      }

      .header-nav {
        gap: 0.75rem;
      }

      .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
        letter-spacing: 0.06em;
      }

      .pricing-card-top {
        padding: 1.75rem 1.5rem 1.25rem;
      }

      .pricing-card-body {
        padding: 1.25rem 1.5rem;
      }

      .pricing-layout {
        gap: 2rem;
      }

      .pricing-left h2 {
        font-size: 2rem;
      }

      .faq-right {
        padding: 1.75rem;
      }

      .faq-layout {
        gap: 2rem;
      }

      .faq-left h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
      }

      .footer-nav {
        flex-direction: column;
        gap: 1rem;
      }

      .footer-top {
        flex-direction: column;
        gap: 1.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .final-cta-row {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-orange,
      .btn-outline,
      .btn-blue,
      .btn-blue-outline {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
      }

      .final-cta h2 {
        font-size: 1.75rem;
      }

      .strip-inner {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
      }

      .section-title {
        font-size: 1.6rem;
      }

      .roles-header {
        margin-bottom: 2rem;
      }

      .role-card {
        padding: 1.5rem 1rem;
      }

      .role-emoji {
        font-size: 1.75rem;
      }

      .value-proposition-box {
        padding: 1.75rem 1.5rem;
      }

      .value-prop-text {
        font-size: 1rem;
      }

      .tagline-row {
        font-size: 1.1rem;
        gap: 0.75rem;
        flex-wrap: wrap;
      }

      .feature-card {
        padding: 1.5rem 1.25rem;
      }
    }

    @media (max-width: 400px) {
      .brand-name {
        font-size: 1rem;
      }

      .hero h1 {
        font-size: 1.6rem;
      }

      .hero-lead {
        font-size: 0.85rem;
      }

      .btn-orange {
        font-size: 0.9rem;
        padding: 0.8rem 1.25rem;
      }

      .btn-outline {
        font-size: 0.85rem;
        padding: 0.8rem 1.25rem;
      }

      .roles-grid {
        grid-template-columns: 1fr;
      }

      .pricing-left h2 {
        font-size: 1.75rem;
      }

      .price-amount {
        font-size: 4rem;
      }
    }

    /* ── TIMELINE SECTION ── */
    .timeline-section {
      padding: 6rem 0;
      background: #fdfdfd;
      position: relative;
    }

    .timeline-header {
      text-align: center;
      margin-bottom: 4.5rem;
    }

    .timeline-title {
      font-size: clamp(2rem, 3.5vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--slate-900);
      margin-bottom: 1rem;
      line-height: 1.25;
    }

    .timeline-title span.orange-text {
      color: var(--orange);
    }

    .timeline-title span.blue-text {
      color: var(--blue);
    }

    .timeline-subtitle {
      font-size: 1.05rem;
      color: var(--blue-mid);
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .timeline-container {
      max-width: 54rem;
      margin: 0 auto;
      position: relative;
      padding-left: 3.5rem;
    }

    /* Vertical Line */
    .timeline-container::before {
      content: "";
      position: absolute;
      left: 1.25rem;
      top: 1.5rem;
      bottom: 1.5rem;
      width: 2px;
      background: #e2e8f0;
      z-index: 1;
    }

    .timeline-step {
      position: relative;
      margin-bottom: 2.5rem;
      display: flex;
      align-items: flex-start;
    }

    .timeline-step:last-child {
      margin-bottom: 0;
    }

    /* Step Badge Circle */
    .timeline-badge {
      position: absolute;
      left: -3.5rem;
      margin-left: 0.25rem;
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Colors for circles */
    .badge-step-1 {
      background: #3b82f6;
    }

    .badge-step-2 {
      background: #ff8b1a;
    }

    .badge-step-3 {
      background: #10b981;
    }

    .badge-step-4 {
      background: #8b5cf6;
    }

    .badge-step-5 {
      background: #ec4899;
    }

    /* Step Card */
    .timeline-card {
      background: #ffffff;
      border: 1px solid rgba(226, 232, 240, 0.8);
      border-radius: 1.25rem;
      padding: 1.75rem 2rem;
      width: 100%;
      box-shadow: 0 10px 30px rgba(0, 46, 109, 0.02);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .timeline-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(0, 46, 109, 0.06);
      border-color: rgba(37, 105, 166, 0.15);
    }

    .timeline-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    .timeline-card p {
      font-size: 0.9rem;
      color: var(--slate-600);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .timeline-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .timeline-pill {
      font-size: 0.725rem;
      font-weight: 600;
      color: var(--slate-600);
      background: var(--slate-50);
      border: 1px solid var(--slate-200);
      padding: 0.35rem 0.85rem;
      border-radius: 9999px;
      transition: all 0.2s ease;
    }

    .timeline-pill:hover {
      background: var(--blue-soft);
      border-color: var(--blue-pale);
      color: var(--blue);
    }

    /* Mobile media query additions */
    @media (max-width: 640px) {
      .timeline-section {
        padding: 4rem 0;
      }

      .timeline-header {
        margin-bottom: 2.5rem;
      }

      .timeline-container {
        padding-left: 2.75rem;
      }

      .timeline-container::before {
        left: 0.875rem;
      }

      .timeline-badge {
        left: -2.75rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
        margin-left: 0;
      }

      .timeline-card {
        padding: 1.25rem 1.25rem;
        border-radius: 1rem;
      }

      .timeline-card h3 {
        font-size: 1rem;
      }

      .timeline-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
      }
    }

    /* ── FLOATING ACTION BUTTONS ── */
    .floating-actions-container {
      position: fixed;
      z-index: 999;
      display: flex;
      gap: 1rem;
      align-items: center;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .floating-actions-container.visible {
      opacity: 1;
      visibility: visible;
    }

    .floating-actions-container * {
      pointer-events: auto;
    }

    .floating-btn {
      position: relative;
      /* Fixed the pulsing border bug */
      color: var(--white) !important;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(255, 255, 255, 0.15);
      white-space: nowrap;
      border-radius: 0.875rem;
    }

    .floating-btn-orange {
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
      box-shadow: 0 10px 30px rgba(255, 139, 26, 0.4);
    }

    .floating-btn-orange:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 15px 35px rgba(255, 139, 26, 0.55);
    }

    .floating-btn-blue {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
      box-shadow: 0 10px 30px rgba(37, 105, 166, 0.4);
    }

    .floating-btn-blue:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 15px 35px rgba(37, 105, 166, 0.55);
    }

    .floating-btn:active {
      transform: scale(0.98);
    }

    .floating-btn span.lowercase-text {
      text-transform: none;
      margin-left: -0.25rem;
    }

    /* Pulsing border effect */
    .floating-btn-orange::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: inherit;
      border: 2px solid var(--orange);
      opacity: 0.4;
      animation: cta-pulse 2s infinite;
      pointer-events: none;
    }

    @keyframes cta-pulse {
      0% {
        transform: scale(1);
        opacity: 0.4;
      }

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

    @media (max-width: 768px) {
      .floating-actions-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
        width: calc(100% - 1.5rem);
        max-width: 440px;
        flex-direction: row;
        gap: 0.5rem;
      }

      .floating-btn {
        flex: 1;
        padding: 0.8rem 0.4rem;
        font-size: 0.85rem;
        letter-spacing: 0.02em;
        /* Same width and height */
      }

      .floating-btn span.lowercase-text {
        display: none;
      }

      .floating-btn:hover {
        transform: scale(1.03);
      }
    }

    @media (min-width: 769px) {
      .floating-actions-container {
        right: 2.5rem;
        bottom: 2.5rem;
      }

      .floating-btn {
        padding: 0.75rem 1.6rem;
        font-size: 0.9rem;
        width: 180px;
      }
    }