:root {
    --bg-dark: #080a26;
    --bg-card: #131742;
    --bg-card-hover: #191e54;
    --bg-card-gradient: linear-gradient(145deg, #181d52, #101438);
    
    --stroke-blue: rgba(100, 130, 255, 0.2);
    --stroke-glow: rgba(130, 160, 255, 0.4);
    
    --yellow-gold: #ffd35c;
    --yellow-bright: #ffd000;
    --yellow-dark: #201400;
    --yellow-gradient: linear-gradient(135deg, #ffe055 0%, #ffd000 50%, #e0a200 100%);

    --text-white: #ffffff;
    --text-muted: #a6acd6;
    --text-dim: #7177aa;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
  }

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

  html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
  }

  body {
    overflow-x: hidden;
    position: relative;
    background: 
      radial-gradient(circle at 20% 10%, rgba(40, 52, 160, 0.4) 0%, transparent 45%),
      radial-gradient(circle at 80% 25%, rgba(30, 38, 120, 0.35) 0%, transparent 45%),
      radial-gradient(circle at 50% 65%, rgba(25, 32, 105, 0.3) 0%, transparent 50%),
      linear-gradient(180deg, #080a26 0%, #0b0e33 40%, #05071a 100%);
    min-height: 100vh;
  }

  /* Typography Utilities */
  .font-title {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
  }

  .text-yellow {
    color: var(--yellow-gold);
  }

  /* Container */
  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* NAVIGATION BAR */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 10, 38, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke-blue);
    padding: 12px 0;
  }

  .nav-flex {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    justify-self: center;
  }

  .brand-logo-img {
    height: 115px;
    width: auto;
    max-height: 125px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(255, 211, 92, 0.28));
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .brand-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 16px rgba(255, 211, 92, 0.4));
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    justify-self: start;
  }

  .nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.25s ease;
  }

  .nav-menu a:hover {
    color: var(--text-white);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
  }

  .search-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-pill);
    padding: 9px 18px;
    font-size: 13px;
    color: var(--text-dim);
    min-width: 170px;
  }

  .search-pill input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-size: 13px;
    width: 100%;
  }

  .btn-yellow {
    background: var(--yellow-gradient);
    color: var(--yellow-dark);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 211, 92, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
  }

  .btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 211, 92, 0.45);
  }

  .hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 28px;
    cursor: pointer;
  }

  /* Mobile Nav Overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: #0b0e33;
    border-bottom: 1px solid var(--stroke-blue);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    z-index: 99;
  }

  .mobile-nav.open {
    display: block;
  }

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

  .mobile-nav a {
    color: var(--text-white);
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
  }

  /* HERO SECTION */
  .hero-section {
    padding: 80px 0 90px;
    position: relative;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }

  .eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 211, 92, 0.1);
    border: 1px solid rgba(255, 211, 92, 0.3);
    color: var(--yellow-gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .hero-text h1 {
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
  }

  .hero-text p.lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
  }

  /* Market Insights Card */
  .market-card {
    background: var(--bg-card-gradient);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    max-width: 420px;
    box-shadow: 0 20px 45px rgba(2, 4, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .market-title {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }

  .stats-flex {
    display: flex;
    gap: 22px;
  }

  .stat-item b {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--yellow-gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-item span {
    font-size: 11.5px;
    color: var(--text-muted);
  }

  .badge-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .badge-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--stroke-blue);
    color: var(--text-muted);
    white-space: nowrap;
    text-align: center;
  }

  .badge-tag.yellow-active {
    background: var(--yellow-gradient);
    color: var(--yellow-dark);
    border: none;
    font-weight: 800;
    box-shadow: 0 0 14px rgba(255, 211, 92, 0.35);
  }

  /* Hero Robot Showcase Image Frame */
  .hero-visual-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  .hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--stroke-blue);
    box-shadow: 0 30px 70px rgba(2, 4, 25, 0.7);
    background: radial-gradient(circle at 50% 40%, rgba(35, 45, 130, 0.4), #0a0c28 80%);
  }

  .hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  .hero-image-frame:hover img {
    transform: scale(1.04);
  }

  .overlay-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(14, 18, 52, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* SECTION PADDING & HEADERS */
  .section-padding {
    padding: 90px 0;
  }

  .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 54px;
  }

  .section-header h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .section-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* SECTION: DASHBOARD QUICK STATS INCOMES (SINGLE CONTAINER, 4 BOXES) */
  .stats-dashboard-container {
    background: var(--bg-card-gradient);
    border: 1px solid var(--stroke-glow);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 25px 60px rgba(2, 4, 25, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
  }

  .stats-dashboard-container::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 211, 92, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .stats-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--stroke-blue);
    flex-wrap: wrap;
  }

  .stats-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .stats-title-group h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
  }

  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .live-dot {
    width: 7px;
    height: 7px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDot 1.8s infinite;
  }

  @keyframes pulseDot {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.25); }
    100% { opacity: 0.4; transform: scale(0.9); }
  }

  .filter-pills {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(8, 10, 38, 0.6);
    padding: 4px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--stroke-blue);
  }

  .filter-tab {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .filter-tab.active, .filter-tab:hover {
    background: var(--yellow-gradient);
    color: var(--yellow-dark);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 211, 92, 0.3);
  }

  /* SECTION: QUICK STATS & TEAM OVERVIEW DUAL PANEL SECTION */
  .dashboard-dual-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
  }

  .panel-box {
    background: #090c2a;
    border: 1px solid rgba(80, 110, 220, 0.25);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(2, 5, 20, 0.6);
    transition: all 0.3s ease;
  }

  .panel-box:hover {
    border-color: rgba(255, 211, 92, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(100, 130, 255, 0.15);
  }

  .panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .panel-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  .panel-header-icon.stats-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }

  .panel-header-icon.team-icon {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
  }

  .panel-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
  }

  /* LIST ITEMS FOR QUICK STATS */
  .stats-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .stats-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
  }

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

  .stats-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .stats-item-label {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
  }

  .stats-item-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-body);
  }

  /* TEAM OVERVIEW 2 BIG CARDS */
  .team-cards-2grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 6px;
  }

  .team-block-card {
    background: rgba(18, 24, 66, 0.7);
    border: 1px solid rgba(100, 130, 255, 0.2);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .team-block-card:hover {
    background: rgba(26, 34, 90, 0.9);
    border-color: var(--yellow-gold);
    transform: translateY(-2px);
  }

  .team-block-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1;
  }

  .team-block-sub {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* 4 STAT BOXES GRID IN ONE CONTAINER - MINIMALIST ICON -> HEADING -> INPUT -> BUTTON */
  .quick-stats-4grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .income-stat-box {
    background: rgba(10, 14, 45, 0.75);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: all 0.3s ease;
  }

  .income-stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 211, 92, 0.5);
    background: rgba(19, 23, 66, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 211, 92, 0.15);
  }

  .stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(30, 40, 110, 0.45);
    border: 1px solid var(--stroke-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-gold);
  }

  .stat-box-heading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.01em;
    margin: 0;
  }

  .stat-box-input {
    width: 100%;
    background: rgba(8, 10, 38, 0.85);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    outline: none;
    transition: all 0.25s ease;
  }

  .stat-box-input:focus {
    border-color: var(--yellow-gold);
    box-shadow: 0 0 12px rgba(255, 211, 92, 0.25);
    background: rgba(13, 17, 54, 0.95);
  }

  .stat-box-input::placeholder {
    color: var(--text-dim);
  }

  .stat-box-btn {
    width: 80rem;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--yellow-dark);
    background: var(--yellow-gradient);
    border: none;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(255, 211, 92, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .stat-box-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 211, 92, 0.35);
  }

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

  /* SECTION: PRECISION FEATURES GRID */
  .cards-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-card {
    background: var(--bg-card-gradient);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    text-align: center;
    align-items: center;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 211, 92, 0.4);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 40, 110, 0.5);
    border: 1px solid var(--stroke-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--yellow-gold);
    font-size: 22px;
  }

  .feature-card h3 {
    font-size: 17.5px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .feature-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .btn-learn {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--yellow-dark);
    background: var(--yellow-gradient);
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(255, 211, 92, 0.25);
    transition: transform 0.2s ease;
  }

  .btn-learn:hover {
    transform: translateY(-2px);
  }

  /* SECTION: AUTONOMOUS SYSTEMS & ROBOT AVATAR */
  .autonomous-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
  }

  .robot-avatar-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--stroke-blue);
    box-shadow: 0 25px 60px rgba(2, 4, 25, 0.7);
    background: var(--bg-card);
  }

  .robot-avatar-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .robot-avatar-card:hover img {
    transform: scale(1.04);
  }

  .autonomous-text h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    margin-bottom: 24px;
  }

  .insight-pill-box {
    background: var(--bg-card);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
  }

  .insight-pill-box .date-tag {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--yellow-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
  }

  .insight-pill-box h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .insight-pill-box p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* SECTION: HARNESSING INNOVATION & CYBER NETWORK */
  .split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }

  .split-text h2 {
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .split-text p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .network-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--stroke-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .network-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .network-card:hover img {
    transform: scale(1.04);
  }

  .network-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 38, 0.95) 80%);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .network-badge .badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 211, 92, 0.15);
    border: 1px solid var(--yellow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-gold);
    font-size: 14px;
  }

  .network-badge p {
    font-size: 13.5px;
    color: var(--text-white);
    font-weight: 500;
  }

  /* SECTION: MIND OF TOMORROW */
  .mind-card {
    background: var(--bg-card-gradient);
    border: 1px solid var(--stroke-blue);
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  }

  .pills-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0 32px;
  }

  .pill-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--stroke-blue);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .pill-btn.active, .pill-btn:hover {
    background: var(--yellow-gradient);
    color: var(--yellow-dark);
    border-color: transparent;
    font-weight: 700;
  }

  /* SECTION: FAQ SECTION (Matching exact yellow active card #02 from Figma image!) */
  .faq-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: flex-start;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .faq-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dim);
    min-width: 38px;
    line-height: 1;
  }

  .faq-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
  }

  .faq-content p {
    font-size: 13.8px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Active Yellow FAQ Card #02 (Exact match to Figma design screenshot!) */
  .faq-item.active {
    background: var(--yellow-gradient);
    color: var(--yellow-dark);
    border-color: var(--yellow-gold);
    box-shadow: 0 10px 30px rgba(255, 211, 92, 0.4);
  }

  .faq-item.active .faq-number {
    color: #402c00;
  }

  .faq-item.active .faq-content p {
    color: #2b1d00;
    font-weight: 500;
  }

  .faq-item:hover:not(.active) {
    border-color: rgba(255, 211, 92, 0.4);
    background: var(--bg-card-hover);
  }

  .faq-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--stroke-blue);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
  }

  .faq-preview-card img {
    width: 100%;
    max-width: 280px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--stroke-blue);
  }

  /* CTA & FOOTER */
  .cta-section {
    padding: 90px 0;
    text-align: center;
  }

  .cta-box {
    max-width: 780px;
    margin: 0 auto;
  }

  .cta-box h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 28px;
  }

  footer {
    border-top: 1px solid var(--stroke-blue);
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    background: #05071a;
  }

  /* SVG Icons */
  .icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 1024px) {
    .dashboard-dual-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .quick-stats-4grid {
      grid-template-columns: repeat(2, 1fr);
    }
      .hero-grid {
    grid-template-columns: 1fr;
  }

 

  .hero-visual-wrap {
    order: 2;
    margin-top: 30px;
  }
    .autonomous-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .split-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .cards-3-grid {
      grid-template-columns: 1fr 1fr;
    }
    .mind-card {
      grid-template-columns: 1fr;
      padding: 36px 28px;
    }
    .faq-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
   .quick-stats-4grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

    .income-stat-box {
    width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
  }

  .stat-box-input,
  .stat-box-btn,
  .income-stat-box button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .stat-box-input {
    padding: 12px !important;
    font-size: 14px !important;
  }

  .stat-box-btn,
  .income-stat-box button {
    padding: 12px !important;
    font-size: 14px !important;
  }

    .stats-dashboard-container {
      padding: 22px 14px;
    }
    .nav-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      min-height: 85px;
    }
    .brand-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }
    .brand-logo-img {
      height: 80px;
      max-height: 80px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 14px rgba(255, 211, 92, 0.4));
    }
    .nav-menu, .nav-actions .search-pill, .nav-actions .btn-yellow {
      display: none;
    }
    .hamburger-btn {
      display: block;
      position: relative;
      z-index: 3;
    }
    .cards-3-grid {
      grid-template-columns: 1fr;
    }
    .market-card {
      flex-direction: column;
      align-items: flex-start;
    }
    .section-padding {
      padding: 60px 0;
    }
  }
  
  
  @media (max-width: 480px) {
   .quick-stats-4grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}
    .income-stat-box {
      padding: 14px 10px;
      gap: 8px;
    }
    .stat-icon-wrapper {
      width: 34px;
      height: 34px;
      border-radius: 8px;
    }
    .stat-icon-wrapper svg {
      width: 16px;
      height: 16px;
    }
    .stat-box-heading {
      font-size: 12px;
    }
    .stat-box-input {
      font-size: 11.5px;
      padding: 7px 8px;
    }
    .stat-box-btn {
      font-size: 10px;
      padding: 7px 8px;
    }
    .stats-dashboard-container {
      padding: 16px 10px;
    }
    .container {
      padding: 0 14px;
    }
    .btn-yellow {
      padding: 10px 20px;
      font-size: 12.5px;
    }
    .nav-flex {
      min-height: 78px;
    }
    .brand-logo-img {
      height: 72px;
      max-height: 72px;
    }
    .hero-text h1 {
      font-size: 32px;
    }
  
  