:root {
      --primary: #6366f1;
      --primary-soft: #e0e7ff;
      --accent: #f97316;
      --accent-soft: #ffedd5;
      --pink: #ec4899;
      --turquoise: #22c9c9;
      --bg: #f9fafb;
      --text-main: #111827;
      --text-muted: #6b7280;
      --surface: #ffffff;
      --border-soft: rgba(148, 163, 184, 0.35);
      --radius-lg: 18px;
      --radius-full: 999px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
      --transition-fast: 180ms ease-out;
      --transition-med: 260ms ease-out;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-main);
      background: linear-gradient(135deg, #eef2ff, #fef3c7, #e0f2fe);
      background-size: 300% 300%;
      animation: bgShift 18s ease-in-out infinite;
      line-height: 1.5;
    }

    @keyframes bgShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .max-w {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* NAVBAR */

    .navbar {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
      transition: box-shadow var(--transition-fast), border-color var(--transition-fast),
                  background var(--transition-fast), transform var(--transition-fast);
    }

    .navbar.scrolled {
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
      border-color: rgba(148, 163, 184, 0.4);
      transform: translateY(0);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.7rem 1.5rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand-logo {
      width: 34px;
      height: 34px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 0 0, #a855f7, transparent 55%),
        radial-gradient(circle at 100% 0, #22c55e, transparent 55%),
        radial-gradient(circle at 50% 120%, #0ea5e9, #6366f1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      color: #fff;
      box-shadow: 0 12px 30px rgba(129, 140, 248, 0.7);
    }

    .brand-text-main {
      font-size: 1rem;
      font-weight: 600;
    }

    .brand-text-sub {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      padding-bottom: 2px;
      color: var(--text-muted);
      border-bottom: 2px solid transparent;
      transition: color var(--transition-fast), border-color var(--transition-fast),
                  transform var(--transition-fast);
    }

    .nav-links a:hover {
      color: var(--primary);
      border-color: var(--primary);
      transform: translateY(-1px);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .pill-badge {
      font-size: 0.72rem;
      padding: 0.22rem 0.7rem;
      border-radius: var(--radius-full);
      border: 1px dashed rgba(34, 197, 94, 0.7);
      background: #dcfce7;
      color: #047857;
    }

    .btn {
      border-radius: var(--radius-full);
      padding: 0.5rem 1.2rem;
      border: 1px solid transparent;
      font-size: 0.84rem;
      font-weight: 500;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: background var(--transition-fast), color var(--transition-fast),
                  border-color var(--transition-fast), transform var(--transition-fast),
                  box-shadow var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #6366f1, #ec4899);
      color: #fff;
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.6);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 35px rgba(129, 140, 248, 0.8);
    }

    .btn-ghost {
      background: #fff;
      color: var(--primary);
      border-color: rgba(129, 140, 248, 0.6);
    }

    .btn-ghost:hover {
      background: #eef2ff;
      transform: translateY(-1px);
    }

    .mobile-toggle {
      display: none;
      background: transparent;
      border: none;
      font-size: 1.4rem;
      cursor: pointer;
      color: var(--primary);
    }

    @media (max-width: 840px) {
      .nav-links,
      .nav-cta {
        display: none;
      }
      .mobile-toggle {
        display: block;
      }
      .navbar.open .nav-links,
      .navbar.open .nav-cta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.7rem 1.5rem 1.1rem;
        gap: 0.9rem;
      }
      .navbar.open .nav-inner {
        flex-direction: column;
        align-items: stretch;
      }
    }

    /* HERO */

    .hero {
      padding: 3.2rem 0 3rem;
      position: relative;
      overflow: hidden;
    }

    .hero-blobs::before,
    .hero-blobs::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      opacity: 0.35;
      z-index: -1;
      pointer-events: none;
    }

    .hero-blobs::before {
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(244, 114, 182, 0.9), transparent 60%);
      top: -80px;
      right: -60px;
      animation: floatBlob 12s ease-in-out infinite alternate;
    }

    .hero-blobs::after {
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(52, 211, 153, 0.9), transparent 60%);
      bottom: -90px;
      left: -50px;
      animation: floatBlob 14s ease-in-out infinite alternate;
    }

    @keyframes floatBlob {
      0%   { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(20px, -15px, 0) scale(1.08); }
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 2.4rem;
      align-items: center;
    }

    @media (max-width: 960px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.3rem 0.75rem;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.3);
    }

    .hero-title {
      font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 0.7rem;
    }

    .hero-title span {
      background: linear-gradient(120deg, #f97316, #6366f1, #ec4899);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin-bottom: 1.4rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.3rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.6rem;
    }

    .hero-meta strong {
      display: block;
      font-size: 1.1rem;
      color: var(--text-main);
    }

    /* Tabs produk di hero */

    .product-tabs {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      padding: 0.25rem;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.45);
      margin-bottom: 1rem;
    }

    .product-tab {
      border-radius: var(--radius-full);
      padding: 0.35rem 0.9rem;
      font-size: 0.8rem;
      border: 1px solid transparent;
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: background var(--transition-fast), border-color var(--transition-fast),
                  color var(--transition-fast), transform var(--transition-fast);
    }

    .product-tab span.icon {
      font-size: 1rem;
    }

    .product-tab.active {
      background: linear-gradient(135deg, #6366f1, #22c55e);
      color: #fff;
      border-color: rgba(148, 163, 184, 0.2);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(79, 70, 229, 0.45);
    }

    .product-tab:not(.active):hover {
      background: #eef2ff;
      border-color: rgba(148, 163, 184, 0.7);
    }

    /* Hero panel kanan */

    .hero-panel {
      border-radius: 22px;
      padding: 1.2rem 1.25rem;
      background: linear-gradient(145deg, #ffffff, #eff6ff);
      border: 1px solid rgba(148, 163, 184, 0.45);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      display: none;
    }

    .hero-panel.active {
      display: block;
      animation: fadeUp 260ms ease-out;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .hero-panel-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .hero-panel-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .hero-panel-badge {
      font-size: 0.72rem;
      padding: 0.2rem 0.7rem;
      border-radius: var(--radius-full);
      border: 1px solid rgba(52, 211, 153, 0.6);
      background: #dcfce7;
      color: #15803d;
      white-space: nowrap;
    }

    .hero-panel-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      font-size: 0.74rem;
      margin-bottom: 0.9rem;
    }

    .chip {
      padding: 0.18rem 0.6rem;
      border-radius: var(--radius-full);
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(255, 255, 255, 0.9);
      color: var(--text-muted);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
      font-size: 0.75rem;
      margin-bottom: 0.9rem;
    }

    @media (max-width: 520px) {
      .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .hero-metric {
      border-radius: 12px;
      padding: 0.6rem 0.7rem;
      background: #fff;
      border: 1px solid rgba(148, 163, 184, 0.4);
    }

    .hero-metric strong {
      display: block;
      font-size: 0.95rem;
      margin-bottom: 0.15rem;
    }

    .hero-timeline {
      display: grid;
      gap: 0.4rem;
      font-size: 0.75rem;
    }

    .hero-timeline-item {
      display: flex;
      gap: 0.4rem;
      align-items: flex-start;
    }

    .hero-dot-small {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--primary);
      margin-top: 0.25rem;
    }

    .hero-timeline-item strong {
      display: block;
      margin-bottom: 0.05rem;
    }

    /* SECTION GENERIC */

    section {
      padding: 3rem 0;
    }

    .section-header {
      margin-bottom: 1.6rem;
    }

    .section-eyebrow {
      font-size: 0.76rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 34rem;
    }

    /* PRODUK */

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 0.6rem;
    }

    @media (max-width: 960px) {
      .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .products-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .product-card {
      background: rgba(255, 255, 255, 0.96);
      border-radius: var(--radius-lg);
      padding: 1rem;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      position: relative;
      transition: transform var(--transition-med), box-shadow var(--transition-med),
                  border-color var(--transition-med);
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at 0 0, rgba(96, 165, 250, 0.5), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(244, 114, 182, 0.4), transparent 55%);
      opacity: 0;
      transition: opacity var(--transition-med), transform var(--transition-med);
      z-index: -1;
    }

    .product-card:hover {
      transform: translateY(-6px) rotate3d(0.03, -0.06, 0, 2deg);
      border-color: rgba(129, 140, 248, 0.8);
      box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
    }

    .product-card:hover::before {
      opacity: 0.9;
      transform: translate3d(0, -6px, 0);
    }

    .product-tag {
      font-size: 0.72rem;
      padding: 0.18rem 0.6rem;
      border-radius: var(--radius-full);
      background: #eef2ff;
      color: #4f46e5;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-bottom: 0.5rem;
    }

    .product-tag-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .product-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .product-desc {
      font-size: 0.84rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .product-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-bottom: 0.7rem;
    }

    .pill {
      font-size: 0.72rem;
      padding: 0.18rem 0.6rem;
      border-radius: var(--radius-full);
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: #f9fafb;
      color: #4b5563;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
    }

    .price {
      font-weight: 600;
    }

    .price span {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .link-inline {
      font-size: 0.8rem;
      color: #4f46e5;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .link-inline::after {
      content: "↗";
      font-size: 0.75rem;
    }

    /* ====== SCREENSHOT & POINTER FITUR ====== */

    .showcase {
      padding: 3rem 0;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
      gap: 1.8rem;
    }

    @media (max-width: 960px) {
      .showcase-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .showcase-tabs {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      padding: 0.25rem;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.45);
      margin-bottom: 1.1rem;
    }

    .showcase-tab {
      border-radius: var(--radius-full);
      padding: 0.35rem 0.9rem;
      font-size: 0.8rem;
      border: 1px solid transparent;
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: background var(--transition-fast), border-color var(--transition-fast),
                  color var(--transition-fast), transform var(--transition-fast);
    }

    .showcase-tab span.icon {
      font-size: 1rem;
    }

    .showcase-tab.active {
      background: linear-gradient(135deg, #6366f1, #22c55e);
      color: #fff;
      border-color: rgba(148, 163, 184, 0.2);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(79, 70, 229, 0.45);
    }

    .showcase-tab:not(.active):hover {
      background: #eef2ff;
      border-color: rgba(148, 163, 184, 0.6);
    }

    .screen-frame {
      position: relative;
      border-radius: 20px;
      padding: 0.8rem;
      background: linear-gradient(145deg, #ffffff, #eef2ff);
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .screen-inner {
      border-radius: 14px;
      overflow: hidden;
      background: #0f172a;
      position: relative;
    }

    .screen-inner img {
      display: block;
      width: 100%;
      height: auto;
    }

    .hotspot {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: #f97316;
      color: #fff;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(248, 113, 113, 0.7);
      cursor: pointer;
      transform: translate(-50%, -50%);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
                  background var(--transition-fast);
    }

    .hotspot::after {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: inherit;
      border: 2px solid rgba(248, 250, 252, 0.8);
      opacity: 0;
      transition: opacity var(--transition-fast);
    }

    .hotspot.active,
    .hotspot:hover {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 12px 26px rgba(248, 113, 113, 0.9);
    }

    .hotspot.active::after,
    .hotspot:hover::after {
      opacity: 1;
    }

    .hotspot-tooltip {
      position: absolute;
      min-width: 160px;
      max-width: 220px;
      padding: 0.45rem 0.55rem;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.95);
      color: #e5e7eb;
      font-size: 0.75rem;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-fast), transform var(--transition-fast);
      z-index: 10;
    }

    .hotspot:hover .hotspot-tooltip,
    .hotspot.active .hotspot-tooltip {
      opacity: 1;
      transform: translateY(-12px);
    }

    .hotspot-tooltip strong {
      display: block;
      margin-bottom: 0.15rem;
      font-size: 0.78rem;
    }

    .showcase-details {
      border-radius: var(--radius-lg);
      padding: 1rem 1.05rem;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow: var(--shadow-soft);
      font-size: 0.82rem;
    }

    .feature-pointers {
      margin-top: 0.7rem;
      display: grid;
      gap: 0.5rem;
    }

    .feature-pointer {
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
      padding: 0.4rem 0.5rem;
      border-radius: 12px;
      transition: background var(--transition-fast), transform var(--transition-fast),
                  box-shadow var(--transition-fast);
      cursor: pointer;
    }

    .feature-pointer-number {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: #e0e7ff;
      color: #4f46e5;
      font-size: 0.78rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    .feature-pointer-text {
      font-size: 0.8rem;
    }

    .feature-pointer-text strong {
      display: block;
      margin-bottom: 0.05rem;
    }

    .feature-pointer.active {
      background: #eef2ff;
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(148, 163, 184, 0.35);
    }

    @media (max-width: 720px) {
      .hotspot-tooltip {
        display: none;
      }
    }

    /* FITUR */

    .features-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
      gap: 1.7rem;
      margin-top: 0.5rem;
    }

    @media (max-width: 960px) {
      .features-layout {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .feature-list {
      display: grid;
      gap: 1rem;
    }

    .feature-item {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
    }

    .feature-icon {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: linear-gradient(135deg, #6366f1, #22c55e);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      box-shadow: 0 10px 22px rgba(79, 70, 229, 0.6);
      animation: floatIcon 4s ease-in-out infinite alternate;
    }

    @keyframes floatIcon {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-4px); }
    }

    .feature-title {
      font-size: 0.94rem;
      font-weight: 600;
      margin-bottom: 0.15rem;
    }

    .feature-text {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .feature-panel {
      background: linear-gradient(145deg, #ffffff, #fee2e2);
      border-radius: var(--radius-lg);
      padding: 1rem 1.1rem;
      border: 1px solid rgba(248, 113, 113, 0.6);
      box-shadow: var(--shadow-soft);
      font-size: 0.82rem;
    }

    .timeline-mini {
      margin-top: 0.7rem;
      display: grid;
      gap: 0.4rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .timeline-mini-row {
      display: flex;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .stats-bar {
      margin-top: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.3rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .stat .value {
      display: block;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-main);
    }

    /* PRICING */

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 0.8rem;
    }

    @media (max-width: 960px) {
      .pricing-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      }
    }

    @media (max-width: 720px) {
      .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .pricing-card {
      border-radius: var(--radius-lg);
      padding: 1rem 1.1rem 1.1rem;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: var(--shadow-soft);
      font-size: 0.82rem;
      position: relative;
      overflow: hidden;
      transition: transform var(--transition-med), box-shadow var(--transition-med),
                  border-color var(--transition-med);
    }

    .pricing-card.highlight {
      background: linear-gradient(135deg, #eef2ff, #fee2ff);
      border-color: rgba(147, 51, 234, 0.9);
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(129, 140, 248, 0.55);
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.24);
    }

    .pricing-name {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }

    .pricing-title {
      font-size: 1.02rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .pricing-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.55rem;
    }

    .pricing-value {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .pricing-value span {
      font-size: 0.76rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .pricing-note {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .pricing-features {
      list-style: none;
      display: grid;
      gap: 0.35rem;
      font-size: 0.78rem;
      margin-bottom: 0.8rem;
    }

    .pricing-features li::before {
      content: "✓";
      margin-right: 0.3rem;
      color: #22c55e;
    }

    /* FAQ + KONTAK */

    .faq-contact {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.2fr);
      gap: 1.7rem;
      margin-top: 0.5rem;
    }

    @media (max-width: 960px) {
      .faq-contact {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    details {
      background: rgba(255, 255, 255, 0.96);
      border-radius: 14px;
      padding: 0.7rem 0.9rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
      font-size: 0.82rem;
    }

    details + details {
      margin-top: 0.55rem;
    }

    summary {
      cursor: pointer;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "＋";
      float: right;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    details[open] summary::after {
      content: "－";
    }

    details p {
      margin-top: 0.3rem;
      color: var(--text-muted);
    }

    .contact-card {
      background: linear-gradient(145deg, #ffffff, #dcfce7);
      border-radius: var(--radius-lg);
      padding: 1rem 1.1rem;
      border: 1px solid rgba(34, 197, 94, 0.8);
      box-shadow: var(--shadow-soft);
      font-size: 0.82rem;
    }

    .form-grid {
      margin-top: 0.7rem;
      display: grid;
      gap: 0.7rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .field label {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 0.18rem;
      display: block;
    }

    input,
    textarea,
    select {
      width: 100%;
      border-radius: 10px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(255, 255, 255, 0.96);
      padding: 0.5rem 0.6rem;
      font-size: 0.8rem;
      color: var(--text-main);
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
                  background var(--transition-fast);
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: rgba(99, 102, 241, 0.9);
      box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.6);
      background: #fff;
    }

    textarea {
      min-height: 90px;
      resize: vertical;
    }

    .form-footnote {
      font-size: 0.7rem;
      color: var(--text-muted);
      margin-top: 0.35rem;
    }

    .error-msg {
      font-size: 0.7rem;
      color: #b91c1c;
      margin-top: 0.15rem;
      display: none;
    }

    .has-error .error-msg {
      display: block;
    }

    .has-error input,
    .has-error textarea {
      border-color: #f97373;
    }

    /* FOOTER */

    footer {
      border-top: 1px solid rgba(148, 163, 184, 0.4);
      padding: 1.3rem 0 1.7rem;
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-top: 1.2rem;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    /* REVEAL */

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 320ms ease-out, transform 320ms ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* REDUCE MOTION */

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
      }
    }

    /* ====== ANIMASI INTERAKTIF TAMBAHAN ====== */

    /* Glow lembut mengikuti gerakan mouse */
    .cursor-aura {
      position: fixed;
      width: 80px;
      height: 80px;
      border-radius: 999px;
      pointer-events: none;
      background: radial-gradient(circle, rgba(129, 140, 248, 0.33), transparent 60%);
      mix-blend-mode: soft-light;
      opacity: 0;
      transform: translate3d(-50%, -50%, 0);
      transition: opacity 180ms ease-out;
      z-index: 999;
    }

    @media (max-width: 840px), (prefers-reduced-motion: reduce) {
      .cursor-aura {
        display: none;
      }
    }

    /* Sedikit optimasi untuk elemen yang akan di-tilt */
    .hero-panel,
    .screen-frame {
      will-change: transform;
    }

    /* PULSE untuk hotspot aktif di screenshot */
    @keyframes hotspotPulse {
      0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 10px 20px rgba(248, 113, 113, 0.7);
      }
      70% {
        transform: translate(-50%, -50%) scale(1.12);
        box-shadow: 0 14px 26px rgba(248, 113, 113, 0.95);
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 10px 20px rgba(248, 113, 113, 0.7);
      }
    }

    .hotspot.active {
      animation: hotspotPulse 1.15s ease-out infinite;
    }

    /* === MODE RAMAH MATA UNTUK VISITOR 80-AN KE BAWAH === */

    /* Sedikit naikkan kontras teks abu-abu */
    :root {
      --text-muted: #4b5563; /* lebih gelap & jelas */
    }

    /* Besarkan base font-size untuk semua rem */
    html {
      font-size: 17px; /* ~17px */
    }

    @media (min-width: 1024px) {
      html {
        font-size: 18px; /* di layar besar naik lagi sedikit */
      }
    }

    /* Line-height lebih lega supaya teks gampang di-scan */
    body {
      line-height: 1.7;
    }

    /* TEKS KONTEN UTAMA DIPERBESAR */
    .hero-subtitle,
    .section-subtitle,
    .product-desc,
    .feature-text,
    .pricing-desc,
    .pricing-note,
    details p,
    .contact-card p,
    .form-footnote {
      font-size: 1rem;
    }

    /* NAVBAR & BRAND LEBIH JELAS */
    .nav-links {
      font-size: 1rem;
    }

    .brand-text-main {
      font-size: 1.1rem;
    }

    .brand-text-sub {
      font-size: 0.9rem;
    }

    /* TOMBOL LEBIH BESAR & ENAK DIKLIK */
    .btn {
      font-size: 0.95rem;
      padding: 0.65rem 1.4rem;
    }

    /* BADGE, CHIP, PILL, META DIBESARKAN MIN 0.9rem */
    .pill-badge,
    .product-tag,
    .pill,
    .hero-panel-badge,
    .chip,
    .hero-metric,
    .hero-timeline,
    .feature-pointer-text,
    .feature-pointer-number,
    .pricing-name,
    .pricing-features li,
    details summary,
    .footer-links,
    footer {
      font-size: 0.9rem;
    }

    .pill-badge,
    .product-tag,
    .pill,
    .hero-panel-badge,
    .chip {
      padding: 0.28rem 0.8rem;
    }

    /* FORM: LABEL & ISI LEBIH BESAR */
    .field label {
      font-size: 0.95rem;
    }

    input,
    textarea,
    select {
      font-size: 0.95rem;
      padding: 0.6rem 0.75rem;
    }

    input::placeholder,
    textarea::placeholder {
      font-size: 0.95rem;
      color: #9ca3af;
    }

    /* Paragraf di kartu diberi line-height lebih lega */
    .product-desc,
    .feature-text,
    .pricing-desc,
    details p {
      line-height: 1.7;
    }

    /* === SCREENSHOT GALLERY === */
    .screenshot-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 1rem;
    }

    .screenshot-item {
      background: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .screenshot-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .screenshot-item img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 16/10;
    }

    .screenshot-item p {
      padding: 1rem;
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0;
      text-align: center;
      background: white;
    }

    /* Tabs untuk screenshot */
    .showcase-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      padding: 0.5rem;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
    }

    .showcase-tab {
      flex: 1;
      min-width: 120px;
      padding: 0.7rem 1rem;
      background: white;
      border: 2px solid transparent;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }

    .showcase-tab:hover {
      background: #f9fafb;
      border-color: #e5e7eb;
    }

    .showcase-tab.active {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border-color: #667eea;
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .shot-panel {
      display: none;
    }

    .shot-panel.active {
      display: block;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .showcase-tabs {
        flex-direction: column;
      }

      .showcase-tab {
        min-width: 100%;
      }

      .screenshot-item img {
        aspect-ratio: 4/3;
      }
    }

    /* Large screens - 2 columns */
    @media (min-width: 1024px) {
      .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    /* Extra large screens - 3 columns for some sections */
    @media (min-width: 1400px) {
      .screenshot-gallery {
        grid-template-columns: repeat(3, 1fr);
      }
    }