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

    :root {
      --navy: #0053d3;
      --navy-deep: #080E1F;
      --navy-mid: #0042a9;
      --gold: #F5A623;
      --gold-light: #ffc55a;
      --gold-pale: #FFF8EC;
      --off-white: #F8F9FC;
      --text-dark: #0A1435;
      --text-muted: #5a6a8a;
      --text-light: #8898b4;
      --white: #ffffff;
      --border: #e2e8f0;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Sora', sans-serif
    }

    nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 0 5%
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      background: var(--navy);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .logo-text {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--navy)
    }

    .logo-text span {
      color: var(--gold)
    }

    .logo-img {
      height: 38px;
      width: auto;
      object-fit: contain;
      display: block
    }

    .logo-img.light {
      filter: brightness(0) invert(1)
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s
    }

    .nav-links a:hover {
      color: var(--navy)
    }

    .nav-ctas {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .btn-demo {
      padding: 9px 20px;
      border: 1.5px solid var(--navy);
      border-radius: 8px;
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      background: transparent;
      transition: all 0.2s
    }

    .btn-demo:hover {
      background: var(--navy);
      color: white
    }

    .btn-register {
      padding: 9px 20px;
      border: none;
      border-radius: 8px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer
    }

    .btn-login {
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 500;
      background: none;
      border: none;
      cursor: pointer;
      padding: 9px 12px
    }

    .hero {
      background-color: var(--navy);
      background-image:
        repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 40px,
          rgba(255, 255, 255, 0.03) 40px,
          rgba(255, 255, 255, 0.03) 41px
        ),
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 80px,
          rgba(255, 255, 255, 0.02) 80px,
          rgba(255, 255, 255, 0.02) 81px
        );
      padding: 80px 5% 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(245, 166, 35, 0.12);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      border: 1px solid rgba(245, 166, 35, 0.08);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 166, 35, 0.12);
      border: 1px solid rgba(245, 166, 35, 0.25);
      border-radius: 100px;
      padding: 6px 14px;
      margin-bottom: 28px
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.4
      }
    }

    .hero-badge span {
      color: var(--gold);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase
    }

    .hero h1 {
      font-size: 52px;
      font-weight: 800;
      color: white;
      line-height: 1.1;
      margin-bottom: 22px;
      letter-spacing: -1px
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold)
    }

    .hero-sub {
      color: rgba(255, 255, 255, 0.65);
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 480px
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      margin-bottom: 48px
    }

    .btn-hero-primary {
      padding: 14px 28px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border: none;
      border-radius: 10px;
      cursor: pointer
    }

    .btn-hero-secondary {
      padding: 14px 28px;
      background: transparent;
      color: white;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 15px;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      border-radius: 10px;
      cursor: pointer
    }

    .hero-stats {
      display: flex;
      gap: 32px
    }

    .hero-stat .num {
      color: white;
      font-family: 'Sora', sans-serif;
      font-size: 26px;
      font-weight: 800
    }

    .hero-stat .lbl {
      color: rgba(255, 255, 255, 0.45);
      font-size: 12px;
      margin-top: 2px
    }

    .hero-stat-divider {
      width: 1px;
      background: rgba(255, 255, 255, 0.12)
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center
    }

    .hero-screen {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px 16px 0 0;
      width: 100%;
      max-width: 460px;
      overflow: hidden
    }

    .hero-screen-bar {
      background: rgba(255, 255, 255, 0.06);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .screen-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%
    }

    .hero-screen-body {
      padding: 20px
    }

    .mock-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 16px;
      margin-bottom: 12px
    }

    .mock-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px
    }

    .mock-label {
      color: rgba(255, 255, 255, 0.45);
      font-size: 12px
    }

    .mock-val {
      color: white;
      font-size: 13px;
      font-weight: 600
    }

    .mock-badge {
      padding: 3px 8px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600
    }

    .mock-badge.green {
      background: rgba(61, 213, 152, 0.15);
      color: #3dd598
    }

    .mock-badge.amber {
      background: rgba(245, 166, 35, 0.15);
      color: var(--gold)
    }

    .mock-bar-wrap {
      height: 5px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 3px;
      margin-top: 4px
    }

    .mock-bar {
      height: 5px;
      border-radius: 3px;
      background: var(--gold)
    }

    .mock-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .mock-mini {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 8px;
      padding: 12px
    }

    .credibility {
      background: var(--gold);
      padding: 0 5%
    }

    .cred-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: stretch
    }

    .cred-item {
      flex: 1;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid rgba(13, 27, 75, 0.15)
    }

    .cred-item:last-child {
      border-right: none
    }

    .cred-icon {
      width: 40px;
      height: 40px;
      background: rgba(13, 27, 75, 0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .cred-num {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1
    }

    .cred-lbl {
      font-size: 12px;
      color: rgba(13, 27, 75, 0.65);
      margin-top: 2px;
      font-weight: 500
    }

    section {
      padding: 90px 5%
    }

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

    .section-tag {
      display: inline-block;
      background: var(--gold-pale);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 16px
    }

    .section-title {
      font-size: 42px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 16px
    }

    .section-title em {
      font-style: normal;
      color: var(--gold)
    }

    .section-sub {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 560px
    }

    .products-bg {
      background: var(--off-white)
    }

    .products-header {
      text-align: center;
      margin-bottom: 56px
    }

    .products-header .section-sub {
      margin: 0 auto
    }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px
    }

    .product-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      cursor: pointer;
      transition: all 0.25s;
      position: relative;
      overflow: hidden
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(13, 27, 75, 0.1)
    }

    .product-card.dark {
      background: var(--navy-deep);
      border-color: rgba(255, 255, 255, 0.08)
    }

    .product-card.dark:hover {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
    }

    .product-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px
    }

    .product-icon.blue {
      background: rgba(13, 27, 75, 0.08)
    }

    .product-icon.gold {
      background: rgba(245, 166, 35, 0.12)
    }

    .product-icon.green {
      background: rgba(16, 185, 129, 0.1)
    }

    .product-icon.dark {
      background: rgba(255, 255, 255, 0.08)
    }

    .product-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px
    }

    .product-tag.blue {
      color: rgba(13, 27, 75, 0.45)
    }

    .product-tag.gold {
      color: var(--gold)
    }

    .product-tag.green {
      color: #10b981
    }

    .product-tag.white {
      color: rgba(255, 255, 255, 0.4)
    }

    .product-name {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px
    }

    .product-card.dark .product-name {
      color: white
    }

    .product-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px
    }

    .product-card.dark .product-desc {
      color: rgba(255, 255, 255, 0.5)
    }

    .product-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px
    }

    .product-features li {
      font-size: 13px;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 8px;
      padding-left: 22px;
      position: relative
    }

    .product-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold-pale);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      text-align: center;
      line-height: 16px
    }

    .product-card.dark .product-features li {
      color: rgba(255, 255, 255, 0.7)
    }

    .product-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none
    }

    .product-card.dark .product-link {
      color: var(--gold)
    }

    .pad-glow {
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: rgba(245, 166, 35, 0.06);
      border-radius: 50%;
      pointer-events: none
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .step {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border)
    }

    .step:last-child {
      border-bottom: none
    }

    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--navy);
      color: white;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px
    }

    .step-title {
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px
    }

    .step-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6
    }

    .how-visual {
      background: var(--navy);
      border-radius: 20px;
      padding: 32px
    }

    .portal-tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 24px
    }

    .portal-tab {
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer
    }

    .portal-tab.active {
      background: var(--gold);
      color: var(--navy)
    }

    .portal-tab:not(.active) {
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.45)
    }

    .portal-screen {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 20px
    }

    .portal-metric-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px
    }

    .p-metric {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 12px
    }

    .p-metric .n {
      color: white;
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 700
    }

    .p-metric .l {
      color: rgba(255, 255, 255, 0.35);
      font-size: 11px;
      margin-top: 2px
    }

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

    .p-table th {
      text-align: left;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.3);
      font-weight: 500;
      padding-bottom: 8px;
      letter-spacing: 0.05em;
      text-transform: uppercase
    }

    .p-table td {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      padding: 6px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05)
    }

    .status-pill {
      padding: 2px 8px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 600
    }

    .status-pill.paid {
      background: rgba(61, 213, 152, 0.15);
      color: #3dd598
    }

    .status-pill.due {
      background: rgba(245, 166, 35, 0.15);
      color: var(--gold)
    }

    /* INVESTORS — updated */
    .investors-bg {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 90px 5%
    }

    .investors-bg::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      border: 1px solid rgba(245, 166, 35, 0.08)
    }

    .inv-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1
    }

    .inv-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 52px
    }

    .inv-section-tag {
      display: inline-block;
      background: rgba(245, 166, 35, 0.12);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 16px
    }

    .inv-title {
      font-size: 40px;
      font-weight: 800;
      color: white;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 0
    }

    .inv-title em {
      font-style: normal;
      color: var(--gold)
    }

    .inv-desc {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
      margin-bottom: 28px
    }

    .btn-inv {
      padding: 13px 24px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      border: none;
      border-radius: 10px;
      cursor: pointer
    }

    /* traction stats */
    .inv-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 48px
    }

    .inv-stat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 24px
    }

    .inv-stat .n {
      color: white;
      font-family: 'Sora', sans-serif;
      font-size: 30px;
      font-weight: 800;
      line-height: 1
    }

    .inv-stat .n span {
      color: var(--gold)
    }

    .inv-stat .l {
      color: rgba(255, 255, 255, 0.4);
      font-size: 12px;
      margin-top: 6px
    }

    /* recognition timeline */
    .recognition-title {
      color: rgba(255, 255, 255, 0.4);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px
    }

    .timeline {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 0;
      align-items: stretch
    }

    .timeline-year {
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 13px;
      color: var(--navy);
      border-radius: 8px 0 0 8px;
      padding: 16px 12px;
      min-width: 64px
    }

    .timeline-year.press {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em
    }

    .timeline-body {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-left: none;
      border-radius: 0 8px 8px 0;
      padding: 14px 18px
    }

    .timeline-name {
      color: white;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 4px
    }

    .timeline-desc {
      color: rgba(255, 255, 255, 0.45);
      font-size: 12px;
      line-height: 1.5
    }

    .timeline-desc a {
      color: var(--gold);
      text-decoration: none
    }

    .test-bg {
      background: var(--off-white)
    }

    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px
    }

    .test-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      position: relative
    }

    .test-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      right: 24px;
      font-family: 'Sora', sans-serif;
      font-size: 72px;
      color: var(--gold);
      line-height: 1;
      opacity: 0.15
    }

    .test-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px
    }

    .star {
      width: 14px;
      height: 14px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
    }

    .test-quote {
      font-size: 15px;
      color: var(--text-dark);
      line-height: 1.7;
      margin-bottom: 22px;
      font-style: italic
    }

    .test-person {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .test-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px
    }

    .test-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--navy)
    }

    .test-role {
      font-size: 12px;
      color: var(--text-muted)
    }

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

    .pricing-header .section-sub {
      margin: 0 auto
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .price-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      position: relative
    }

    .price-card.featured {
      background: var(--navy);
      border-color: var(--navy)
    }

    .price-popular {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: 100px;
      white-space: nowrap
    }

    .price-tier {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px
    }

    .price-card.featured .price-tier {
      color: rgba(255, 255, 255, 0.45)
    }

    .price-amount {
      font-family: 'Sora', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 4px
    }

    .price-card.featured .price-amount {
      color: white
    }

    .price-amount sup {
      font-size: 18px;
      font-weight: 600;
      vertical-align: super;
      margin-right: 2px
    }

    .price-period {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 8px
    }

    .price-card.featured .price-period {
      color: rgba(255, 255, 255, 0.45)
    }

    .price-note {
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border)
    }

    .price-card.featured .price-note {
      color: rgba(255, 255, 255, 0.3);
      border-bottom-color: rgba(255, 255, 255, 0.1)
    }

    .price-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px
    }

    .price-feats li {
      font-size: 13px;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 8px;
      padding-left: 22px;
      position: relative
    }

    .price-feats li::before {
      content: '✓';
      position: absolute;
      left: 0;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--gold-pale);
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      text-align: center;
      line-height: 18px
    }

    .price-card.featured .price-feats li {
      color: rgba(255, 255, 255, 0.75)
    }

    .price-card.featured .price-feats li::before {
      background: rgba(245, 166, 35, 0.15)
    }

    .btn-price {
      width: 100%;
      padding: 13px;
      border-radius: 10px;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      border: 1.5px solid var(--navy);
      background: transparent;
      color: var(--navy)
    }

    .price-card.featured .btn-price {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold)
    }

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

    .team-card {
      text-align: center
    }

    .team-avatar {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: var(--navy);
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 22px
    }

    .team-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--text-dark);
      margin-bottom: 4px
    }

    .team-role {
      font-size: 13px;
      color: var(--text-muted)
    }

    footer {
      background: var(--navy-deep);
      padding: 60px 5% 30px
    }

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

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px
    }

    .footer-brand .logo-text {
      color: white;
      font-family: 'Sora', sans-serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 14px;
      display: block
    }

    .footer-brand p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.35);
      line-height: 1.7;
      max-width: 260px
    }

    .footer-col h5 {
      color: white;
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: 0.05em
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-col ul a {
      color: rgba(255, 255, 255, 0.35);
      font-size: 13px;
      text-decoration: none
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.25);
      font-size: 12px
    }

    .footer-socials {
      display: flex;
      gap: 12px
    }

    .social-btn {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer
    }

    .social-btn svg {
      width: 14px;
      height: 14px;
      fill: rgba(255, 255, 255, 0.35)
    }

    /* ── DYNAMIC DIALOG MODAL ── */
    .edlege-modal {
      border: none;
      background: none;
      padding: 0;
      max-width: 620px;
      width: 90%;
      margin: auto;
      border-radius: 20px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      overflow: visible;
      color: white;
    }

    .edlege-modal::backdrop {
      background: rgba(8, 14, 31, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .modal-card {
      background: #0D1B4B;
      border: 1px solid rgba(245, 166, 35, 0.25);
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-card::-webkit-scrollbar {
      width: 6px;
    }

    .modal-card::-webkit-scrollbar-track {
      background: transparent;
    }

    .modal-card::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 3px;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 10;
      line-height: 1;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.12);
      color: white;
      transform: scale(1.05);
    }

    .modal-header {
      text-align: center;
      margin-top: 10px;
    }

    .modal-logo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .modal-title {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: white;
      margin-bottom: 8px;
    }

    .modal-title span {
      color: var(--gold);
    }

    .modal-subtitle {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      max-width: 420px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Tabs Segmented Control */
    .modal-tabs {
      display: flex;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 4px;
      position: relative;
    }

    .modal-tab-btn {
      flex: 1;
      padding: 10px;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 13px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.6);
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.2s ease;
      text-align: center;
    }

    .modal-tab-btn:hover {
      color: white;
    }

    .modal-tab-btn.active {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
    }

    /* Modal Form / Panels */
    .modal-pane {
      display: none;
    }

    .modal-pane.active {
      display: flex;
      flex-direction: column;
      gap: 16px;
      animation: fadeInPane 0.3s ease forwards;
    }

    @keyframes fadeInPane {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group label {
      font-family: 'Sora', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      letter-spacing: 0.03em;
    }

    .form-group input,
    .form-group select {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      padding: 11px 14px;
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      transition: all 0.25s ease;
    }

    .form-group select option {
      background: #0D1B4B;
      color: white;
    }

    .form-group input::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-submit {
      width: 100%;
      padding: 13px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 10px;
    }

    .btn-submit:hover {
      background: var(--gold-light);
      box-shadow: 0 8px 24px rgba(245, 166, 35, 0.25);
      transform: translateY(-1px);
    }

    .btn-submit:active {
      transform: translateY(0);
    }

    /* Success Screen */
    .success-container {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 0;
      animation: fadeInPane 0.4s ease forwards;
    }

    .success-container.active {
      display: flex;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      background: rgba(61, 213, 152, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      border: 1px solid rgba(61, 213, 152, 0.25);
    }

    .success-icon svg {
      width: 40px;
      height: 40px;
      stroke: #3dd598;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
      animation: drawCheck 0.6s ease 0.2s forwards;
    }

    @keyframes drawCheck {
      to {
        stroke-dashoffset: 0;
      }
    }

    .success-title {
      font-size: 22px;
      font-weight: 800;
      color: white;
      margin-bottom: 12px;
    }

    .success-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.6;
      max-width: 400px;
      margin-bottom: 30px;
    }

    .btn-success-close {
      padding: 12px 32px;
      background: rgba(255, 255, 255, 0.08);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-success-close:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3);
    }

    /* ── PRICING COMPARISON TABLE ── */
    .pricing-container {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 40px;
    }

    .pricing-table-wrapper {
      width: 100%;
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(13, 27, 75, 0.05);
      background: white;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
    }

    .pricing-table th {
      background: var(--navy);
      color: white;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
    }

    .pricing-table th:first-child {
      border-top-left-radius: 15px;
    }

    .pricing-table th:last-child {
      border-top-right-radius: 15px;
    }

    .pricing-table tr:last-child td {
      border-bottom: none;
    }

    .pricing-table tr:hover td {
      background: rgba(13, 27, 75, 0.02);
    }

    .feature-name {
      font-weight: 600;
      color: var(--text-dark);
    }

    .feature-subtext {
      display: block;
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 400;
      margin-top: 2px;
    }

    .col-pkg {
      text-align: center;
      width: 25%;
    }

    .pkg-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--gold);
      display: block;
    }

    .pkg-price {
      font-size: 13px;
      color: white;
      font-weight: 500;
      margin-top: 2px;
      display: block;
    }

    .check-icon {
      color: #10b981;
      font-weight: bold;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 50%;
      font-size: 11px;
    }

    .cross-icon {
      color: #ef4444;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      background: rgba(239, 68, 68, 0.1);
      border-radius: 50%;
      font-size: 11px;
    }

    .text-val {
      font-weight: 700;
      color: var(--text-dark);
      font-size: 13px;
    }

    /* ── ADDONS & CALCULATOR SECTION ── */
    .pricing-interactive {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .addons-section {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .addons-title {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .addon-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .addon-card:hover {
      border-color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(13, 27, 75, 0.05);
    }

    .addon-card.selected {
      border-color: var(--gold);
      background: var(--gold-pale);
    }

    .addon-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .addon-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--text-dark);
    }

    .addon-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .addon-price {
      font-weight: 700;
      color: var(--navy);
      font-size: 14px;
      white-space: nowrap;
    }

    /* Switch toggle styling */
    .addon-toggle {
      position: relative;
      width: 44px;
      height: 24px;
      background: #cbd5e1;
      border-radius: 12px;
      transition: background-color 0.25s ease;
      flex-shrink: 0;
    }

    .addon-toggle::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: white;
      top: 2px;
      left: 2px;
      transition: transform 0.25s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .addon-card.selected .addon-toggle {
      background: var(--gold);
    }

    .addon-card.selected .addon-toggle::after {
      transform: translateX(20px);
    }

    /* Counter styling for Nikasemo Pad */
    .addon-counter {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(13, 27, 75, 0.05);
      border-radius: 8px;
      padding: 4px;
      margin-top: 8px;
      width: fit-content;
    }

    .counter-btn {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: none;
      background: white;
      color: var(--navy);
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: all 0.2s;
    }

    .counter-btn:hover {
      background: var(--navy);
      color: white;
    }

    .counter-input {
      width: 46px;
      height: 28px;
      border: 1px solid rgba(13, 27, 75, 0.2);
      border-radius: 6px;
      background: white;
      color: var(--navy);
      font-weight: 700;
      text-align: center;
      font-size: 14px;
      outline: none;
      transition: all 0.2s;
    }

    .counter-input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.15);
    }

    .counter-input::-webkit-outer-spin-button,
    .counter-input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .counter-input {
      -moz-appearance: textfield;
    }

    /* Calculator summary card */
    .calc-summary {
      background: var(--navy);
      border-radius: 16px;
      padding: 30px;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 20px;
      box-shadow: 0 15px 35px rgba(13, 27, 75, 0.15);
      position: sticky;
      top: 90px;
    }

    .calc-title {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: white;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 12px;
    }

    .calc-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
    }

    .calc-row.total {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 16px;
      margin-top: 10px;
      font-size: 16px;
      color: white;
      font-weight: 700;
    }

    .calc-total-val {
      font-family: 'Sora', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--gold);
    }

    .btn-calc-submit {
      width: 100%;
      padding: 14px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 10px;
    }

    .btn-calc-submit:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
    }

    /* package selector inside calculator */
    .calc-pkg-selector {
      display: flex;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 8px;
      padding: 4px;
    }

    .calc-pkg-btn {
      flex: 1;
      padding: 8px;
      border: none;
      background: none;
      color: rgba(255, 255, 255, 0.6);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 12px;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.2s;
    }

    .calc-pkg-btn.active {
      background: var(--gold);
      color: var(--navy);
    }

    /* Responsive adjusts */
    @media(max-width: 900px) {
      .pricing-interactive {
        grid-template-columns: 1fr;
      }
    }

    /* ── PRODUCT HUB DIAGRAM ── */
    .product-hub-container {
      position: relative;
      width: 100%;
      max-width: 680px;
      height: 400px;
      margin: 20px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hub-center {
      position: relative;
      z-index: 5;
    }

    .mock-monitor {
      width: 190px;
      background: #e2e8f0;
      padding: 6px;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .monitor-screen {
      width: 100%;
      aspect-ratio: 1.4;
      background: white;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 12px;
      text-align: center;
    }

    .monitor-title {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 16px;
      color: var(--text-dark);
    }

    .monitor-subtitle {
      font-size: 10px;
      font-weight: 600;
      color: var(--gold);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .monitor-stand {
      width: 24px;
      height: 24px;
      background: #cbd5e1;
      margin-top: -2px;
    }

    .monitor-base {
      width: 64px;
      height: 5px;
      background: #94a3b8;
      border-radius: 2px;
    }

    .hub-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .hub-lines line {
      stroke: rgba(255, 255, 255, 0.2);
      stroke-width: 1.5;
      stroke-dasharray: 4 4;
      animation: dashmove 12s linear infinite;
    }

    @keyframes dashmove {
      to {
        stroke-dashoffset: -200;
      }
    }

    .hub-node {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 14px;
      z-index: 5;
    }

    .node-circle {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--navy);
      border: 3.5px solid white;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      cursor: pointer;
      flex-shrink: 0;
    }

    .node-circle:hover {
      transform: scale(1.18);
      background: var(--gold);
      border-color: var(--navy);
      color: var(--navy);
      box-shadow: 0 12px 30px rgba(245, 166, 35, 0.4);
    }

    .node-label {
      display: flex;
      flex-direction: column;
      color: white;
      pointer-events: none;
    }

    .node-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      white-space: nowrap;
    }

    .node-desc {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.65);
      white-space: nowrap;
      margin-top: 2px;
    }

    /* Node positioning on Desktop */
    .hub-node.tl {
      top: 10%;
      left: 0;
      flex-direction: row-reverse;
      text-align: right;
    }

    .hub-node.tr {
      top: 10%;
      right: 0;
      flex-direction: row;
      text-align: left;
    }

    .hub-node.bl {
      bottom: 10%;
      left: 0;
      flex-direction: row-reverse;
      text-align: right;
    }

    .hub-node.br {
      bottom: 10%;
      right: 0;
      flex-direction: row;
      text-align: left;
    }

    /* Node responsive behaviors */
    @media(max-width: 800px) {
      .product-hub-container {
        height: auto;
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
      }

      .hub-lines {
        display: none;
      }

      .hub-node {
        position: relative !important;
        inset: auto !important;
        flex-direction: row !important;
        text-align: left !important;
        width: 100%;
        max-width: 320px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 12px 16px;
        justify-content: flex-start;
      }

      .node-circle {
        width: 44px;
        height: 44px;
        border-width: 2px;
      }

      .hub-center {
        margin-bottom: 12px;
      }
    }

    /* Responsive adjusts */
    @media(max-width: 600px) {
      .modal-card {
        padding: 30px 20px;
      }

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

      .form-group.full-width {
        grid-column: span 1;
      }

      .modal-tabs {
        flex-direction: column;
        gap: 4px;
        padding: 6px;
      }

      .modal-tab-btn {
        width: 100%;
        padding: 8px;
      }
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      border-radius: 8px;
      flex-shrink: 0
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    /* ── MOBILE DRAWER ── */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: white;
      z-index: 200;
      flex-direction: column;
      padding: 80px 6% 40px;
      overflow-y: auto
    }

    .mobile-nav.open {
      display: flex
    }

    .mobile-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 32px
    }

    .mobile-nav ul a {
      display: block;
      padding: 16px 0;
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--border)
    }

    .mobile-nav-ctas {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .mobile-nav-ctas .btn-hero-primary {
      padding: 14px;
      border-radius: 10px;
      font-size: 15px;
      text-align: center
    }

    .mobile-nav-ctas .btn-demo {
      width: 100%;
      padding: 14px;
      font-size: 14px;
      text-align: center
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px) {

      /* Nav */
      .nav-links,
      .nav-ctas {
        display: none
      }

      .hamburger {
        display: flex
      }

      /* Hero */
      .hero {
        padding: 56px 5% 0
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start
      }

      .hero h1 {
        font-size: 36px;
        letter-spacing: -0.5px
      }

      .hero-sub {
        font-size: 15px;
        margin-bottom: 28px
      }

      .hero-ctas {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 36px
      }

      .btn-hero-primary,
      .btn-hero-secondary {
        width: 100%;
        text-align: center;
        padding: 14px
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 20px 0
      }

      .hero-stat-divider {
        display: none
      }

      .hero-stat {
        flex: 1 1 40%;
        min-width: 100px
      }

      /* Credibility */
      .cred-inner {
        flex-wrap: wrap
      }

      .cred-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(13, 27, 75, 0.15);
        padding: 16px 18px
      }

      .cred-item:nth-child(even) {
        border-right: none
      }

      .cred-item:nth-child(odd) {
        border-right: 1px solid rgba(13, 27, 75, 0.15)
      }

      .cred-item:nth-last-child(-n+2) {
        border-bottom: none
      }

      /* Sections */
      section {
        padding: 64px 5%
      }

      .section-inner[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }

      /* Products */
      .products-grid {
        grid-template-columns: 1fr
      }

      .section-title {
        font-size: 32px
      }

      /* How it works */
      .how-grid {
        grid-template-columns: 1fr;
        gap: 40px
      }

      /* Investors */
      .inv-top {
        grid-template-columns: 1fr;
        gap: 24px
      }

      .inv-title {
        font-size: 30px
      }

      .inv-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      /* Testimonials */
      .test-grid {
        grid-template-columns: 1fr
      }

      /* Pricing */
      .pricing-grid {
        grid-template-columns: 1fr
      }

      .price-card.featured {
        margin-top: 16px
      }

      /* Team */
      .team-grid {
        grid-template-columns: 1fr 1fr
      }

      /* Footer */
      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }

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

    @media(max-width:560px) {

      /* Nav */
      nav {
        padding: 0 4%
      }

      .nav-inner {
        height: 60px
      }

      /* Hero */
      .hero {
        padding: 44px 4% 0
      }

      .hero h1 {
        font-size: 28px
      }

      .hero-sub {
        font-size: 14px
      }

      .hero-badge span {
        font-size: 11px
      }

      /* Credibility */
      .cred-item {
        flex: 1 1 100%;
        border-right: none !important;
        border-bottom: 1px solid rgba(13, 27, 75, 0.15)
      }

      .cred-item:last-child {
        border-bottom: none
      }

      /* Section headings */
      .section-title {
        font-size: 26px
      }

      section {
        padding: 48px 4%
      }

      /* Investors */
      .inv-stats {
        grid-template-columns: 1fr 1fr
      }

      .inv-title {
        font-size: 24px
      }

      .investors-bg {
        padding: 56px 4%
      }

      /* Timeline */
      .timeline-item {
        grid-template-columns: 56px 1fr
      }

      .timeline-year {
        font-size: 11px;
        padding: 12px 8px
      }

      /* Team */
      .team-grid {
        grid-template-columns: 1fr 1fr
      }

      .team-avatar {
        width: 72px;
        height: 72px;
        font-size: 18px
      }

      /* Footer */
      .footer-top {
        grid-template-columns: 1fr
      }

      footer {
        padding: 48px 4% 24px
      }

      /* Portal tabs — scroll horizontally */
      .portal-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
        flex-wrap: nowrap
      }

      .portal-tab {
        white-space: nowrap;
        flex-shrink: 0
      }

      /* How-visual */
      .how-visual {
        padding: 20px
      }

      .portal-metric-row {
        grid-template-columns: 1fr 1fr
      }

      .p-table td,
      .p-table th {
        font-size: 11px;
        padding: 5px 0
      }
    }

    /* ── FEATURE ROWS WITH SCREENSHOT PLACEHOLDERS ── */
    .features-list {
      display: flex;
      flex-direction: column;
      gap: 100px;
      margin-top: 56px;
    }

    .feature-item {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .feature-item.reversed {
      grid-template-columns: 1fr 1.1fr;
    }

    .feature-item.reversed .feature-text {
      order: 2;
    }

    .feature-item.reversed .feature-img-placeholder {
      order: 1;
    }

    .feature-img-placeholder {
      background: var(--off-white);
      border: 1.5px dashed var(--border);
      border-radius: 16px;
      aspect-ratio: 16/10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 30px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.02);
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-img-placeholder:hover {
      border-color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0, 83, 211, 0.05);
    }

    .feature-img-placeholder svg {
      color: var(--text-light);
      margin-bottom: 12px;
      transition: color 0.25s;
    }

    .feature-img-placeholder:hover svg {
      color: var(--navy);
    }

    .macbook-mockup {
      position: relative;
      width: 100%;
      margin: 0 auto;
      transform: translateY(0);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      margin-top: 10px;
    }

    .macbook-mockup:hover {
      transform: translateY(-6px);
    }

    .macbook-screen {
      background: #111;
      border-radius: 18px 18px 0 0;
      padding: 14px 14px 22px 14px;
      position: relative;
      /* Subtle silver edge and bezel shadow */
      box-shadow: 0 0 0 2px #d5d5d5, inset 0 0 0 1px #333;
    }

    .macbook-camera {
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background: #222;
      border-radius: 50%;
      box-shadow: inset 0 -1px 2px rgba(255,255,255,0.15);
    }

    .macbook-screen-inner {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      background: #000;
      border-radius: 4px;
      overflow: hidden;
    }

    .macbook-screen-inner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .macbook-base {
      position: relative;
      width: 120%;
      left: -10%;
      height: 14px;
      background: linear-gradient(to right, #9e9e9e 0%, #d8d8d8 5%, #d8d8d8 95%, #9e9e9e 100%);
      border-radius: 0 0 16px 16px;
      border-bottom: 1px solid #888;
      box-shadow: inset 0 -3px 8px rgba(0,0,0,0.15), 0 25px 45px rgba(0,0,0,0.25);
    }

    .macbook-base::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 15%;
      height: 4px;
      background: #999;
      border-radius: 0 0 4px 4px;
    }

    .phone-mockup {
      position: relative;
      width: 260px;
      margin: 0 auto;
      transform: translateY(0);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      margin-top: 10px;
      border-radius: 36px;
      background: #111;
      padding: 12px;
      box-shadow: 0 0 0 2px #d5d5d5, inset 0 0 0 1px #333, 0 25px 45px rgba(0,0,0,0.25);
    }

    .phone-mockup:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 0 2px #d5d5d5, inset 0 0 0 1px #333, 0 30px 50px rgba(0,0,0,0.3);
    }

    .phone-notch {
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 25px;
      background: #111;
      border-radius: 0 0 16px 16px;
      z-index: 2;
    }

    .phone-screen-inner {
      position: relative;
      width: 100%;
      aspect-ratio: 9/19.5;
      background: #000;
      border-radius: 24px;
      overflow: hidden;
    }

    .phone-screen-inner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .feature-video {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0 20px 45px rgba(0,0,0,0.15);
      border: 1px solid var(--border);
      outline: none;
      display: block;
      transition: all 0.25s ease;
    }

    .feature-video:hover {
      border-color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0, 83, 211, 0.05);
    }

    @media (max-width: 768px) {
      .features-list {
        gap: 60px;
      }
      .feature-item, .feature-item.reversed {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .feature-item.reversed .feature-text {
        order: unset;
      }
      .feature-item.reversed .feature-img-placeholder {
        order: unset;
      }
    }

    /* ── CAROUSEL / GALLERY STYLES ── */
    .carousel-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(8, 14, 31, 0.15);
      border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .carousel-scroller {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE 10+ */
      scroll-behavior: smooth;
    }

    .carousel-scroller::-webkit-scrollbar {
      display: none; /* Safari and Chrome */
    }

    .carousel-slide {
      flex: 0 0 100%;
      width: 100%;
      scroll-snap-align: center;
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .carousel-slide:hover img {
      transform: scale(1.03);
    }

    .carousel-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(8, 14, 31, 0.95) 0%, rgba(8, 14, 31, 0.8) 50%, rgba(8, 14, 31, 0) 100%);
      padding: 60px 40px 40px 40px;
      color: var(--white);
      z-index: 2;
      pointer-events: none;
    }

    .carousel-caption h3 {
      font-family: 'Sora', sans-serif;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--gold);
    }

    .carousel-caption p {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
      max-width: 650px;
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      color: var(--navy-deep);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(8, 14, 31, 0.15);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 10;
    }

    .carousel-arrow:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 16px rgba(0, 83, 211, 0.3);
    }

    .carousel-arrow.prev {
      left: 24px;
    }

    .carousel-arrow.next {
      right: 24px;
    }

    .carousel-dots {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 24px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 83, 211, 0.2);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--navy);
      width: 24px;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .carousel-container {
        border-radius: 12px;
      }
      .carousel-slide {
        aspect-ratio: 4/3;
      }
      .carousel-caption {
        padding: 40px 20px 20px 20px;
      }
      .carousel-caption h3 {
        font-size: 18px;
        margin-bottom: 4px;
      }
      .carousel-caption p {
        font-size: 13px;
        line-height: 1.4;
      }
      .carousel-arrow {
        width: 38px;
        height: 38px;
      }
      .carousel-arrow.prev {
        left: 12px;
      }
      .carousel-arrow.next {
        right: 12px;
      }
    }

    /* ── LEGAL CONTENT (Privacy, Terms) ── */
    .legal-content h2 {
      font-family: 'Sora', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-dark);
      margin-top: 48px;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    .legal-content h2:first-child {
      margin-top: 0;
    }

    .legal-content h3 {
      font-family: 'Sora', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-top: 28px;
      margin-bottom: 12px;
    }

    .legal-content p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .legal-content ul {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 16px;
      padding-left: 24px;
    }

    .legal-content ul li {
      margin-bottom: 8px;
    }

    .legal-content strong {
      color: var(--text-dark);
    }

    .legal-content a {
      color: var(--navy);
      font-weight: 600;
      text-decoration: none;
    }

    .legal-content a:hover {
      text-decoration: underline;
    }

    /* ── PARTNER LOGOS styling ── */
    .partner-logo {
      filter: grayscale(1) opacity(0.65);
      transition: all 0.25s ease;
    }

    .partner-logo:hover {
      filter: grayscale(0) opacity(1);
    }

    /* ── SCREENSHOT SLIDESHOW SYSTEM ── */
    .screenshot-slideshow {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 250px;
    }

    .screenshot-slideshow img,
    .screenshot-slideshow .slide-pane {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      z-index: 1;
      transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
      transform: scale(0.97);
      box-sizing: border-box;
    }

    .screenshot-slideshow img.active,
    .screenshot-slideshow .slide-pane.active {
      opacity: 1;
      z-index: 2;
      transform: scale(1);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .phone-mockup.pay-phone-mockup {
      position: absolute;
      bottom: 0;
      right: -5%;
      transform: scale(0.75);
      transform-origin: bottom right;
      z-index: 2;
      margin: 0;
    }

    .phone-mockup.pay-phone-mockup:hover {
      transform: scale(0.75) translateY(-8px);
    }

    @media (max-width: 900px) {
      .phone-mockup.pay-phone-mockup {
        transform: scale(0.55);
        right: 0;
      }
      .phone-mockup.pay-phone-mockup:hover {
        transform: scale(0.55) translateY(-8px);
      }
    }
    
    @media (max-width: 600px) {
      .phone-mockup.pay-phone-mockup {
        transform: scale(0.45);
        right: 0;
      }
      .phone-mockup.pay-phone-mockup:hover {
        transform: scale(0.45) translateY(-8px);
      }
    }
