            /* Al Banking */

:root {
      --navy-dark: #040615;
      --navy-mid: #0d2241;
      --blue-brand: #2c6cc8;
      --gold: #ffd058;
      --gold-end: #f3d78f;
      --white: #ffffff;
      --text-muted: rgba(255,255,255,0.6);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background-color: black;
      font-family: 'Instrument Sans', sans-serif;
      color: var(--white);
      overflow-x: hidden;
    }

    /* ─── Scrollbar ─── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--navy-dark); }
    ::-webkit-scrollbar-thumb { background: var(--blue-brand); border-radius: 2px; }

    /* ─── Background Stars Animation ─── */
    .stars-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .star {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.8);
      animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
      animation-delay: var(--delay, 0s);
    }
    @keyframes twinkle {
      0%   { opacity: 0.1; transform: scale(1); }
      100% { opacity: 0.8; transform: scale(1.4); }
    }

    /* ─── Floating Orbs ─── */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }
    .orb-1 {
      width: 500px; height: 500px;
      background: rgba(44,108,200,0.18);
      top: 0; left: -100px;
      animation: floatOrb1 14s ease-in-out infinite alternate;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: rgba(255,208,88,0.08);
      bottom: 0; right: -80px;
      animation: floatOrb2 16s ease-in-out infinite alternate;
    }
    @keyframes floatOrb1 {
      0%   { transform: translate(0,0); }
      50%  { transform: translate(40vw, 60vh); }
      100% { transform: translate(0,0); }
    }
    @keyframes floatOrb2 {
      0%   { transform: translate(0,0); }
      50%  { transform: translate(-35vw,-55vh); }
      100% { transform: translate(0,0); }
    }

    /* ─── Animated Grid Lines ─── */
    .grid-lines {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(44,108,200,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44,108,200,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridShift 20s linear infinite;
    }
    @keyframes gridShift {
      0%   { background-position: 0 0; }
      100% { background-position: 60px 60px; }
    }

    /* ─── Top Banner ─── */
    .top-banner {
      background: linear-gradient(90deg, var(--navy-mid), var(--blue-brand));
      text-align: center;
      padding: 0.6rem 1rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.9);
      position: relative;
      z-index: 10;
    }
    .top-banner a { color: var(--gold); font-weight: 600; margin-left: 0.5rem; text-decoration: none; }

    /* ─── Section Nav ─── */
    .section-nav {
      position: sticky;
      top: 0;
      z-index: 80;
      background: rgba(13,34,65,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .section-nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 52px;
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .section-nav-tag {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .section-nav-links { display: flex; gap: 1.5rem; overflow-x: auto; }
    .section-nav-link {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      white-space: nowrap;
      padding: 0.25rem 0;
      border-bottom: 1px solid transparent;
      transition: all 0.2s;
    }
    .section-nav-link:hover,
    .section-nav-link.active {
      color: #fff;
      border-bottom-color: #fff;
    }

    /* ─── Page Wrapper ─── */
    .page-wrapper {
      position: relative;
      z-index: 1;
    }

    /* ─── Container ─── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* ─── Hero Section ─── */
    .hero-section {
      padding: 5rem 0 4rem;
      position: relative;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(44,108,200,0.15);
      border: 1px solid rgba(44,108,200,0.3);
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1.5rem;
    }
    .hero-badge span { color: var(--gold); font-weight: 600; }
    .hero-h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 1.25rem;
      background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.7));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-tagline {
      font-size: 1.05rem;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .hero-desc {
      font-size: 0.95rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.65);
      margin-bottom: 2rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(90deg, var(--blue-brand), var(--navy-mid));
      color: #fff;
      padding: 0.8rem 1.75rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.25s;
      display: inline-block;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(44,108,200,0.35); }
    .btn-secondary {
      background: transparent;
      color: #fff;
      padding: 0.8rem 1.75rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.25);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s;
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,0.6); }

    /* ─── Hero Visual / Animated Dashboard ─── */
    .hero-visual { position: relative; }
    .banking-dashboard {
      background: rgba(13,34,65,0.7);
      border: 1px solid rgba(44,108,200,0.2);
      border-radius: 16px;
      padding: 1.5rem;
      backdrop-filter: blur(20px);
      box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
      position: relative;
      overflow: hidden;
    }
    .dashboard-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.25rem;
    }
    .dashboard-title { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9); }
    .live-badge {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.7rem;
      color: #22d3a0;
      background: rgba(34,211,160,0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 50px;
    }
    .live-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #22d3a0;
      animation: pulse-dot 1.5s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.4; transform: scale(0.7); }
    }

    /* Stats Row */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      padding: 0.75rem;
    }
    .stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
    .stat-value { font-size: 1.1rem; font-weight: 700; color: #fff; }
    .stat-change { font-size: 0.65rem; color: #22d3a0; margin-top: 0.2rem; }
    .stat-change.neg { color: #f87171; }

    /* Chart Area */
    .chart-area { margin-bottom: 1rem; position: relative; }
    .chart-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 70px;
    }
    .bar {
      flex: 1;
      background: linear-gradient(to top, var(--blue-brand), rgba(44,108,200,0.3));
      border-radius: 3px 3px 0 0;
      animation: barGrow 1s ease-out forwards;
      transform-origin: bottom;
    }
    @keyframes barGrow {
      from { transform: scaleY(0); }
      to   { transform: scaleY(1); }
    }

    /* AI Transactions */
    .tx-list { display: flex; flex-direction: column; gap: 0.5rem; }
    .tx-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 8px;
      padding: 0.6rem 0.75rem;
      font-size: 0.75rem;
      animation: fadeSlideIn 0.5s ease-out forwards;
      opacity: 0;
    }
    .tx-item:nth-child(1) { animation-delay: 0.2s; }
    .tx-item:nth-child(2) { animation-delay: 0.4s; }
    .tx-item:nth-child(3) { animation-delay: 0.6s; }
    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateX(-10px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .tx-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem;
      margin-right: 0.6rem;
    }
    .tx-info { display: flex; align-items: center; flex: 1; }
    .tx-name { color: rgba(255,255,255,0.85); font-weight: 500; }
    .tx-sub  { color: rgba(255,255,255,0.4); font-size: 0.65rem; }
    .tx-amount { font-weight: 700; }
    .tx-amount.credit { color: #22d3a0; }
    .tx-amount.debit  { color: #f87171; }
    .tx-ai-tag {
      font-size: 0.6rem;
      background: rgba(255,208,88,0.15);
      color: var(--gold);
      padding: 0.15rem 0.4rem;
      border-radius: 3px;
      margin-left: 0.5rem;
    }
    .dashboard-glow {
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: rgba(44,108,200,0.15);
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
    }

    /* ─── Logos Section ─── */
    .logos-section {
      padding: 3rem 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .logos-label {
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .logos-marquee {
      overflow: hidden;
      -webkit-mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
      mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    }
    .logos-track {
      display: flex;
      gap: 3rem;
      align-items: center;
      animation: marqueeScroll 25s linear infinite;
      width: max-content;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .logo-item {
      font-family: 'DM Serif Display', serif;
      font-size: 1rem;
      color: rgba(255,255,255,0.25);
      white-space: nowrap;
      letter-spacing: 0.05em;
    }

    /* ─── Section Styles ─── */
    .section { padding: 5rem 0; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      line-height: 1.2;
      margin-bottom: 1rem;
      color: #fff;
    }
    .section-title .highlight {
      background: linear-gradient(90deg, var(--gold), var(--gold-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-desc {
      font-size: 0.95rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.6);
      max-width: 600px;
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      gap: 2rem;
    }
    .view-all-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      white-space: nowrap;
      transition: color 0.2s;
    }
    .view-all-link:hover { color: #fff; }
    .view-all-line {
      width: 40px; height: 1px;
      background: rgba(255,255,255,0.3);
      margin-left: 0.25rem;
      transition: width 0.3s;
    }
    .view-all-link:hover .view-all-line { width: 55px; }

    /* ─── IdeaKit Section ─── */
    .ideakit-box {
      background: linear-gradient(135deg, rgba(13,34,65,0.8) 0%, rgba(4,6,21,0.9) 100%);
      border: 1px solid rgba(44,108,200,0.2);
      border-radius: 20px;
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }
    .ideakit-box::before {
      content: '';
      position: absolute;
      top: -1px; left: -1px; right: -1px; bottom: -1px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(44,108,200,0.3), transparent 50%, rgba(255,208,88,0.1));
      z-index: -1;
      pointer-events: none;
    }
    .ideakit-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255,208,88,0.1);
      border: 1px solid rgba(255,208,88,0.2);
      color: var(--gold);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.35rem 0.75rem;
      border-radius: 50px;
      margin-bottom: 1rem;
    }
    .ideakit-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.6rem;
      line-height: 1.3;
      margin-bottom: 1rem;
      color: #fff;
    }
    .ideakit-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
    .checklist { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
    }
    .check-icon {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(44,108,200,0.2);
      border: 1px solid rgba(44,108,200,0.4);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .check-icon svg { width: 10px; height: 10px; }
    .email-form { display: flex; gap: 0.5rem; }
    .email-input {
      flex: 1;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      color: #fff;
      font-size: 0.85rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
    }
    .email-input::placeholder { color: rgba(255,255,255,0.35); }
    .email-input:focus { border-color: var(--blue-brand); }
    .email-submit {
      background: linear-gradient(270deg, var(--navy-dark) -60%, var(--blue-brand) 52%, var(--navy-mid) 160%);
      color: #fff;
      border: none;
      padding: 0.7rem 1.25rem;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      transition: opacity 0.2s;
    }
    .email-submit:hover { opacity: 0.85; }
    .ideakit-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .ideakit-mockup {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 1.5rem;
      width: 100%;
    }
    .mockup-cover {
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
      border-radius: 10px;
      padding: 2rem 1.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .mockup-cover::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(44,108,200,0.3), transparent 60%);
    }
    .mockup-cover-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
    }
    .mockup-cover-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }
    .mockup-gold-line {
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-end));
      border-radius: 2px;
      margin: 1rem 0;
    }
    .mockup-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .mockup-tag {
      background: rgba(44,108,200,0.15);
      color: rgba(255,255,255,0.7);
      font-size: 0.65rem;
      padding: 0.25rem 0.6rem;
      border-radius: 4px;
    }

    /* ─── What We Do Cards ─── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .service-card {
      background: linear-gradient(135deg, rgba(13,34,65,0.7) 0%, rgba(4,6,21,0.8) 100%);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 1.75rem;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
      cursor: pointer;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(44,108,200,0.08), transparent 60%);
      opacity: 0;
      transition: opacity 0.35s;
    }
    .service-card:hover {
      border-color: rgba(44,108,200,0.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(44,108,200,0.1);
    }
    .service-card:hover::before { opacity: 1; }
    .card-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(44,108,200,0.15);
      border: 1px solid rgba(44,108,200,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .card-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.6rem;
      line-height: 1.35;
    }
    .card-desc { font-size: 0.825rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
    .card-glow {
      position: absolute;
      bottom: -40px; right: -40px;
      width: 120px; height: 120px;
      background: rgba(44,108,200,0.1);
      border-radius: 50%;
      filter: blur(30px);
    }

    /* ─── Workshop / Timeline Section ─── */
    .workshop-section {
      background: linear-gradient(135deg, rgba(13,34,65,0.5) 0%, rgba(4,6,21,0.5) 100%);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 24px;
      padding: 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .workshop-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--blue-brand), transparent);
    }
    .workshop-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 3rem;
      align-items: start;
      margin-top: 2rem;
    }
    .workshop-steps { display: flex; flex-direction: column; gap: 0; }
    .ws-step {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.25s;
    }
    .ws-step.active { background: rgba(44,108,200,0.1); }
    .ws-step-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      border: 2px solid rgba(255,255,255,0.2);
      margin-top: 3px;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .ws-step.active .ws-step-dot {
      background: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 0 10px rgba(255,208,88,0.4);
    }
    .ws-step-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }
    .ws-step.active .ws-step-text { color: #fff; }
    .ws-step-connector {
      width: 1px;
      height: 30px;
      background: rgba(255,255,255,0.1);
      margin-left: 1.375rem;
    }
    .ws-panel {
      background: linear-gradient(135deg, rgba(4,6,21,0.8), rgba(13,34,65,0.6));
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      overflow: hidden;
    }
    .ws-panel-content { display: none; }
    .ws-panel-content.active { display: block; }
    .ws-panel-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      padding: 2rem;
      align-items: center;
    }
    .ws-panel-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.75rem; color: #fff; }
    .ws-panel-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
    .ws-panel-img {
      background: rgba(44,108,200,0.08);
      border: 1px solid rgba(44,108,200,0.15);
      border-radius: 10px;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      position: relative;
      overflow: hidden;
    }
    .ws-panel-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(44,108,200,0.2), transparent 70%);
    }

    /* ─── Showcase Section ─── */
    .showcase-card {
      background: linear-gradient(135deg, rgba(13,34,65,0.8), rgba(4,6,21,0.9));
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .showcase-left {
      padding: 2.5rem;
      border-right: 1px solid rgba(255,255,255,0.05);
    }
    .showcase-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .showcase-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: #fff; margin-bottom: 0.75rem; line-height: 1.35; }
    .showcase-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
    .showcase-how { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
    .showcase-list { display: flex; flex-direction: column; gap: 0.5rem; }
    .showcase-list-item {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.825rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
    }
    .showcase-list-item::before {
      content: '▸';
      color: var(--blue-brand);
      flex-shrink: 0;
      margin-top: 1px;
    }
    .showcase-right { padding: 2.5rem; }
    .showcase-stats-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
    .stats-grid-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .showcase-stat {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 1rem;
    }
    .showcase-stat-value { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
    .showcase-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

    /* ─── Contact Section ─── */
    .contact-section {
      background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 60%);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .contact-left  { padding: 3.5rem; border-right: 1px solid rgba(255,255,255,0.05); }
    .contact-right { padding: 3.5rem; }
    .contact-heading {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }
    .contact-heading span { color: var(--gold); }
    .contact-checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
    .contact-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
    .contact-check .icon { color: var(--gold); flex-shrink: 0; }
    .partners-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
    .partners-row { display: flex; gap: 1rem; flex-wrap: wrap; }
    .partner-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.35); }
    .form-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
      display: block;
    }
    .form-input {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      color: #fff;
      font-size: 0.875rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
      margin-bottom: 1rem;
    }
    .form-input:focus { border-color: var(--blue-brand); }
    .form-input::placeholder { color: rgba(255,255,255,0.25); }
    select.form-input option { background: var(--navy-dark); color: #fff; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
    .form-submit {
      width: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-end));
      color: var(--navy-dark);
      border: none;
      padding: 0.9rem;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: opacity 0.2s;
      margin-top: 0.25rem;
    }
    .form-submit:hover { opacity: 0.9; }
    .contact-orb-1 {
      position: absolute;
      bottom: -80px; left: -80px;
      width: 250px; height: 250px;
      background: rgba(44,108,200,0.12);
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
    }
    .contact-orb-2 {
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: rgba(255,208,88,0.06);
      border-radius: 50%;
      filter: blur(50px);
      pointer-events: none;
    }
    .cert-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
    .cert-badge {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      padding: 0.4rem 0.75rem;
      font-size: 0.65rem;
      color: rgba(255,255,255,0.5);
      font-weight: 600;
    }

    /* ─── Perspectives Section ─── */
    .perspectives-section { background: rgba(4,6,21,0.95); padding: 5rem 0; }
    .persp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .persp-card {
      background: linear-gradient(135deg, rgba(13,34,65,0.6), rgba(4,6,21,0.8));
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 1.75rem;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      min-height: 280px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .persp-card:hover {
      border-color: rgba(44,108,200,0.3);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    .persp-type { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin-bottom: 0.75rem; }
    .persp-title { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.45; margin-bottom: 0.75rem; flex: 1; }
    .persp-excerpt { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.25rem; }
    .persp-read-more {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .persp-card:hover .persp-read-more { color: #fff; }

    /* ─── Scroll progress bar ─── */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--blue-brand), var(--gold));
      z-index: 200;
      transition: width 0.1s linear;
    }

    /* ─── Section entry animation ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }

    /* ─── Responsive ─── */
    @media (max-width: 1024px) {
      .hero-grid, .ideakit-box, .showcase-card, .contact-inner, .workshop-grid { grid-template-columns: 1fr; }
      .cards-grid, .persp-grid { grid-template-columns: repeat(2, 1fr); }
      .workshop-section { padding: 2rem; }
      .ws-panel-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .cards-grid, .persp-grid, .stats-row { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .section-header { flex-direction: column; align-items: flex-start; }
      .email-form { flex-direction: column; }
      .contact-inner { grid-template-columns: 1fr; }
      .contact-left, .contact-right { padding: 2rem; }
      .ideakit-box { padding: 2rem; }
      .form-grid { grid-template-columns: 1fr; }
      .persp-grid { grid-template-columns: 1fr; }
    }



               /* Al Fintech  */

    :root {
      --void: #07050f;
      --deep-purple: #130d2e;
      --purple-mid: #1e1147;
      --purple-light: #2d1b69;
      --electric: #4f6ef7;
      --electric-bright: #7b94ff;
      --cyan: #00e5ff;
      --cyan-dim: #00b8d4;
      --white: #ffffff;
      --muted: rgba(255,255,255,0.55);
      --card-bg: rgba(30,17,71,0.6);
      --border: rgba(79,110,247,0.18);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background-color: black;
      font-family: 'Instrument Sans', sans-serif;
      color: var(--white);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--void); }
    ::-webkit-scrollbar-thumb { background: var(--electric); border-radius: 2px; }

    /* ── Scroll Progress ── */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 2px;
      background: linear-gradient(90deg, var(--electric), var(--cyan));
      z-index: 300; transition: width 0.1s linear; width: 0%;
    }

    /* ── Background ── */
    .bg-layer {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(79,110,247,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,110,247,0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridDrift 25s linear infinite;
    }
    @keyframes gridDrift {
      from { background-position: 0 0; }
      to   { background-position: 50px 50px; }
    }
    .bg-orb {
      position: absolute; border-radius: 50%; filter: blur(100px);
    }
    .orb-a {
      width: 600px; height: 600px;
      background: rgba(79,110,247,0.15);
      top: -100px; left: -150px;
      animation: driftA 18s ease-in-out infinite alternate;
    }
    .orb-b {
      width: 500px; height: 500px;
      background: rgba(0,229,255,0.08);
      bottom: -80px; right: -100px;
      animation: driftB 22s ease-in-out infinite alternate;
    }
    .orb-c {
      width: 350px; height: 350px;
      background: rgba(123,148,255,0.1);
      top: 40%; left: 50%;
      animation: driftC 15s ease-in-out infinite alternate;
    }
    @keyframes driftA { 0% { transform: translate(0,0); } 100% { transform: translate(30vw, 40vh); } }
    @keyframes driftB { 0% { transform: translate(0,0); } 100% { transform: translate(-25vw,-35vh); } }
    @keyframes driftC { 0% { transform: translate(0,0); } 100% { transform: translate(15vw,-20vh); } }

    /* ── Particles ── */
    .particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
    .particle {
      position: absolute; border-radius: 50%;
      background: var(--electric-bright);
      animation: particleFloat var(--dur) ease-in-out infinite alternate;
      animation-delay: var(--del);
      opacity: 0;
    }
    @keyframes particleFloat {
      0%   { opacity: 0; transform: translateY(0) scale(1); }
      50%  { opacity: 0.6; }
      100% { opacity: 0; transform: translateY(-40px) scale(1.5); }
    }

    /* ── Section Nav ── */
    .section-nav {
      position: sticky; top: 0; z-index: 80;
      background: rgba(7,5,15,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .section-nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 2rem;
      height: 54px; display: flex; align-items: center; gap: 2rem;
    }
    .nav-tag {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--cyan); white-space: nowrap;
    }
    .nav-links { display: flex; gap: 1.75rem; overflow-x: auto; }
    .nav-link {
      color: var(--muted); text-decoration: none; font-size: 0.8rem;
      font-weight: 500; white-space: nowrap; padding: 0.25rem 0;
      border-bottom: 1px solid transparent; transition: all 0.2s;
    }
    .nav-link:hover, .nav-link.active { color: #fff; border-bottom-color: var(--electric); }

    /* ── Page Wrapper ── */
    .page { position: relative; z-index: 1; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

    /* ── HERO ── */
    .hero {
      padding: 6rem 0 5rem;
      position: relative;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(79,110,247,0.12);
      border: 1px solid rgba(79,110,247,0.3);
      padding: 0.4rem 1rem; border-radius: 50px;
      font-size: 0.72rem; color: var(--electric-bright);
      font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 1.75rem;
    }
    .hero-eyebrow::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyan); animation: pulse-dot 1.5s infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.6); }
    }
    .hero-h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      line-height: 1.12; margin-bottom: 1.25rem;
      background: linear-gradient(135deg, #fff 20%, rgba(123,148,255,0.85));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-tagline {
      font-size: 1.05rem; color: var(--cyan); font-weight: 600; margin-bottom: 1rem;
    }
    .hero-desc {
      font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-bottom: 2.25rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, var(--electric), var(--purple-light));
      color: #fff; padding: 0.85rem 2rem; border-radius: 10px;
      text-decoration: none; font-weight: 700; font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.1); transition: all 0.25s; display: inline-block;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(79,110,247,0.45); }
    .btn-ghost {
      background: transparent; color: #fff; padding: 0.85rem 2rem;
      border-radius: 10px; text-decoration: none; font-weight: 600;
      font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.2);
      display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s;
    }
    .btn-ghost:hover { border-color: var(--electric); color: var(--electric-bright); }

    /* ── Hero Visual: Fintech Flow Card ── */
    .hero-visual { position: relative; }
    .fintech-card {
      background: rgba(19,13,46,0.8);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 1.75rem;
      backdrop-filter: blur(24px);
      box-shadow: 0 30px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
      position: relative; overflow: hidden;
    }
    .fintech-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--electric), var(--cyan), transparent);
    }
    .card-header {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem;
    }
    .card-title-group { display: flex; align-items: center; gap: 0.75rem; }
    .card-icon-wrap {
      width: 36px; height: 36px; border-radius: 10px;
      background: linear-gradient(135deg, var(--electric), var(--purple-light));
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .card-title { font-size: 0.875rem; font-weight: 700; color: #fff; }
    .card-sub { font-size: 0.65rem; color: var(--muted); }
    .live-pill {
      display: flex; align-items: center; gap: 0.4rem;
      background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.25);
      padding: 0.2rem 0.65rem; border-radius: 50px;
      font-size: 0.65rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.08em;
    }
    .live-dot {
      width: 5px; height: 5px; border-radius: 50%; background: var(--cyan);
      animation: pulse-dot 1.5s infinite;
    }

    /* Payment Flow */
    .payment-flow { margin-bottom: 1.5rem; }
    .flow-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
    .flow-steps {
      display: flex; align-items: center; gap: 0; margin-bottom: 1rem;
    }
    .flow-step {
      flex: 1; background: rgba(79,110,247,0.08);
      border: 1px solid rgba(79,110,247,0.15);
      border-radius: 8px; padding: 0.6rem 0.5rem; text-align: center;
    }
    .flow-step-icon { font-size: 1rem; margin-bottom: 0.2rem; }
    .flow-step-label { font-size: 0.6rem; color: var(--muted); }
    .flow-arrow {
      width: 24px; text-align: center; color: var(--electric); font-size: 0.7rem; flex-shrink: 0;
    }
    .flow-step.active {
      background: rgba(79,110,247,0.2); border-color: var(--electric);
    }
    .flow-step.active .flow-step-label { color: var(--electric-bright); }

    /* Metrics Row */
    .metrics-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem;
    }
    .metric {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px; padding: 0.75rem; text-align: center;
    }
    .metric-val { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
    .metric-val.up { color: #22d3a0; }
    .metric-val.blue { color: var(--electric-bright); }
    .metric-label { font-size: 0.6rem; color: var(--muted); }

    /* Transaction Stream */
    .tx-stream { display: flex; flex-direction: column; gap: 0.5rem; }
    .tx-row {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
      border-radius: 9px; padding: 0.55rem 0.75rem;
      animation: slideIn 0.5s ease forwards; opacity: 0;
    }
    .tx-row:nth-child(1) { animation-delay: 0.1s; }
    .tx-row:nth-child(2) { animation-delay: 0.3s; }
    .tx-row:nth-child(3) { animation-delay: 0.5s; }
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(10px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .tx-left { display: flex; align-items: center; gap: 0.6rem; }
    .tx-badge {
      width: 26px; height: 26px; border-radius: 7px;
      display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
    }
    .tx-name { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.88); }
    .tx-meta { font-size: 0.6rem; color: var(--muted); }
    .tx-tag {
      font-size: 0.55rem; background: rgba(79,110,247,0.2); color: var(--electric-bright);
      padding: 0.1rem 0.35rem; border-radius: 3px; margin-left: 0.4rem; font-weight: 600;
    }
    .tx-amount { font-size: 0.8rem; font-weight: 700; }
    .tx-amount.g { color: #22d3a0; }
    .tx-amount.r { color: #f87171; }

    /* ── Clients Strip ── */
    .clients-strip {
      padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .clients-label {
      text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.3);
      text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem;
    }
    .marquee-wrap {
      overflow: hidden;
      -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
      mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    }
    .marquee-track {
      display: flex; gap: 3.5rem; align-items: center;
      animation: marquee 28s linear infinite; width: max-content;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-item {
      font-family: 'DM Serif Display', serif; font-size: 0.95rem;
      color: rgba(255,255,255,0.22); white-space: nowrap; letter-spacing: 0.04em;
    }

    /* ── Sections ── */
    .section { padding: 5.5rem 0; }
    .sec-label {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--cyan); font-weight: 700; margin-bottom: 1rem;
    }
    .sec-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      line-height: 1.2; margin-bottom: 1rem; color: #fff;
    }
    .sec-title .hl {
      background: linear-gradient(90deg, var(--electric-bright), var(--cyan));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .sec-desc { font-size: 0.95rem; line-height: 1.75; color: var(--muted); max-width: 580px; }
    .sec-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem; gap: 2rem;
    }
    .sec-link {
      display: flex; align-items: center; gap: 0.5rem;
      color: var(--muted); text-decoration: none; font-size: 0.82rem;
      font-weight: 500; white-space: nowrap; transition: color 0.2s;
    }
    .sec-link:hover { color: var(--electric-bright); }
    .sec-line {
      width: 36px; height: 1px; background: rgba(255,255,255,0.25);
      transition: width 0.3s;
    }
    .sec-link:hover .sec-line { width: 50px; background: var(--electric); }

    /* ── IdeaKit Box ── */
    .ideakit-wrap {
      background: linear-gradient(135deg, rgba(19,13,46,0.9), rgba(7,5,15,0.95));
      border: 1px solid var(--border); border-radius: 22px; padding: 3.5rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
      position: relative; overflow: hidden;
    }
    .ideakit-wrap::before {
      content: ''; position: absolute; inset: 0; border-radius: 22px;
      background: linear-gradient(135deg, rgba(79,110,247,0.12), transparent 55%, rgba(0,229,255,0.05));
      pointer-events: none;
    }
    .kit-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
      color: var(--cyan); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.35rem 0.8rem; border-radius: 50px; margin-bottom: 1rem;
    }
    .kit-title { font-family: 'DM Serif Display', serif; font-size: 1.7rem; line-height: 1.3; margin-bottom: 1rem; color: #fff; }
    .kit-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
    .kit-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
    .kit-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
    .kit-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(79,110,247,0.15); border: 1px solid rgba(79,110,247,0.4);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }
    .kit-check svg { width: 10px; height: 10px; }
    .kit-form { display: flex; gap: 0.5rem; }
    .kit-input {
      flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 9px; padding: 0.75rem 1rem; color: #fff; font-size: 0.85rem;
      font-family: inherit; outline: none; transition: border-color 0.2s;
    }
    .kit-input::placeholder { color: rgba(255,255,255,0.3); }
    .kit-input:focus { border-color: var(--electric); }
    .kit-btn {
      background: linear-gradient(135deg, var(--electric), var(--purple-light));
      color: #fff; border: none; padding: 0.75rem 1.4rem; border-radius: 9px;
      font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity 0.2s;
    }
    .kit-btn:hover { opacity: 0.85; }
    .kit-visual { display: flex; justify-content: center; align-items: center; }
    .kit-mockup {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px; padding: 1.5rem; width: 100%;
    }
    .kit-cover {
      background: linear-gradient(135deg, var(--purple-mid), var(--void));
      border-radius: 12px; padding: 2rem 1.5rem; text-align: center;
      position: relative; overflow: hidden; margin-bottom: 1rem;
    }
    .kit-cover::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 60% 30%, rgba(79,110,247,0.35), transparent 65%);
    }
    .kit-cover-icon { font-size: 2.2rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
    .kit-cover-title { font-family: 'DM Serif Display', serif; font-size: 1rem; color: #fff; margin-bottom: 0.35rem; position: relative; z-index: 1; }
    .kit-cover-sub { font-size: 0.65rem; color: var(--muted); position: relative; z-index: 1; }
    .kit-divider { height: 2px; background: linear-gradient(90deg, var(--electric), var(--cyan)); border-radius: 2px; margin: 0.75rem 0; }
    .kit-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .kit-tag {
      background: rgba(79,110,247,0.12); color: rgba(255,255,255,0.65);
      font-size: 0.62rem; padding: 0.25rem 0.6rem; border-radius: 4px;
    }

    /* ── Services Grid ── */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .svc-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 18px; padding: 1.75rem; position: relative;
      overflow: hidden; transition: all 0.35s; cursor: pointer;
    }
    .svc-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(79,110,247,0.1), transparent 60%);
      opacity: 0; transition: opacity 0.35s;
    }
    .svc-card:hover { border-color: rgba(79,110,247,0.4); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(79,110,247,0.15); }
    .svc-card:hover::after { opacity: 1; }
    .svc-icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(79,110,247,0.2), rgba(79,110,247,0.05));
      border: 1px solid rgba(79,110,247,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; margin-bottom: 1.1rem; position: relative; z-index: 1;
    }
    .svc-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; line-height: 1.35; position: relative; z-index: 1; }
    .svc-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; }
    .svc-glow {
      position: absolute; bottom: -50px; right: -50px;
      width: 130px; height: 130px;
      background: rgba(79,110,247,0.12); border-radius: 50%; filter: blur(35px);
    }

    /* ── How We Work (Timeline) ── */
    .how-box {
      background: linear-gradient(135deg, rgba(19,13,46,0.6), rgba(7,5,15,0.7));
      border: 1px solid var(--border); border-radius: 24px; padding: 3.5rem;
      position: relative; overflow: hidden;
    }
    .how-box::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--electric), var(--cyan), transparent);
    }
    .how-grid { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; margin-top: 2rem; }
    .how-steps { display: flex; flex-direction: column; }
    .how-step {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 0.9rem 1rem; border-radius: 10px; cursor: pointer; transition: background 0.25s;
    }
    .how-step.active { background: rgba(79,110,247,0.1); }
    .how-dot {
      width: 11px; height: 11px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.15);
      margin-top: 3px; flex-shrink: 0; transition: all 0.3s;
    }
    .how-step.active .how-dot { background: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 12px rgba(0,229,255,0.5); }
    .how-step-text { font-size: 0.83rem; color: var(--muted); font-weight: 500; }
    .how-step.active .how-step-text { color: #fff; }
    .how-connector { width: 1px; height: 28px; background: var(--border); margin-left: 1.34rem; }
    .how-panel {
      background: linear-gradient(135deg, rgba(7,5,15,0.8), rgba(19,13,46,0.5));
      border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
    }
    .how-content { display: none; }
    .how-content.active { display: block; }
    .how-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
      padding: 2rem; align-items: center;
    }
    .how-panel-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.75rem; color: #fff; }
    .how-panel-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }
    .how-img {
      background: rgba(79,110,247,0.07); border: 1px solid rgba(79,110,247,0.15);
      border-radius: 12px; height: 160px; display: flex; align-items: center;
      justify-content: center; font-size: 3rem; position: relative; overflow: hidden;
    }
    .how-img::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at center, rgba(79,110,247,0.2), transparent 70%);
    }

    /* ── Case Study ── */
    .case-card {
      background: linear-gradient(135deg, rgba(19,13,46,0.85), rgba(7,5,15,0.9));
      border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .case-left { padding: 2.75rem; border-right: 1px solid var(--border); }
    .case-tag {
      font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--cyan); font-weight: 700; margin-bottom: 0.75rem;
    }
    .case-title { font-family: 'DM Serif Display', serif; font-size: 1.35rem; color: #fff; margin-bottom: 0.75rem; line-height: 1.35; }
    .case-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
    .case-how { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
    .case-list { display: flex; flex-direction: column; gap: 0.5rem; }
    .case-item {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.55;
    }
    .case-item::before { content: '▸'; color: var(--electric); flex-shrink: 0; margin-top: 1px; }
    .case-right { padding: 2.75rem; }
    .case-stats-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 1.1rem; }
    .case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .case-stat {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 11px; padding: 1.1rem;
    }
    .case-stat-val { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
    .case-stat-val.blue { color: var(--electric-bright); }
    .case-stat-val.cyan { color: var(--cyan); }
    .case-stat-label { font-size: 0.68rem; color: var(--muted); line-height: 1.4; }

    /* ── Contact ── */
    .contact-wrap {
      background: linear-gradient(135deg, var(--purple-mid), var(--void) 60%);
      border: 1px solid var(--border); border-radius: 24px; overflow: hidden; position: relative;
    }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; }
    .contact-left  { padding: 3.5rem; border-right: 1px solid var(--border); }
    .contact-right { padding: 3.5rem; }
    .contact-h { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.25; margin-bottom: 1.5rem; }
    .contact-h span { color: var(--cyan); }
    .contact-checks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
    .c-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
    .c-check .icon { color: var(--electric-bright); flex-shrink: 0; }
    .partners-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
    .partners-row { display: flex; gap: 1rem; flex-wrap: wrap; }
    .partner { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.3); }
    .cert-row { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 1.5rem; }
    .cert {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 7px; padding: 0.35rem 0.7rem; font-size: 0.62rem;
      color: rgba(255,255,255,0.45); font-weight: 600;
    }
    .f-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.4rem; display: block; }
    .f-input {
      width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 9px; padding: 0.8rem 1rem; color: #fff; font-size: 0.875rem;
      font-family: inherit; outline: none; transition: border-color 0.2s; margin-bottom: 1rem;
    }
    .f-input:focus { border-color: var(--electric); }
    .f-input::placeholder { color: rgba(255,255,255,0.22); }
    select.f-input option { background: var(--void); color: #fff; }
    .f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
    .f-submit {
      width: 100%; background: linear-gradient(135deg, var(--electric), var(--purple-light));
      color: #fff; border: none; padding: 0.9rem; border-radius: 9px;
      font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: inherit;
      transition: opacity 0.2s; margin-top: 0.25rem;
    }
    .f-submit:hover { opacity: 0.88; }
    .contact-orb {
      position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
    }
    .c-orb-1 { width: 280px; height: 280px; background: rgba(79,110,247,0.1); bottom: -80px; left: -80px; }
    .c-orb-2 { width: 220px; height: 220px; background: rgba(0,229,255,0.06); top: -60px; right: -60px; }

    /* ── Insights ── */
    .insights-section { background: rgba(7,5,15,0.98); padding: 5.5rem 0; }
    .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .insight-card {
      background: linear-gradient(135deg, rgba(19,13,46,0.7), rgba(7,5,15,0.85));
      border: 1px solid var(--border); border-radius: 18px; padding: 1.75rem;
      text-decoration: none; color: inherit; display: flex; flex-direction: column;
      min-height: 280px; transition: all 0.3s; position: relative; overflow: hidden;
    }
    .insight-card:hover { border-color: rgba(79,110,247,0.4); transform: translateY(-4px); box-shadow: 0 14px 50px rgba(0,0,0,0.3); }
    .insight-type { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); font-weight: 700; margin-bottom: 0.75rem; }
    .insight-title { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.45; margin-bottom: 0.75rem; flex: 1; }
    .insight-excerpt { font-size: 0.78rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
    .insight-read { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; color: var(--muted); transition: color 0.2s; }
    .insight-card:hover .insight-read { color: var(--electric-bright); }

    /* ── Animations ── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .hero-inner, .ideakit-wrap, .case-card, .contact-inner, .how-grid { grid-template-columns: 1fr; }
      .services-grid, .insights-grid { grid-template-columns: repeat(2, 1fr); }
      .how-box { padding: 2rem; }
      .how-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .services-grid, .insights-grid, .metrics-row { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .sec-head { flex-direction: column; align-items: flex-start; }
      .kit-form { flex-direction: column; }
      .contact-inner { grid-template-columns: 1fr; }
      .contact-left, .contact-right { padding: 2rem; }
      .ideakit-wrap { padding: 2rem; }
      .f-grid { grid-template-columns: 1fr; }
    }


                          /* Digital Financial Platform */

:root {
      --void: #07050f;
      --deep-purple: #130d2e;
      --purple-mid: #1e1147;
      --purple-light: #2d1b69;
      --electric: #4f6ef7;
      --electric-bright: #7b94ff;
      --cyan: #00e5ff;
      --cyan-dim: #00b8d4;
      --white: #ffffff;
      --muted: rgba(255,255,255,0.55);
      --card-bg: rgba(30,17,71,0.6);
      --border: rgba(79,110,247,0.18);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background-color: var(--void);
      font-family: 'Instrument Sans', sans-serif;
      color: var(--white);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--void); }
    ::-webkit-scrollbar-thumb { background: var(--electric); border-radius: 2px; }

    /* ── Scroll Progress ── */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 2px;
      background: linear-gradient(90deg, var(--electric), var(--cyan));
      z-index: 300; transition: width 0.1s linear; width: 0%;
    }

    /* ── Background ── */
    .bg-layer {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(79,110,247,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,110,247,0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridDrift 25s linear infinite;
    }
    @keyframes gridDrift {
      from { background-position: 0 0; }
      to   { background-position: 50px 50px; }
    }
    .bg-orb {
      position: absolute; border-radius: 50%; filter: blur(100px);
    }
    .orb-a {
      width: 600px; height: 600px;
      background: rgba(79,110,247,0.15);
      top: -100px; left: -150px;
      animation: driftA 18s ease-in-out infinite alternate;
    }
    .orb-b {
      width: 500px; height: 500px;
      background: rgba(0,229,255,0.08);
      bottom: -80px; right: -100px;
      animation: driftB 22s ease-in-out infinite alternate;
    }
    .orb-c {
      width: 350px; height: 350px;
      background: rgba(123,148,255,0.1);
      top: 40%; left: 50%;
      animation: driftC 15s ease-in-out infinite alternate;
    }
    @keyframes driftA { 0% { transform: translate(0,0); } 100% { transform: translate(30vw, 40vh); } }
    @keyframes driftB { 0% { transform: translate(0,0); } 100% { transform: translate(-25vw,-35vh); } }
    @keyframes driftC { 0% { transform: translate(0,0); } 100% { transform: translate(15vw,-20vh); } }

    /* ── Particles ── */
    .particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
    .particle {
      position: absolute; border-radius: 50%;
      background: var(--electric-bright);
      animation: particleFloat var(--dur) ease-in-out infinite alternate;
      animation-delay: var(--del);
      opacity: 0;
    }
    @keyframes particleFloat {
      0%   { opacity: 0; transform: translateY(0) scale(1); }
      50%  { opacity: 0.6; }
      100% { opacity: 0; transform: translateY(-40px) scale(1.5); }
    }

    /* ── Section Nav ── */
    .section-nav {
      position: sticky; top: 0; z-index: 80;
      background: rgba(7,5,15,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .section-nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 2rem;
      height: 54px; display: flex; align-items: center; gap: 2rem;
    }
    .nav-tag {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--cyan); white-space: nowrap;
    }
    .nav-links { display: flex; gap: 1.75rem; overflow-x: auto; }
    .nav-link {
      color: var(--muted); text-decoration: none; font-size: 0.8rem;
      font-weight: 500; white-space: nowrap; padding: 0.25rem 0;
      border-bottom: 1px solid transparent; transition: all 0.2s;
    }
    .nav-link:hover, .nav-link.active { color: #fff; border-bottom-color: var(--electric); }

    /* ── Page Wrapper ── */
    .page { position: relative; z-index: 1; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

    /* ── HERO ── */
    .hero {
      padding: 6rem 0 5rem;
      position: relative;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(79,110,247,0.12);
      border: 1px solid rgba(79,110,247,0.3);
      padding: 0.4rem 1rem; border-radius: 50px;
      font-size: 0.72rem; color: var(--electric-bright);
      font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 1.75rem;
    }
    .hero-eyebrow::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyan); animation: pulse-dot 1.5s infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.6); }
    }
    .hero-h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      line-height: 1.12; margin-bottom: 1.25rem;
      background: linear-gradient(135deg, #fff 20%, rgba(123,148,255,0.85));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-tagline {
      font-size: 1.05rem; color: var(--cyan); font-weight: 600; margin-bottom: 1rem;
    }
    .hero-desc {
      font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-bottom: 2.25rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, var(--electric), var(--purple-light));
      color: #fff; padding: 0.85rem 2rem; border-radius: 10px;
      text-decoration: none; font-weight: 700; font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.1); transition: all 0.25s; display: inline-block;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(79,110,247,0.45); }
    .btn-ghost {
      background: transparent; color: #fff; padding: 0.85rem 2rem;
      border-radius: 10px; text-decoration: none; font-weight: 600;
      font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.2);
      display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s;
    }
    .btn-ghost:hover { border-color: var(--electric); color: var(--electric-bright); }

    /* ── Hero Visual: Fintech Flow Card ── */
    .hero-visual { position: relative; }
    .fintech-card {
      background: rgba(19,13,46,0.8);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 1.75rem;
      backdrop-filter: blur(24px);
      box-shadow: 0 30px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
      position: relative; overflow: hidden;
    }
    .fintech-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--electric), var(--cyan), transparent);
    }
    .card-header {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem;
    }
    .card-title-group { display: flex; align-items: center; gap: 0.75rem; }
    .card-icon-wrap {
      width: 36px; height: 36px; border-radius: 10px;
      background: linear-gradient(135deg, var(--electric), var(--purple-light));
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .card-title { font-size: 0.875rem; font-weight: 700; color: #fff; }
    .card-sub { font-size: 0.65rem; color: var(--muted); }
    .live-pill {
      display: flex; align-items: center; gap: 0.4rem;
      background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.25);
      padding: 0.2rem 0.65rem; border-radius: 50px;
      font-size: 0.65rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.08em;
    }
    .live-dot {
      width: 5px; height: 5px; border-radius: 50%; background: var(--cyan);
      animation: pulse-dot 1.5s infinite;
    }

    /* Payment Flow */
    .payment-flow { margin-bottom: 1.5rem; }
    .flow-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
    .flow-steps {
      display: flex; align-items: center; gap: 0; margin-bottom: 1rem;
    }
    .flow-step {
      flex: 1; background: rgba(79,110,247,0.08);
      border: 1px solid rgba(79,110,247,0.15);
      border-radius: 8px; padding: 0.6rem 0.5rem; text-align: center;
    }
    .flow-step-icon { font-size: 1rem; margin-bottom: 0.2rem; }
    .flow-step-label { font-size: 0.6rem; color: var(--muted); }
    .flow-arrow {
      width: 24px; text-align: center; color: var(--electric); font-size: 0.7rem; flex-shrink: 0;
    }
    .flow-step.active {
      background: rgba(79,110,247,0.2); border-color: var(--electric);
    }
    .flow-step.active .flow-step-label { color: var(--electric-bright); }

    /* Metrics Row */
    .metrics-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem;
    }
    .metric {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px; padding: 0.75rem; text-align: center;
    }
    .metric-val { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
    .metric-val.up { color: #22d3a0; }
    .metric-val.blue { color: var(--electric-bright); }
    .metric-label { font-size: 0.6rem; color: var(--muted); }

    /* Transaction Stream */
    .tx-stream { display: flex; flex-direction: column; gap: 0.5rem; }
    .tx-row {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
      border-radius: 9px; padding: 0.55rem 0.75rem;
      animation: slideIn 0.5s ease forwards; opacity: 0;
    }
    .tx-row:nth-child(1) { animation-delay: 0.1s; }
    .tx-row:nth-child(2) { animation-delay: 0.3s; }
    .tx-row:nth-child(3) { animation-delay: 0.5s; }
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(10px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .tx-left { display: flex; align-items: center; gap: 0.6rem; }
    .tx-badge {
      width: 26px; height: 26px; border-radius: 7px;
      display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
    }
    .tx-name { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.88); }
    .tx-meta { font-size: 0.6rem; color: var(--muted); }
    .tx-tag {
      font-size: 0.55rem; background: rgba(79,110,247,0.2); color: var(--electric-bright);
      padding: 0.1rem 0.35rem; border-radius: 3px; margin-left: 0.4rem; font-weight: 600;
    }
    .tx-amount { font-size: 0.8rem; font-weight: 700; }
    .tx-amount.g { color: #22d3a0; }
    .tx-amount.r { color: #f87171; }

    /* ── Clients Strip ── */
    .clients-strip {
      padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .clients-label {
      text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.3);
      text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem;
    }
    .marquee-wrap {
      overflow: hidden;
      -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
      mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    }
    .marquee-track {
      display: flex; gap: 3.5rem; align-items: center;
      animation: marquee 28s linear infinite; width: max-content;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-item {
      font-family: 'DM Serif Display', serif; font-size: 0.95rem;
      color: rgba(255,255,255,0.22); white-space: nowrap; letter-spacing: 0.04em;
    }

    /* ── Sections ── */
    .section { padding: 5.5rem 0; }
    .sec-label {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--cyan); font-weight: 700; margin-bottom: 1rem;
    }
    .sec-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      line-height: 1.2; margin-bottom: 1rem; color: #fff;
    }
    .sec-title .hl {
      background: linear-gradient(90deg, var(--electric-bright), var(--cyan));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .sec-desc { font-size: 0.95rem; line-height: 1.75; color: var(--muted); max-width: 580px; }
    .sec-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem; gap: 2rem;
    }
    .sec-link {
      display: flex; align-items: center; gap: 0.5rem;
      color: var(--muted); text-decoration: none; font-size: 0.82rem;
      font-weight: 500; white-space: nowrap; transition: color 0.2s;
    }
    .sec-link:hover { color: var(--electric-bright); }
    .sec-line {
      width: 36px; height: 1px; background: rgba(255,255,255,0.25);
      transition: width 0.3s;
    }
    .sec-link:hover .sec-line { width: 50px; background: var(--electric); }

    /* ── IdeaKit Box ── */
    .ideakit-wrap {
      background: linear-gradient(135deg, rgba(19,13,46,0.9), rgba(7,5,15,0.95));
      border: 1px solid var(--border); border-radius: 22px; padding: 3.5rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
      position: relative; overflow: hidden;
    }
    .ideakit-wrap::before {
      content: ''; position: absolute; inset: 0; border-radius: 22px;
      background: linear-gradient(135deg, rgba(79,110,247,0.12), transparent 55%, rgba(0,229,255,0.05));
      pointer-events: none;
    }
    .kit-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
      color: var(--cyan); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.35rem 0.8rem; border-radius: 50px; margin-bottom: 1rem;
    }
    .kit-title { font-family: 'DM Serif Display', serif; font-size: 1.7rem; line-height: 1.3; margin-bottom: 1rem; color: #fff; }
    .kit-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
    .kit-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
    .kit-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
    .kit-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(79,110,247,0.15); border: 1px solid rgba(79,110,247,0.4);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }
    .kit-check svg { width: 10px; height: 10px; }
    .kit-form { display: flex; gap: 0.5rem; }
    .kit-input {
      flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 9px; padding: 0.75rem 1rem; color: #fff; font-size: 0.85rem;
      font-family: inherit; outline: none; transition: border-color 0.2s;
    }
    .kit-input::placeholder { color: rgba(255,255,255,0.3); }
    .kit-input:focus { border-color: var(--electric); }
    .kit-btn {
      background: linear-gradient(135deg, var(--electric), var(--purple-light));
      color: #fff; border: none; padding: 0.75rem 1.4rem; border-radius: 9px;
      font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity 0.2s;
    }
    .kit-btn:hover { opacity: 0.85; }
    .kit-visual { display: flex; justify-content: center; align-items: center; }
    .kit-mockup {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px; padding: 1.5rem; width: 100%;
    }
    .kit-cover {
      background: linear-gradient(135deg, var(--purple-mid), var(--void));
      border-radius: 12px; padding: 2rem 1.5rem; text-align: center;
      position: relative; overflow: hidden; margin-bottom: 1rem;
    }
    .kit-cover::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 60% 30%, rgba(79,110,247,0.35), transparent 65%);
    }
    .kit-cover-icon { font-size: 2.2rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
    .kit-cover-title { font-family: 'DM Serif Display', serif; font-size: 1rem; color: #fff; margin-bottom: 0.35rem; position: relative; z-index: 1; }
    .kit-cover-sub { font-size: 0.65rem; color: var(--muted); position: relative; z-index: 1; }
    .kit-divider { height: 2px; background: linear-gradient(90deg, var(--electric), var(--cyan)); border-radius: 2px; margin: 0.75rem 0; }
    .kit-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .kit-tag {
      background: rgba(79,110,247,0.12); color: rgba(255,255,255,0.65);
      font-size: 0.62rem; padding: 0.25rem 0.6rem; border-radius: 4px;
    }

    /* ── Services Grid ── */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .svc-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 18px; padding: 1.75rem; position: relative;
      overflow: hidden; transition: all 0.35s; cursor: pointer;
    }
    .svc-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(79,110,247,0.1), transparent 60%);
      opacity: 0; transition: opacity 0.35s;
    }
    .svc-card:hover { border-color: rgba(79,110,247,0.4); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(79,110,247,0.15); }
    .svc-card:hover::after { opacity: 1; }
    .svc-icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(79,110,247,0.2), rgba(79,110,247,0.05));
      border: 1px solid rgba(79,110,247,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; margin-bottom: 1.1rem; position: relative; z-index: 1;
    }
    .svc-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; line-height: 1.35; position: relative; z-index: 1; }
    .svc-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; }
    .svc-glow {
      position: absolute; bottom: -50px; right: -50px;
      width: 130px; height: 130px;
      background: rgba(79,110,247,0.12); border-radius: 50%; filter: blur(35px);
    }

    /* ── How We Work (Timeline) ── */
    .how-box {
      background: linear-gradient(135deg, rgba(19,13,46,0.6), rgba(7,5,15,0.7));
      border: 1px solid var(--border); border-radius: 24px; padding: 3.5rem;
      position: relative; overflow: hidden;
    }
    .how-box::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--electric), var(--cyan), transparent);
    }
    .how-grid { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; margin-top: 2rem; }
    .how-steps { display: flex; flex-direction: column; }
    .how-step {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 0.9rem 1rem; border-radius: 10px; cursor: pointer; transition: background 0.25s;
    }
    .how-step.active { background: rgba(79,110,247,0.1); }
    .how-dot {
      width: 11px; height: 11px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.15);
      margin-top: 3px; flex-shrink: 0; transition: all 0.3s;
    }
    .how-step.active .how-dot { background: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 12px rgba(0,229,255,0.5); }
    .how-step-text { font-size: 0.83rem; color: var(--muted); font-weight: 500; }
    .how-step.active .how-step-text { color: #fff; }
    .how-connector { width: 1px; height: 28px; background: var(--border); margin-left: 1.34rem; }
    .how-panel {
      background: linear-gradient(135deg, rgba(7,5,15,0.8), rgba(19,13,46,0.5));
      border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
    }
    .how-content { display: none; }
    .how-content.active { display: block; }
    .how-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
      padding: 2rem; align-items: center;
    }
    .how-panel-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.75rem; color: #fff; }
    .how-panel-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }
    .how-img {
      background: rgba(79,110,247,0.07); border: 1px solid rgba(79,110,247,0.15);
      border-radius: 12px; height: 160px; display: flex; align-items: center;
      justify-content: center; font-size: 3rem; position: relative; overflow: hidden;
    }
    .how-img::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at center, rgba(79,110,247,0.2), transparent 70%);
    }

    /* ── Case Study ── */
    .case-card {
      background: linear-gradient(135deg, rgba(19,13,46,0.85), rgba(7,5,15,0.9));
      border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .case-left { padding: 2.75rem; border-right: 1px solid var(--border); }
    .case-tag {
      font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--cyan); font-weight: 700; margin-bottom: 0.75rem;
    }
    .case-title { font-family: 'DM Serif Display', serif; font-size: 1.35rem; color: #fff; margin-bottom: 0.75rem; line-height: 1.35; }
    .case-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
    .case-how { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
    .case-list { display: flex; flex-direction: column; gap: 0.5rem; }
    .case-item {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.55;
    }
    .case-item::before { content: '▸'; color: var(--electric); flex-shrink: 0; margin-top: 1px; }
    .case-right { padding: 2.75rem; }
    .case-stats-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 1.1rem; }
    .case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .case-stat {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 11px; padding: 1.1rem;
    }
    .case-stat-val { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
    .case-stat-val.blue { color: var(--electric-bright); }
    .case-stat-val.cyan { color: var(--cyan); }
    .case-stat-label { font-size: 0.68rem; color: var(--muted); line-height: 1.4; }

    /* ── Contact ── */
    .contact-wrap {
      background: linear-gradient(135deg, var(--purple-mid), var(--void) 60%);
      border: 1px solid var(--border); border-radius: 24px; overflow: hidden; position: relative;
    }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; }
    .contact-left  { padding: 3.5rem; border-right: 1px solid var(--border); }
    .contact-right { padding: 3.5rem; }
    .contact-h { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.25; margin-bottom: 1.5rem; }
    .contact-h span { color: var(--cyan); }
    .contact-checks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
    .c-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
    .c-check .icon { color: var(--electric-bright); flex-shrink: 0; }
    .partners-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
    .partners-row { display: flex; gap: 1rem; flex-wrap: wrap; }
    .partner { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.3); }
    .cert-row { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 1.5rem; }
    .cert {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 7px; padding: 0.35rem 0.7rem; font-size: 0.62rem;
      color: rgba(255,255,255,0.45); font-weight: 600;
    }
    .f-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.4rem; display: block; }
    .f-input {
      width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 9px; padding: 0.8rem 1rem; color: #fff; font-size: 0.875rem;
      font-family: inherit; outline: none; transition: border-color 0.2s; margin-bottom: 1rem;
    }
    .f-input:focus { border-color: var(--electric); }
    .f-input::placeholder { color: rgba(255,255,255,0.22); }
    select.f-input option { background: var(--void); color: #fff; }
    .f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
    .f-submit {
      width: 100%; background: linear-gradient(135deg, var(--electric), var(--purple-light));
      color: #fff; border: none; padding: 0.9rem; border-radius: 9px;
      font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: inherit;
      transition: opacity 0.2s; margin-top: 0.25rem;
    }
    .f-submit:hover { opacity: 0.88; }
    .contact-orb {
      position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
    }
    .c-orb-1 { width: 280px; height: 280px; background: rgba(79,110,247,0.1); bottom: -80px; left: -80px; }
    .c-orb-2 { width: 220px; height: 220px; background: rgba(0,229,255,0.06); top: -60px; right: -60px; }

    /* ── Insights ── */
    .insights-section { background: rgba(7,5,15,0.98); padding: 5.5rem 0; }
    .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .insight-card {
      background: linear-gradient(135deg, rgba(19,13,46,0.7), rgba(7,5,15,0.85));
      border: 1px solid var(--border); border-radius: 18px; padding: 1.75rem;
      text-decoration: none; color: inherit; display: flex; flex-direction: column;
      min-height: 280px; transition: all 0.3s; position: relative; overflow: hidden;
    }
    .insight-card:hover { border-color: rgba(79,110,247,0.4); transform: translateY(-4px); box-shadow: 0 14px 50px rgba(0,0,0,0.3); }
    .insight-type { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); font-weight: 700; margin-bottom: 0.75rem; }
    .insight-title { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.45; margin-bottom: 0.75rem; flex: 1; }
    .insight-excerpt { font-size: 0.78rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
    .insight-read { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; color: var(--muted); transition: color 0.2s; }
    .insight-card:hover .insight-read { color: var(--electric-bright); }

    /* ── Animations ── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .hero-inner, .ideakit-wrap, .case-card, .contact-inner, .how-grid { grid-template-columns: 1fr; }
      .services-grid, .insights-grid { grid-template-columns: repeat(2, 1fr); }
      .how-box { padding: 2rem; }
      .how-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .services-grid, .insights-grid, .metrics-row { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .sec-head { flex-direction: column; align-items: flex-start; }
      .kit-form { flex-direction: column; }
      .contact-inner { grid-template-columns: 1fr; }
      .contact-left, .contact-right { padding: 2rem; }
      .ideakit-wrap { padding: 2rem; }
      .f-grid { grid-template-columns: 1fr; }
    }