/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
    --bg-main:     #030712; /* Darker blue-black */
    --bg-secondary:#0B1120; /* Slightly lighter blue-black */
    --surface:     #111827; /* Surface */
    --border:      rgba(255, 255, 255, 0.08);
    --text:        #F9FAFB;
    --text-muted:  #9CA3AF;
    --accent:      #2563EB; /* Modern Royal Blue matching KWS Logo */
    --accent-h:    #60A5FA; /* Lighter blue for hover/gradients */
    --radius:      14px;
    --radius-lg:   22px;
    --nav-h:       70px;
  }
  
  /* ═══════════════════════════════════════════
     RESET & BASE
  ═══════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-main);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }
  button { border: none; cursor: pointer; font-family: inherit; }
  
  /* ═══════════════════════════════════════════
     3D MARQUEE BACKGROUND (REVISI FULL SCREEN)
  ═══════════════════════════════════════════ */
  .hero-3d-marquee-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vh;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    overflow: hidden;
    opacity: 0.15;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  }
  
  .hero-3d-grid {
    display: flex;
    gap: 32px;
    transform: rotateX(55deg) rotateY(-15deg) rotateZ(25deg) scale(1.4);
    transform-style: preserve-3d;
  }
  
  .hero-3d-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: marquee3D 35s linear infinite;
  }
  
  .hero-3d-column.reverse {
    animation-direction: reverse;
  }
  
  .hero-3d-card {
    width: 260px;
    height: 170px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }
  
  @keyframes marquee3D {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }
  
  /* ═══════════════════════════════════════════
     SCROLLBAR
  ═══════════════════════════════════════════ */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--bg-main); }
  ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
  
  /* ═══════════════════════════════════════════
     UTILITIES
  ═══════════════════════════════════════════ */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .section-pad { padding: 100px 0; }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: rgba(37, 99, 235, 0.08);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
  }
  .section-desc {
    color: var(--text-muted);
    max-width: 560px;
    margin-top: 14px;
    font-size: 17px;
  }
  .gradient-text {
    background: linear-gradient(90deg, var(--accent), var(--accent-h));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all .28s ease;
    cursor: pointer;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-h));
    color: #fff;
    box-shadow: 0 0 28px rgba(37, 99, 235, 0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(37, 99, 235, 0.55);
  }
  .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(6px);
  }
  .btn-outline:hover {
    border-color: rgba(37, 99, 235, 0.5);
    color: var(--accent);
    transform: translateY(-2px);
  }
  
  /* ═══════════════════════════════════════════
     LINES GRADIENT SHADER (Hero BG)
  ═══════════════════════════════════════════ */
  .shader-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  .shader-canvas {
    width: 100%;
    height: 100%;
  }
  .glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .18;
    animation: blobDrift 14s ease-in-out infinite alternate;
  }
  .glow-blob-1 { width: 500px; height: 500px; background: var(--accent); top: -100px; right: 10%; animation-delay: 0s; }
  .glow-blob-2 { width: 380px; height: 380px; background: #0EA5E9; bottom: 0; left: 5%; animation-delay: -6s; }
  
  @keyframes blobDrift {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.12); }
  }
  
  .lines-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
  }
  @keyframes gridShift {
    from { background-position: 0 0; }
    to   { background-position: 60px 60px; }
  }
  
  /* ═══════════════════════════════════════════
     NAVBAR – Modern Floating Pill
  ═══════════════════════════════════════════ */
  .navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 900px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .navbar-wrapper.scrolled {
    top: 16px;
  }
  
  .navbar {
    background: rgba(14, 20, 36, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px 10px 8px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
  }
  
  .navbar-wrapper.scrolled .navbar {
    background: rgba(14, 20, 36, 0.9);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 99, 235, 0.1);
  }
  
  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .nav-logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-h));
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .nav-item {
    position: relative;
  }
  
  .nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    transition: color 0.3s;
  }
  
  .nav-link:hover { color: var(--text); }
  .nav-link svg { width: 10px; height: 10px; opacity: 0.6; transition: transform 0.3s; }
  .nav-item:hover .nav-link svg { transform: rotate(180deg); }
  
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(14, 20, 36, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    width: max-content;
    min-width: 460px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    pointer-events: none;
  }
  
  .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(16px);
    pointer-events: auto;
  }
  
  .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    transition: background 0.2s;
  }
  
  .dropdown-item:hover { background: rgba(255, 255, 255, 0.03); }
  
  .dd-icon {
    font-size: 18px;
    background: rgba(37, 99, 235, 0.1);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    color: var(--accent);
    flex-shrink: 0;
  }
  
  .dd-text h4 { font-size: 13px; color: var(--text); margin-bottom: 4px; }
  .dd-text p { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
  }
  
  .nav-login:hover { color: var(--text); }
  
  .nav-cta-btn {
    background: var(--text);
    color: var(--bg-main);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  
  .nav-cta-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  }
  
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: 8px; }
  .hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
  
  @media (max-width: 860px) {
    .navbar-wrapper { width: 92%; max-width: 100%; top: 16px; }
    .nav-links, .nav-login { display: none; }
    .hamburger { display: flex; }
  }
  
  /* ═══════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════ */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
  }
  .hero-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.03em;
    margin-bottom: 22px;
  }
  .hero-headline .line { display: block; overflow: hidden; }
  .hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 36px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
  }
  .stat-item {}
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
  
  /* MacBook Illustration */
  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .macbook-wrap {
    position: relative;
    width: 480px;
    max-width: 100%;
  }
  .macbook-body {
    background: #1a1a2e;
    border: 2px solid #2a2a4e;
    border-radius: 16px 16px 0 0;
    padding: 20px 24px 10px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 40px 120px rgba(0, 0, 0, 0.7),
      0 0 80px rgba(37, 99, 235, 0.12);
  }
  .macbook-notch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .macbook-dots { display: flex; gap: 6px; }
  .macbook-dots span { width: 10px; height: 10px; border-radius: 50%; }
  .macbook-dots span:nth-child(1) { background: #ff5f57; }
  .macbook-dots span:nth-child(2) { background: #febc2e; }
  .macbook-dots span:nth-child(3) { background: #28c840; }
  .macbook-camera { width: 8px; height: 8px; border-radius: 50%; background: #2a2a4e; }
  .macbook-screen {
    background: linear-gradient(135deg, var(--bg-secondary), var(--surface));
    border-radius: 8px;
    padding: 16px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }
  .dash-title { font-size: 11px; font-weight: 700; color: var(--text); }
  .dash-badge-live {
    font-size: 9px;
    padding: 2px 8px;
    background: rgba(40, 200, 64, 0.15);
    color: #28c840;
    border-radius: 20px;
    border: 1px solid rgba(40, 200, 64, 0.3);
  }
  .dash-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }
  .dash-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
  }
  .dash-stat-num { font-size: 16px; font-weight: 800; color: var(--text); }
  .dash-stat-label { font-size: 8px; color: var(--text-muted); margin-top: 2px; }
  .dash-chart-area {
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    gap: 4px;
  }
  .dash-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--accent-h), var(--accent));
    opacity: .75;
    animation: barPulse 2s ease-in-out infinite alternate;
  }
  @keyframes barPulse {
    from { opacity: .55; }
    to   { opacity: .9; }
  }
  .dash-row-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    margin-top: 8px;
  }
  .dash-activity {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
  }
  .dash-activity-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .dash-activity-item:last-child { border-bottom: none; }
  .dash-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
  .dash-activity-text { font-size: 8px; color: var(--text-muted); }
  .dash-donut-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .donut-svg { width: 54px; height: 54px; }
  .macbook-base {
    background: #1a1a2e;
    height: 18px;
    border-radius: 0 0 4px 4px;
    border: 2px solid #2a2a4e;
    border-top: 1px solid #0a0a1a;
    position: relative;
  }
  .macbook-base::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 5px;
    background: #2a2a4e;
    border-radius: 0 0 6px 6px;
  }
  
  /* Floating icons */
  .floating-icon {
    position: absolute;
    width: 46px; height: 46px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: floatAnim 4s ease-in-out infinite;
  }
  @keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
  }
  .fi-1  { top: -20px; left: -30px; animation-delay: 0s; }
  .fi-2  { top: 30px;  right: -40px; animation-delay: -.6s; }
  .fi-3  { top: 130px; left: -50px; animation-delay: -1.2s; }
  .fi-4  { top: 150px; right: -55px; animation-delay: -1.8s; }
  .fi-5  { bottom: 60px; left: -20px; animation-delay: -2.4s; }
  .fi-6  { bottom: 30px; right: -30px; animation-delay: -3s; }
  
  /* ═══════════════════════════════════════════
     PARTNER – Single Row Marquee Logo Cloud
  ═══════════════════════════════════════════ */
  #partner { 
    padding: 60px 0; 
    border-top: 1px solid var(--border); 
    overflow: hidden; 
  }
  
  .partner-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 36px;
  }
  
  .partner-marquee-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  }
  
  .partner-marquee-track {
    display: flex;
    gap: 24px;
    padding-left: 24px;
    width: max-content;
    animation: partnerScroll 20s linear infinite;
  }
  
  .partner-marquee-wrapper:hover .partner-marquee-track {
    animation-play-state: paused;
  }
  
  .partner-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .partner-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.03));
    opacity: 0;
    transition: opacity .35s;
  }
  
  .partner-item:hover { 
    border-color: rgba(37, 99, 235, 0.4); 
    transform: translateY(-3px); 
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15); 
  }
  
  .partner-item:hover::before { opacity: 1; }
  
  .partner-item-name {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-muted);
    transition: color .35s;
    letter-spacing: -.01em;
    position: relative;
    z-index: 1;
  }
  
  .partner-item:hover .partner-item-name { color: var(--text); }
  
  @keyframes partnerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  
  /* ═══════════════════════════════════════════
     KLIEN – Logo Cloud Swap Animation
  ═══════════════════════════════════════════ */
  #clients { padding: 100px 0; }
  .clients-header { text-align: center; margin-bottom: 60px; }
  
  .clients-swap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 24px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .swap-cell {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .swap-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                filter 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .swap-item .client-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
  }
  
  .swap-item.active {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
    z-index: 2;
  }
  
  .swap-item.hidden {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.9);
    z-index: 1;
    pointer-events: none;
  }
  
  @media (max-width: 768px) {
    .clients-swap-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  /* ═══════════════════════════════════════════
     GLOBE SECTION – Layout Kiri & Kanan
  ═══════════════════════════════════════════ */
  .globe-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .globe-text {
    max-width: 500px;
  }
  
  .globe-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }
  
  .g-stat {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
  }
  
  .g-stat span {
    display: block;
    font-size: 32px;
    font-family: 'Syne', sans-serif;
    margin-bottom: 4px;
  }
  
  .globe-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
  }
  
  .globe-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    pointer-events: none;
  }
  
  /* ═══════════════════════════════════════════
     RESPONSIF MOBILE: GLOBE SECTION
  ═══════════════════════════════════════════ */
  @media (max-width: 992px) {
    .globe-layout {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 32px;
      width: 100%;
      overflow-x: hidden;
    }
    
    .globe-text {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 16px;
    }
    
    .globe-text .section-title {
      word-break: break-word;
      font-size: clamp(32px, 8vw, 42px);
    }
    
    .globe-stats {
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      padding-top: 24px;
    }
    
    .globe-visual {
      margin-top: 0;
      width: 100%;
      max-width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #globeViz {
      width: 100% !important;
      display: flex;
      justify-content: center;
    }
    
    #globeViz canvas {
      max-width: 100% !important;
      height: auto !important;
    }
  }
  
  /* ═══════════════════════════════════════════
     TENTANG – Features Sticky Scroll
  ═══════════════════════════════════════════ */
  #about { padding: 100px 0; }
  .about-header { text-align: center; margin-bottom: 60px; }
  
  .sticky-scroll-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .sticky-left { 
    position: sticky; 
    top: 120px; 
  }
  
  .sticky-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
  }
  
  .sv-icon { 
    width: 100%; 
    max-width: 360px; 
    height: 220px; 
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .sv-icon img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
  }
  
  .sv-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
  .sv-desc { font-size: 14px; color: var(--text-muted); text-align: center; max-width: 320px; }
  
  .feature-item {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover { 
    border-color: rgba(37, 99, 235, 0.4); 
    background: rgba(37, 99, 235, 0.03);
  }
  
  .feature-icon {
    width: 48px; height: 48px;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .feature-icon img { width: 100%; height: 100%; object-fit: cover; }
  .feature-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
  .feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
  
  @media (max-width: 992px) {
    .sticky-scroll-wrap { grid-template-columns: 1fr; }
    .sticky-left { position: static; }
    .sticky-visual { min-height: auto; padding: 24px; }
    .sv-icon { height: 180px; }
  }
  
  /* ═══════════════════════════════════════════
     PORTFOLIO
  ═══════════════════════════════════════════ */
  #portfolio { padding: 100px 0; }
  .portfolio-header { text-align: center; margin-bottom: 60px; }
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
  }
  .bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease;
  }
  .bento-card:hover { transform: scale(1.02); }
  .bento-card.span-2 { grid-column: span 2; }
  .bento-card.span-row { grid-row: span 2; }
  .bento-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: .15;
    transition: opacity .35s;
  }
  .bento-card:hover .bento-bg { opacity: .25; }
  .bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 22, 0.9) 100%);
  }
  .bento-card:hover .bento-overlay {
    background: linear-gradient(180deg, rgba(5, 8, 22, 0.3) 0%, rgba(5, 8, 22, 0.92) 100%);
  }
  .bento-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px;
  }
  .bento-cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .bento-title { font-size: 16px; font-weight: 700; }
  .bento-tech { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
  .bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s ease;
  }
  .bento-card:hover .bento-link { opacity: 1; transform: translateY(0); }
  .bento-status {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
  }
  .status-live { background: rgba(40, 200, 64, 0.15); color: #28c840; border: 1px solid rgba(40, 200, 64, 0.3); }
  .status-dev  { background: rgba(255, 186, 0, 0.15);  color: #ffba00;  border: 1px solid rgba(255, 186, 0, 0.3); }
  
  /* ═══════════════════════════════════════════
     WORKFLOW
  ═══════════════════════════════════════════ */
  #workflow { padding: 100px 0; background: var(--bg-secondary); }
  .workflow-header { text-align: center; margin-bottom: 70px; }
  .workflow-timeline {
    display: flex;
    gap: 0;
    position: relative;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .workflow-timeline::before {
    content: '';
    position: absolute;
    top: 38px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-h), var(--accent), transparent);
    background-size: 200% 100%;
    animation: lineMove 4s linear infinite;
  }
  @keyframes lineMove {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
  }
  .workflow-step {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 0;
  }
  .step-num {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: relative;
    z-index: 2;
    transition: all .35s ease;
    margin-bottom: 18px;
  }
  .workflow-step:hover .step-num {
    border-color: var(--accent);
    background: rgba(37, 99, 235, 0.1);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
    transform: scale(1.1);
  }
  .step-label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-align: center; }
  
  /* ═══════════════════════════════════════════
     PRICING
  ═══════════════════════════════════════════ */
  #pricing { padding: 100px 0; }
  .pricing-header { text-align: center; margin-bottom: 60px; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .pricing-card:hover { transform: translateY(-6px); }
  .pricing-card.popular {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(37, 99, 235, 0.2);
  }
  .pricing-card.popular:hover { box-shadow: 0 0 80px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(37, 99, 235, 0.3); }
  .popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent), var(--accent-h));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: .06em;
  }
  .plan-name { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
  .plan-price {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 4px;
  }
  .plan-price sub { font-size: 16px; font-weight: 500; color: var(--text-muted); }
  .plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
  .plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
  .plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
  }
  .plan-feature .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--accent);
    flex-shrink: 0;
  }
  .plan-btn { width: 100%; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600; }
  .plan-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    transition: all .3s;
  }
  .plan-btn-outline:hover { border-color: rgba(37, 99, 235, 0.45); color: var(--accent); }
  
  /* ═══════════════════════════════════════════
     TESTIMONI – Horizontal Marquee Grid Modern
  ═══════════════════════════════════════════ */
  #testimonials { padding: 100px 0; background: var(--bg-secondary); overflow: hidden; }
  .testi-header { text-align: center; margin-bottom: 60px; }
  
  .testi-marquee-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  
  .testi-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeHorizontal 40s linear infinite;
  }
  
  .testi-marquee-track.reverse {
    animation-direction: reverse;
  }
  
  .testi-marquee-wrapper:hover .testi-marquee-track {
    animation-play-state: paused;
  }
  
  @keyframes marqueeHorizontal {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  .testi-card-modern {
    width: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  
  .testi-card-modern:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
  }
  
  .testi-card-modern .testi-brand {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .testi-card-modern .testi-quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
  }
  
  .testi-card-modern .testi-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
  }
  
  .testi-card-modern .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--surface), var(--bg-main));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  
  .testi-card-modern .testi-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .testi-card-modern .testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }
  
  .testi-card-modern .testi-role {
    font-size: 12px;
    color: var(--text-muted);
  }
  
  /* ═══════════════════════════════════════════
     CTA
  ═══════════════════════════════════════════ */
  #cta { padding: 120px 0; position: relative; overflow: hidden; }
  .cta-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  }
  .cta-border {
    position: absolute;
    inset: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  .cta-title { font-family: 'Syne', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
  .cta-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; }
  
  /* ═══════════════════════════════════════════
     FOOTER – Minimalist Typographic Modern
  ═══════════════════════════════════════════ */
  footer {
    position: relative;
    background: #03050D; 
    padding: 100px 0 0;
    border-top: 1px solid var(--border);
    overflow: hidden;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 160px;
    position: relative;
    z-index: 2;
  }
  
  .footer-left {
    max-width: 320px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
  }
  
  .footer-logo-icon {
    background: var(--text);
    color: var(--bg-main);
    width: 32px; 
    height: 32px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
  }
  
  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    flex-grow: 1;
    max-width: 800px;
  }
  
  .footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
  }
  
  .footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-link-list a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.3s ease;
  }
  
  .footer-link-list a:hover {
    color: var(--text);
  }
  
  .footer-big-text {
    position: absolute;
    bottom: -2vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Syne', sans-serif;
    font-size: 14.5vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  
  @media (max-width: 992px) {
    .footer-top {
      flex-direction: column;
      margin-bottom: 100px;
    }
    .footer-links-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-big-text {
      font-size: 18vw;
      bottom: -1vw;
    }
  }
  
  @media (max-width: 576px) {
    .footer-links-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .footer-big-text {
      font-size: 24vw;
    }
  }
  
  /* ═══════════════════════════════════════════
     REVEAL ANIMATIONS
  ═══════════════════════════════════════════ */
  .reveal { opacity: 0; transform: translateY(40px); }
  .reveal.visible { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
  
  /* ═══════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-right { display: none; }
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
    .sticky-scroll-wrap { grid-template-columns: 1fr; }
    .sticky-left { position: static; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card.span-2 { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testi-columns { grid-template-columns: 1fr; }
    .testi-col:nth-child(n+2) { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open { 
      display: flex; 
      flex-direction: column; 
      position: fixed; 
      top: var(--nav-h); 
      left: 0; 
      right: 0; 
      background: rgba(5, 8, 22, 0.97); 
      backdrop-filter: blur(20px); 
      padding: 24px; 
      gap: 24px; 
      border-bottom: 1px solid var(--border); 
    }
    .hamburger { display: flex; }
    .nav-cta-btn { display: none; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  }
  
  /* ═══════════════════════════════════════════
     ACETERNITY BENTO GRID (REVISI FULL & 2 KOLOM)
  ═══════════════════════════════════════════ */
  .aceternity-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px; 
    width: 100%;
    margin: 0 auto;
  }
  
  .bento-item-ace {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px; 
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .bento-item-ace:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.15);
  }
  
  .bento-item-ace.span-2 {
    grid-column: span 2 / span 2;
  }
  
  .bento-skeleton-ace {
    flex: 1;
    width: 100%;
    min-height: 120px; 
    border-radius: 10px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    background-size: 200% 200%;
    animation: skeletonShimmer 3s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.03);
  }
  
  @keyframes skeletonShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .bento-content-ace {
    display: flex;
    flex-direction: column;
  }
  
  .icon-ace {
    color: #737373;
    margin-bottom: 12px;
  }
  
  .bento-title-ace {
    font-size: 16px;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 6px;
  }
  
  .bento-desc-ace {
    font-size: 14px;
    color: #a3a3a3;
    line-height: 1.6;
  }
  
  /* ═══════════════════════════════════════════
     RESPONSIVE GRID
  ═══════════════════════════════════════════ */
  @media (max-width: 992px) {
    .aceternity-bento-grid {
      grid-template-columns: repeat(2, 1fr); 
    }
    .bento-item-ace.span-2 {
      grid-column: span 2 / span 2; 
    }
  }
  
  @media (max-width: 480px) {
    .aceternity-bento-grid {
      grid-template-columns: 1fr;
    }
    .bento-item-ace.span-2 {
      grid-column: span 1 / span 1;
    }
  }

  /* Styling buat logo baru di Navbar dan Footer */
.nav-logo-img {
    height: 28px; /* Tingginya gue set mirip sama icon sebelumnya */
    width: auto;
    object-fit: contain;
    display: block;
  }
  
  .footer-logo-img {
    height: 36px; /* Dibuat sedikit lebih besar buat di footer */
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* Styling revisi buat gambar di layar Macbook */
.macbook-screen-img {
    width: 100%;
    height: auto;
    max-height: 240px; /* Nahan gambar biar gak bablas dari frame */
    object-fit: contain; /* Menjaga gambar tetap utuh dan proporsional */
    border-radius: 4px; /* Sudut melengkung tipis biar lebih realistis */
    display: block;
    margin: 0 auto; /* Posisi di tengah */
  }