 /* --- VARIABLES --- */
    :root {
      --bg: #f5f7fb;
      --bg-strong: #e3edff;
      --card: #ffffff;
      --text: #0b3858;
      --muted: #475569;
      --accent: #2998ff;
      --accent-dark: #0054c7;
      --radius-xl: 24px;
      --radius-pill: 999px;
      --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
      --shadow-hover: 0 25px 50px -12px rgba(41, 152, 255, 0.25);
    }

    /* --- RESET & BASE --- */
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Inter", sans-serif;
      background: var(--bg);
      margin: 0;
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    h1, h2, h3, h4 {
      margin: 0;
      font-weight: 800;
      letter-spacing: -0.04em;
    }
    p {
      color: var(--muted);
      margin-top: 10px;
      font-size: 16px;
    }

    /* --- BUTTONS --- */
    .btn-primary {
      padding: 14px 30px;
      background: linear-gradient(135deg, var(--accent), #40b3ff);
      color: #ffffff;
      font-weight: 700;
      border-radius: var(--radius-pill);
      text-decoration: none;
      transition: 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(41, 152, 255, 0.4);
      font-size: 15px;
      white-space: nowrap;
    }
    .btn-primary:hover {
      transform: translateY(-2px) translateZ(0);
      box-shadow: var(--shadow-hover);
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    }
    .btn-ghost {
      padding: 12px 22px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
      font-size: 14px;
      color: var(--text);
      text-decoration: none;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-ghost:hover {
      border-color: rgba(41, 152, 255, 0.4);
      transform: translateY(-1px);
    }

    /* --- HERO --- */
    .master-hero {
      padding: 150px 0 80px;
      background:
        radial-gradient(circle at top right, rgba(41, 152, 255, 0.18), transparent 60%),
        radial-gradient(circle at bottom left, rgba(0, 84, 199, 0.12), transparent 55%),
        var(--bg);
      position: relative;
      overflow: hidden;
    }
    .master-hero::before {
      content: "";
      position: absolute;
      inset: -200px;
      background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.7), transparent 55%);
      opacity: 0.7;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 60px;
      align-items: center;
      z-index: 1;
    }

    .hero-badge {
      background: rgba(219, 234, 254, 0.9);
      color: var(--accent-dark);
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      border: 1px solid rgba(37, 99, 235, 0.15);
    }
    .hero-badge i {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(59,130,246,0.15);
      color: #1d4ed8;
      font-size: 11px;
    }

    .hero-title {
      font-size: clamp(40px, 4.6vw, 66px);
      line-height: 1.05;
      margin-bottom: 20px;
    }
    .hero-title span {
      color: var(--accent);
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      -webkit-background-clip: text;
      color: transparent;
    }
    .hero-desc {
      max-width: 480px;
      font-size: 17px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 24px;
    }
    .hero-meta {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      font-size: 13px;
      color: rgba(15,23,42,0.8);
    }
    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .hero-meta i {
      color: var(--accent);
      font-size: 14px;
    }

    .hero-right {
      position: relative;
    }
    .hero-panel {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 26px;
      padding: 22px 22px 18px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.2);
    }
    .hero-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }
    .hero-pill {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.08);
      color: #166534;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .hero-pill i { font-size: 10px; }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 16px;
    }
    .hero-stat-card {
      background: #f8fbff;
      border-radius: 16px;
      padding: 10px 10px;
      text-align: left;
    }
    .hero-stat-label {
      font-size: 11px;
      color: #64748b;
      margin-bottom: 4px;
    }
    .hero-stat-value {
      font-size: 17px;
      font-weight: 700;
    }
    .hero-stat-tag {
      margin-top: 2px;
      font-size: 10px;
      color: #22c55e;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .hero-timeline {
      border-radius: 18px;
      background: #0f172a;
      padding: 14px 14px 12px;
      color: white;
      font-size: 12px;
      position: relative;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .hero-timeline-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      font-size: 11px;
      opacity: 0.9;
    }
    .hero-timeline-steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
    }
    .hero-step {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .hero-step-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.6;
    }
    .hero-step-value {
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .hero-timeline-bar {
      position: absolute;
      inset-inline-start: 0;
      bottom: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), #22c55e);
      width: 40%;
    }

    .hero-floating-card {
      position: absolute;
      right: -10px;
      bottom: -16px;
      background: #ffffff;
      border-radius: 18px;
      padding: 10px 14px;
      box-shadow: var(--shadow-soft);
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(148, 163, 184, 0.2);
    }
    .hero-floating-card i {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #16a34a;
    }

    /* --- MINI STATS (NEW SECTION) --- */
    .stats-strip {
      margin-top: 10px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .stats-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 16px 16px 14px;
      box-shadow: 0 12px 30px rgba(148, 163, 184, 0.18);
      border: 1px solid rgba(148, 163, 184, 0.2);
    }
    .stats-label {
      font-size: 12px;
      color: #64748b;
      margin-bottom: 6px;
    }
    .stats-value {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }
    .stats-sub {
      font-size: 11px;
      color: #0f766e;
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 4px;
    }
    .stats-sub i { font-size: 10px; }

    /* --- GENERIC SECTION LAYOUT --- */
    .section-shell {
      padding: 80px 0 70px;
      position: relative;
    }
    .section-shell.alt {
      background: var(--bg-strong);
    }

    .section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 40px;
    }
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(219,234,254,0.9);
      color: #1d4ed8;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
    }
    .section-eyebrow i { font-size: 11px; }
    .section-title {
      font-size: 32px;
      margin-bottom: 8px;
    }
    .section-sub {
      font-size: 15px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      align-items: center;
      gap: 60px;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    /* Feature sections with optional reverse layout */
    .feature-section {
      padding: 90px 0;
      position: relative;
    }
    .feature-section.alt-bg {
      background: var(--bg-strong);
    }
    .feature-section .grid-2 {
      grid-template-columns: 1.1fr 1fr;
    }
    .feature-section.reverse .grid-2 {
      direction: rtl;
    }
    .feature-section.reverse .content-side {
      direction: ltr;
    }

    .number-badge {
      font-size: 56px;
      font-weight: 900;
      color: rgba(41, 152, 255, 0.18);
      line-height: 1;
      margin-bottom: -10px;
      display: block;
    }
    .sec-title {
      font-size: 34px;
      margin-bottom: 16px;
      color: var(--text);
    }
    .sec-desc {
      font-size: 16px;
      margin-bottom: 22px;
      max-width: 520px;
    }

    .usp-list {
      list-style: none;
      padding: 0;
      display: grid;
      gap: 12px;
      margin: 0;
    }
    .usp-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      color: var(--text);
      font-size: 14px;
    }
    .usp-list li i {
      color: var(--accent);
      font-size: 16px;
      background: rgba(41, 152, 255, 0.08);
      padding: 8px;
      border-radius: 999px;
      flex-shrink: 0;
    }

    .visual-side img {
      width: 100%;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
      transform-origin: center;
    }
    .visual-side:hover img {
      transform: translateY(-4px) scale(1.01);
      box-shadow: var(--shadow-hover);
    }

    /* --- NEW SECTION: 3-PILLAR OVERVIEW --- */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }
    .pillar-card {
      background: #ffffff;
      border-radius: 22px;
      padding: 20px 20px 18px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148,163,184,0.25);
      position: relative;
      overflow: hidden;
    }
    .pillar-icon {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-dark);
      margin-bottom: 12px;
    }
    .pillar-title {
      font-size: 17px;
      margin-bottom: 6px;
    }
    .pillar-body {
      font-size: 14px;
      margin-bottom: 10px;
    }
    .pillar-tag {
      font-size: 12px;
      color: #22c55e;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .pillar-tag i { font-size: 11px; }

    /* --- NEW SECTION: HOW IT WORKS TIMELINE --- */
    .timeline-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .timeline-steps {
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
    }
    .timeline-steps::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--accent), rgba(148,163,184,0.4));
    }
    .timeline-step {
      position: relative;
      padding-left: 34px;
    }
    .timeline-dot {
      position: absolute;
      left: 4px;
      top: 4px;
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: #ffffff;
      border: 3px solid var(--accent);
      box-shadow: 0 0 0 4px rgba(41,152,255,0.18);
    }
    .timeline-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #64748b;
      margin-bottom: 4px;
    }
    .timeline-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .timeline-text {
      font-size: 14px;
    }
    .timeline-card {
      background: #0f172a;
      border-radius: 22px;
      padding: 18px 18px 16px;
      color: white;
      box-shadow: var(--shadow-soft);
    }
    .timeline-card-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      font-size: 12px;
      opacity: 0.9;
    }
    .timeline-card-pills {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .timeline-pill {
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 11px;
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(148,163,184,0.5);
    }
    .timeline-card-body {
      font-size: 13px;
    }

    /* --- NEW SECTION: WHO IT'S FOR --- */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }
    .audience-card {
      background: #ffffff;
      border-radius: 22px;
      padding: 18px 18px 16px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148,163,184,0.25);
    }
    .audience-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }
    .audience-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-dark);
    }
    .audience-title {
      font-size: 16px;
      font-weight: 600;
    }
    .audience-body {
      font-size: 13px;
      margin-bottom: 10px;
    }
    .audience-points {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 4px;
      font-size: 12px;
      color: #64748b;
    }
    .audience-points li i {
      font-size: 10px;
      color: #22c55e;
      margin-right: 4px;
    }

    /* --- NEW SECTION: INTEGRATIONS --- */
    .integrations-bar {
      background: linear-gradient(135deg, #0f172a, #020617);
      color: white;
      padding: 40px 0 36px;
    }
    .integrations-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .integrations-heading {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .integrations-sub {
      font-size: 13px;
      opacity: 0.8;
    }
    .integrations-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
    }
    .integration-pill {
      border-radius: 999px;
      padding: 6px 12px;
      border: 1px solid rgba(148,163,184,0.5);
      background: rgba(15,23,42,0.8);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
    }
    .integration-pill i {
      font-size: 13px;
      color: #38bdf8;
    }

    /* --- COMPLIANCE GRID (existing section) --- */
    .compliance-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .comp-card {
      background: var(--card);
      padding: 22px 20px 18px;
      border-radius: 18px;
      text-align: left;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148,163,184,0.25);
    }
    .comp-card i {
      font-size: 26px;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .comp-card h4 {
      margin: 0 0 6px;
      font-size: 16px;
    }
    .comp-card p {
      font-size: 14px;
      margin: 0;
    }

    /* --- CTA SECTION --- */
    .cta-section {
      background: radial-gradient(circle at top left, rgba(59,130,246,0.38), transparent 55%),
                  var(--accent-dark);
      color: white;
      text-align: center;
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at bottom right, rgba(15,23,42,0.8), transparent 60%);
      opacity: 0.6;
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
    }
    .cta-title {
      font-size: 36px;
      margin-bottom: 14px;
    }
    .cta-text {
      color: rgba(255,255,255,0.82);
      font-size: 17px;
      margin-bottom: 26px;
    }
    .cta-meta {
      margin-top: 14px;
      font-size: 13px;
      color: rgba(226,232,240,0.9);
    }

    /* --- FOOTER --- */
    .footer {
      background: #0b1220;
      color: #cbd5f5;
      font-size: 13px;
    }
    .footer-inner {
      text-align: center;
      padding: 30px 0;
    }

    /* --- ANIMATION HOOKS --- */
    [data-animate] {
      opacity: 0;
      transform: translateY(30px);
      will-change: transform, opacity;
    }
    .anim-from-right {
      transform: translateX(40px);
    }
    .anim-from-left {
      transform: translateX(-40px);
    }
    .anim-scale {
      transform: scale(0.96);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
      }
      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .grid-3,
      .pillars-grid,
      .audience-grid,
      .compliance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .timeline-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
      }
      .hero-desc {
        max-width: 100%;
      }
      .hero-right {
        order: -1;
      }
      .hero-floating-card {
        position: static;
        margin-top: 10px;
      }
      .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .feature-section.reverse .grid-2 {
        direction: ltr;
      }
      .usp-list {
        text-align: left;
      }
      .integrations-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 720px) {
      .stats-grid,
      .grid-3,
      .pillars-grid,
      .audience-grid,
      .compliance-grid {
        grid-template-columns: 1fr;
      }
      .master-hero {
        padding-top: 130px;
      }
      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }
      .hero-panel {
        padding: 18px 16px 16px;
      }
    }