*,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --navy: #080d1a;
      --navy-mid: #0e1525;
      --navy-light: #182038;
      --accent: #e8ff47;
      --accent-dim: #c8df1a;
      --cyan: #00d4ff;
      --white: #f0f4fc;
      --gray: #7a869a;
      --gray-light: #b8c4d4;
      --card-bg: #101825;
      --card-hover: #141f30;
      --border: rgba(255, 255, 255, 0.07);
      --border-accent: rgba(232, 255, 71, 0.2);
      --font: 'Inter', sans-serif;
      --banner-h: 40px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--banner-h);
    }

    body.no-scroll {
      overflow: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }

    /* PROMO BANNER */
    .promo-banner {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: linear-gradient(90deg, var(--accent) 0%, #f0ff70 100%);
      color: var(--navy);
      z-index: 200;
      min-height: var(--banner-h);
      height: auto;
      display: flex;
      align-items: center;
      padding: 6px 0;
    }

    .promo-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      width: 100%;
      padding: 0 44px 0 16px;
    }

    .promo-text {
      font-size: 13px;
      font-weight: 500;
      white-space: normal;
      text-align: center;
      line-height: 1.4;
    }

    .promo-highlight {
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .promo-cta {
      background: var(--navy);
      color: var(--accent);
      padding: 5px 14px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      font-size: 12px;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .promo-cta:hover {
      background: #0f1525;
      transform: translateY(-1px);
    }

    .promo-close {
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      font-size: 20px;
      color: var(--navy);
      opacity: 0.6;
      line-height: 1;
      padding: 4px 8px;
      transition: opacity 0.2s;
    }

    .promo-close:hover {
      opacity: 1;
    }

    /* TYPOGRAPHY */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font);
      line-height: 1.15;
    }

    .label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .label::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 2px;
      background: var(--accent);
      flex-shrink: 0;
    }

    /* LAYOUT */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    section {
      position: relative;
      z-index: 1;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 15px 30px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      border: none;
      white-space: nowrap;
    }

    .btn-sm {
      padding: 11px 22px;
      font-size: 13px;
    }

    .btn-lg {
      font-size: 16px;
      padding: 18px 40px;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(232, 255, 71, 0.25);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .btn svg {
      transition: transform 0.2s;
    }

    .btn:hover svg {
      transform: translateX(4px);
    }

    /* HEADER */
    header {
      position: fixed;
      top: var(--banner-h);
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 0;
      transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, box-shadow 0.3s;
    }

    header.scrolled {
      background: rgba(8, 13, 26, 0.92);
      backdrop-filter: blur(24px);
      padding: 14px 0;
      box-shadow: 0 1px 0 var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-family: var(--font);
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .logo span {
      color: var(--accent);
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 28px;
    }

    nav ul a {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-light);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }

    nav ul a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--accent);
      transition: width 0.25s;
    }

    nav ul a:hover {
      color: var(--white);
    }

    nav ul a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-shrink: 0;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* DRAWER */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 150;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s, visibility 0.35s;
      backdrop-filter: blur(4px);
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(320px, 88vw);
      background: var(--navy-mid);
      border-left: 1px solid var(--border);
      z-index: 160;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
      overflow-y: auto;
    }

    .drawer.active {
      transform: translateX(0);
    }

    /* DRAWER HEADER FIX — padding top biar tidak tertutup banner */
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      padding-top: calc(var(--banner-h) + 14px);
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .drawer-close {
      background: none;
      border: none;
      color: var(--gray-light);
      font-size: 28px;
      cursor: pointer;
      line-height: 1;
      padding: 4px;
      transition: color 0.2s;
    }

    .drawer-close:hover {
      color: var(--white);
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      padding: 16px 0;
      flex: 1;
    }

    .drawer-link {
      font-size: 20px;
      font-weight: 700;
      color: var(--gray-light);
      text-decoration: none;
      padding: 16px 28px;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s, background 0.2s;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer-link::after {
      content: '→';
      font-size: 16px;
      opacity: 0.4;
    }

    .drawer-link:hover {
      color: var(--accent);
      background: rgba(232, 255, 71, 0.04);
    }

    .drawer-link:hover::after {
      opacity: 1;
    }

    .drawer-footer {
      padding: 24px 28px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 20px;
      flex-shrink: 0;
    }

    .drawer-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .drawer-contact a {
      font-size: 13px;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .drawer-contact a:hover {
      color: var(--accent);
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 90px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-eyebrow {
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: clamp(36px, 5vw, 54px);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 24px;
      line-height: 1.1;
    }

    .hero-title .highlight {
      color: var(--accent);
    }

    .hero-desc {
      font-size: 17px;
      color: var(--gray);
      max-width: 460px;
      margin-bottom: 40px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero-stats {
      display: flex;
      align-items: center;
      margin-top: 52px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }

    .stat-item {
      flex: 1;
    }

    .stat-divider {
      width: 1px;
      height: 40px;
      background: var(--border);
      flex-shrink: 0;
    }

    .stat-num {
      font-size: 26px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .stat-num span {
      color: var(--accent);
    }

    .stat-label {
      font-size: 12px;
      color: var(--gray);
      margin-top: 5px;
    }

    /* HERO VISUAL */
    .hero-visual {
      position: relative;
      height: 560px;
    }

    .hero-mockup {
      position: absolute;
      border-radius: 16px;
      margin-top: 55px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
    }

    .hero-mockup-main {
      width: 100%;
      top: 0;
      right: 0;
      background: var(--card-bg);
    }

    .mockup-bar {
      background: #0a1120;
      padding: 11px 14px;
      display: flex;
      align-items: center;
      gap: 7px;
      border-bottom: 1px solid var(--border);
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .mockup-dot:nth-child(1) {
      background: #ff5f57;
    }

    .mockup-dot:nth-child(2) {
      background: #febc2e;
    }

    .mockup-dot:nth-child(3) {
      background: #28c840;
    }

    .mockup-url {
      flex: 1;
      background: var(--navy-light);
      border-radius: 4px;
      height: 22px;
      margin: 0 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mockup-url-text {
      font-size: 10px;
      color: var(--gray);
    }

    .mockup-body {
      padding: 20px;
    }

    .mockup-hero-area {
      background: linear-gradient(135deg, #1a2540 0%, #0e1929 100%);
      border-radius: 8px;
      padding: 28px 20px;
      margin-bottom: 14px;
    }

    .mockup-hero-line {
      height: 7px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.12);
      margin-bottom: 9px;
    }

    .mockup-hero-line.accent {
      background: var(--accent);
      width: 60%;
    }

    .mockup-hero-line.short {
      width: 45%;
    }

    .mockup-hero-line.xshort {
      width: 28%;
      background: rgba(232, 255, 71, 0.3);
      height: 5px;
    }

    .mockup-btn-fake {
      background: var(--accent);
      display: inline-block;
      color: var(--navy);
      font-size: 8px;
      font-weight: 700;
      padding: 5px 12px;
      margin-top: 6px;
      border-radius: 3px;
    }

    .mockup-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .mockup-card {
      background: var(--navy-light);
      border-radius: 6px;
      padding: 12px;
      border: 1px solid var(--border);
    }

    .mockup-card-icon {
      width: 26px;
      height: 26px;
      border-radius: 5px;
      background: rgba(232, 255, 71, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      margin-bottom: 7px;
    }

    .mockup-card-line {
      height: 4px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.08);
      margin-bottom: 4px;
    }

    .mockup-card-line.w80 {
      width: 80%;
    }

    .mockup-card-line.w60 {
      width: 60%;
    }

    .hero-badge {
      position: absolute;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      backdrop-filter: blur(12px);
      animation: float 4.5s ease-in-out infinite;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .hero-badge-1 {
      bottom: 80px;
      left: -50px;
      animation-delay: 0s;
    }

    .hero-badge-2 {
      top: 36px;
      right: -24px;
      animation-delay: 2.2s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .badge-icon {
      width: 36px;
      height: 36px;
      background: rgba(232, 255, 71, 0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .badge-text strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
    }

    .badge-text small {
      color: var(--gray);
      font-size: 11px;
    }

    .hero-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(90px);
      opacity: 0.1;
    }

    .hero-glow-1 {
      width: 600px;
      height: 600px;
      background: var(--cyan);
      top: -120px;
      right: -120px;
    }

    .hero-glow-2 {
      width: 400px;
      height: 400px;
      background: var(--accent);
      bottom: -60px;
      left: 180px;
    }

    /* MARQUEE */
    .marquee-strip {
      background: var(--accent);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .marquee-track {
      display: flex;
      animation: marquee 26s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      display: inline-flex;
      color: var(--navy);
      align-items: center;
      gap: 20px;
      padding: 0 28px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .marquee-sep {
      opacity: 0.35;
      font-size: 16px;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ABOUT */
    #about {
      padding: 120px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .about-visual {
      position: relative;
    }

    .about-img-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .about-card-big {
      width: 100%;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 30px;
      overflow: hidden;
      position: relative;
    }

    .about-card-big::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
    }

    .about-card-small {
      width: 100%;
      background: var(--accent);
      border-radius: 20px;
      padding: 22px 28px;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .about-card-small .num {
      font-size: 44px;
      font-weight: 800;
      line-height: 1;
      flex-shrink: 0;
    }

    .about-card-small p {
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
    }

    .process-steps {
      margin-top: 18px;
    }

    .process-step {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 11px 0;
      border-bottom: 1px solid var(--border);
    }

    .process-step:last-child {
      border-bottom: none;
    }

    .step-num {
      font-size: 10px;
      font-weight: 700;
      color: var(--accent);
      min-width: 24px;
      padding-top: 3px;
      letter-spacing: 0.05em;
    }

    .step-content strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
    }

    .step-content span {
      font-size: 12px;
      color: var(--gray);
    }

    .about-content .label {
      margin-bottom: 20px;
    }

    .about-title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .about-desc {
      font-size: 15.5px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 36px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      background: rgba(232, 255, 71, 0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0;
      border: 1px solid rgba(232, 255, 71, 0.12);
    }

    .feature-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .feature-text span {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
    }

    /* SERVICES */
    #services {
      padding: 100px 0;
      background: linear-gradient(180deg, transparent 0%, rgba(14, 21, 37, 0.6) 100%);
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-title {
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 800;
      letter-spacing: -0.025em;
      margin: 16px 0;
    }

    .section-desc {
      font-size: 16px;
      color: var(--gray);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 36px 30px;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0% 0%, rgba(232, 255, 71, 0.05) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      background: var(--card-hover);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon-wrap {
      width: 56px;
      height: 56px;
      background: rgba(232, 255, 71, 0.08);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 24px;
      border: 1px solid rgba(232, 255, 71, 0.1);
      transition: background 0.3s;
    }

    .service-card:hover .service-icon-wrap {
      background: rgba(232, 255, 71, 0.15);
    }

    .service-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .service-card p {
      font-size: 13.5px;
      color: var(--gray);
      line-height: 1.72;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 20px;
    }

    .tag {
      font-size: 10.5px;
      font-weight: 600;
      padding: 4px 11px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--gray-light);
      letter-spacing: 0.06em;
    }

    /* PORTFOLIO */
    #portfolio {
      padding: 100px 0;
    }

    .portfolio-filters {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 52px;
    }

    .portfolio-filter {
      font-size: 13px;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: 30px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--gray);
      cursor: pointer;
      transition: all 0.2s;
      font-family: var(--font);
      letter-spacing: 0.02em;
    }

    .portfolio-filter:hover {
      border-color: var(--border-accent);
      color: var(--white);
    }

    .portfolio-filter.active {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--navy);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .portfolio-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    }

    .portfolio-card.hidden {
      display: none;
    }

    .portfolio-thumb {
      height: 200px;
      background: linear-gradient(135deg, var(--thumb-color-a) 0%, var(--thumb-color-b) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .portfolio-image{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .portfolio-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .portfolio-body {
      padding: 20px 22px 24px;
    }

    .portfolio-tag {
      font-size: 10.5px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .tag-lp {
      background: rgba(29, 158, 117, 0.15);
      color: #4ecfa0;
    }

    .tag-cp {
      background: rgba(55, 138, 221, 0.15);
      color: #6db8f5;
    }

    .tag-prop {
      background: rgba(239, 159, 39, 0.15);
      color: #f5bb6a;
    }

    .portfolio-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin: 0 0 8px;
      letter-spacing: -0.01em;
    }

    .portfolio-desc {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.7;
      margin: 0 0 16px;
    }

    .portfolio-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: gap 0.2s;
    }

    .portfolio-link:hover {
      gap: 8px;
    }

    .portfolio-more {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    .portfolio-more-dots {
      display: flex;
      gap: 5px;
      align-items: center;
    }

    .portfolio-more-dots span {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gray);
      opacity: 0.5;
    }

    .portfolio-more-text {
      font-size: 13px;
      color: var(--gray);
      font-style: italic;
      line-height: 1.5;
      text-align: right;
    }

    .portfolio-more-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-light);
      text-decoration: none;
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 30px;
      transition: all 0.2s;
    }

    .portfolio-more-link:hover {
      border-color: var(--border-accent);
      color: var(--accent);
      background: rgba(232, 255, 71, 0.05);
    }

    /* PACKAGES */
    #packages {
      padding: 100px 0;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 64px;
    }

    .pkg-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 38px 34px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }

    .pkg-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    }

    .pkg-card.featured {
      border-color: rgba(232, 255, 71, 0.35);
      background: linear-gradient(160deg, #1d2e10 0%, var(--card-bg) 55%);
    }

    .pkg-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dim));
    }

    .pkg-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--accent);
      color: var(--navy);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 5px 12px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-bottom: 18px;
      width: fit-content;
    }

    .pkg-name {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .pkg-desc {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .pkg-price {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      margin-bottom: 28px;
    }

    .pkg-currency {
      font-size: 18px;
      font-weight: 700;
      color: var(--gray);
      padding-bottom: 7px;
    }

    .pkg-amount {
      font-size: 44px;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .pkg-card.featured .pkg-amount {
      color: var(--accent);
    }

    .pkg-period {
      font-size: 13px;
      color: var(--gray);
      padding-bottom: 9px;
    }

    .pkg-price-custom {
      margin-bottom: 28px;
    }

    .pkg-amount-custom {
      display: inline-block;
      font-size: 26px;
      font-weight: 800;
      line-height: 1.25;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .pkg-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 24px;
    }

    .pkg-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
      flex: 1;
    }

    .pkg-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13.5px;
      color: var(--gray-light);
    }

    .pkg-features li .check {
      width: 20px;
      height: 20px;
      background: rgba(232, 255, 71, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 10px;
      color: var(--accent);
      font-weight: 800;
      margin-top: 2px;
    }

    .pkg-card.featured .pkg-features li .check {
      background: rgba(232, 255, 71, 0.18);
    }

    .pkg-btn {
      width: 100%;
      justify-content: center;
      margin-top: auto;
    }

    /* WHY US */
    #whyus {
      padding: 100px 0;
    }

    .whyus-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }

    .whyus-content .label {
      margin-bottom: 20px;
    }

    .whyus-title {
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 800;
      margin-bottom: 18px;
      letter-spacing: -0.02em;
    }

    .whyus-desc {
      font-size: 15.5px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 48px;
    }

    .reasons-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .reason-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 26px 22px;
      transition: border-color 0.3s, transform 0.3s;
    }

    .reason-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
    }

    .reason-num {
      font-size: 34px;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
      opacity: 0.7;
    }

    .reason-card h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .reason-card p {
      font-size: 12.5px;
      color: var(--gray);
      line-height: 1.65;
    }

    .whyus-visual {
      position: relative;
    }

    .metrics-panel {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 36px;
      position: relative;
      overflow: hidden;
    }

    .metrics-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
    }

    .metrics-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 28px;
    }

    .metrics-title span {
      color: var(--accent);
    }

    .metric-row {
      margin-bottom: 22px;
    }

    .metric-label {
      display: flex;
      justify-content: space-between;
      font-size: 12.5px;
      color: var(--gray-light);
      margin-bottom: 8px;
    }

    .metric-label strong {
      color: var(--accent);
      font-size: 13px;
    }

    .metric-bar {
      height: 7px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      overflow: hidden;
    }

    .metric-fill {
      height: 100%;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      animation: fillBar 1.6s ease forwards;
    }

    @keyframes fillBar {
      from {
        width: 0 !important;
      }
    }

    .service-promise {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    .promise-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(232, 255, 71, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .promise-text strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
    }

    .promise-text span {
      font-size: 12px;
      color: var(--gray);
    }

    /* GUARANTEE */
    #guarantee {
      padding: 100px 0;
      background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 34, 0.7) 100%);
    }

    .guarantee-content {
      max-width: 880px;
      margin: 0 auto;
    }

    .guarantee-main {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 48px;
      margin-bottom: 28px;
    }

    .guarantee-badge {
      text-align: center;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border);
    }

    .badge-icon-large {
      font-size: 60px;
      margin-bottom: 14px;
      line-height: 1;
    }

    .guarantee-badge h3 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--accent);
    }

    .guarantee-badge p {
      font-size: 15px;
      color: var(--gray);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.75;
    }

    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .guarantee-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px;
      background: rgba(232, 255, 71, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(232, 255, 71, 0.08);
      transition: border-color 0.3s;
    }

    .guarantee-item:hover {
      border-color: rgba(232, 255, 71, 0.2);
    }

    .guarantee-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(232, 255, 71, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-weight: 800;
      font-size: 14px;
      flex-shrink: 0;
    }

    .guarantee-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .guarantee-text span {
      font-size: 12.5px;
      color: var(--gray);
      line-height: 1.6;
    }

    .trust-note {
      text-align: center;
      padding: 28px 32px;
      background: rgba(232, 255, 71, 0.04);
      border-radius: 14px;
      border: 1px solid var(--border-accent);
    }

    .trust-note p {
      font-size: 15px;
      font-style: italic;
      color: var(--gray-light);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* FAQ */
    #faq {
      padding: 100px 0;
    }

    .faq-grid {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .faq-item.open {
      border-color: var(--border-accent);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      text-align: left;
      gap: 16px;
      color: var(--white);
      transition: background 0.2s;
    }

    .faq-question:hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .faq-question-text {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.45;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(232, 255, 71, 0.1);
      border: 1px solid rgba(232, 255, 71, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.25s;
      color: var(--accent);
    }

    .faq-icon svg {
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-item.open .faq-icon {
      background: rgba(232, 255, 71, 0.2);
    }

    .faq-item.open .faq-icon svg {
      transform: rotate(90deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 0 28px;
    }

    .faq-answer-inner {
      padding: 18px 0 22px;
      font-size: 14px;
      color: var(--gray);
      line-height: 1.8;
      border-top: 1px solid var(--border);
    }

    .faq-item.open .faq-answer {
      max-height: 400px;
    }

    /* CTA */
    #cta {
      padding: 120px 0;
    }

    .cta-inner {
      background: linear-gradient(135deg, #1c2e10 0%, #0e1c28 50%, #1a1428 100%);
      border: 1px solid var(--border-accent);
      border-radius: 28px;
      padding: 80px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(232, 255, 71, 0.07) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .cta-inner .label {
      justify-content: center;
      margin-bottom: 24px;
    }

    .cta-title {
      font-size: clamp(32px, 5vw, 60px);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

    .cta-title em {
      font-style: normal;
      color: var(--accent);
    }

    .cta-desc {
      font-size: 17px;
      color: var(--gray);
      max-width: 480px;
      margin: 0 auto 28px;
      line-height: 1.75;
    }

    .cta-bonus {
      background: rgba(232, 255, 71, 0.08);
      border: 1px solid var(--border-accent);
      border-radius: 10px;
      padding: 14px 22px;
      margin: 0 auto 32px;
      max-width: 580px;
      font-size: 14.5px;
      position: relative;
      z-index: 1;
    }

    .cta-bonus strong,
    .cta-bonus span {
      color: var(--accent);
    }

    .cta-bonus span {
      font-weight: 700;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .cta-note {
      font-size: 13px;
      color: var(--gray);
      margin-top: 22px;
      position: relative;
      z-index: 1;
    }

    .cta-note span {
      color: var(--accent);
      font-weight: 600;
    }

    /* FOOTER */
    footer {
      padding: 60px 0 36px;
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px;
      margin-bottom: 52px;
    }

    .footer-brand .logo {
      font-size: 22px;
      display: block;
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 13.5px;
      color: var(--gray);
      line-height: 1.75;
      max-width: 260px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--gray-light);
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .social-btn:hover {
      background: rgba(232, 255, 71, 0.1);
      border-color: var(--border-accent);
      color: var(--accent);
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .footer-col ul a {
      font-size: 13.5px;
      color: var(--gray-light);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 12.5px;
      color: var(--gray);
    }

    .footer-bottom span {
      color: var(--accent);
    }

    /* SCROLL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    /* ==========================================
       RESPONSIVE
    ========================================== */

    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-visual {
        height: 380px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .whyus-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .guarantee-grid {
        grid-template-columns: 1fr;
      }

      .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 768px) {
      :root {
        --banner-h: 60px;
      }

      .container {
        padding: 0 18px;
      }

      section {
        overflow-x: hidden;
      }

      /* Nav */
      nav,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      /* PROMO BANNER FIX */
      .promo-content {
        padding: 0 40px 0 12px;
        gap: 6px;
      }

      .promo-text {
        font-size: 11.5px;
      }

      .promo-cta {
        display: none;
      }

      .drawer-header {
        padding: 14px 24px;
        padding-top: calc(var(--banner-h) + 12px);
      }

      /* Hero */
      #hero {
        min-height: auto;
        padding: 100px 0 60px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .hero-title {
        font-size: clamp(26px, 8vw, 38px);
      }

      .hero-desc {
        font-size: 15px;
        max-width: 100%;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn {
        justify-content: center;
      }

      .hero-badge-1,
      .hero-badge-2 {
        display: none;
      }

      /* HERO VISUAL FIX — tidak kepotong di bawah */
      .hero-visual {
        height: auto;
      }

      .hero-mockup {
        position: relative;
        width: 100%;
      }

      .hero-mockup-main {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
      }

      /* HERO STATS FIX — 3 kolom horizontal */
      .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-top: 28px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
        align-items: start;
      }

      .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 6px;
        flex: unset;
      }

      .stat-item:not(:last-child) {
        border-right: 1px solid var(--border);
      }

      .stat-divider {
        display: none;
      }

      .stat-num {
        font-size: 17px;
      }

      .stat-label {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.35;
      }

      /* About */
      #about {
        padding: 72px 0;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      /* Services */
      #services {
        padding: 72px 0;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      /* Portfolio */
      #portfolio {
        padding: 72px 0;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-filters {
        gap: 6px;
        margin-bottom: 36px;
      }

      .portfolio-filter {
        font-size: 12px;
        padding: 7px 16px;
      }

      .section-title {
        font-size: clamp(24px, 7vw, 36px);
      }

      /* Packages */
      #packages {
        padding: 72px 0;
      }

      .packages-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .pkg-card {
        padding: 28px 22px;
      }

      .pkg-amount {
        font-size: 36px;
      }

      .pkg-amount-custom {
        font-size: 22px;
      }

      /* Why Us */
      #whyus {
        padding: 72px 0;
      }

      .whyus-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .reason-num {
        font-size: 26px;
      }

      .reason-card {
        padding: 18px 14px;
      }

      .reason-card h4 {
        font-size: 13px;
      }

      .reason-card p {
        font-size: 12px;
      }

      /* Guarantee */
      #guarantee {
        padding: 72px 0;
      }

      .guarantee-main {
        padding: 24px 18px;
      }

      .guarantee-grid {
        grid-template-columns: 1fr;
      }

      .guarantee-badge h3 {
        font-size: 20px;
      }

      .guarantee-badge p {
        font-size: 14px;
      }

      /* FAQ */
      #faq {
        padding: 72px 0;
      }

      .faq-question {
        padding: 16px 18px;
      }

      .faq-question-text {
        font-size: 14px;
      }

      .faq-answer {
        padding: 0 18px;
      }

      /* CTA */
      #cta {
        padding: 72px 0;
      }

      .cta-inner {
        padding: 44px 20px;
        border-radius: 20px;
      }

      .cta-title {
        font-size: clamp(24px, 7vw, 38px);
      }

      .cta-desc {
        font-size: 15px;
      }

      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-actions .btn {
        justify-content: center;
      }

      .btn-lg {
        font-size: 15px;
        padding: 16px 24px;
      }

      .cta-bonus {
        font-size: 13px;
        padding: 12px 16px;
      }

      /* FOOTER MOBILE — tampilkan brand saja */
      footer {
        padding: 40px 0 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 28px;
      }

      /* Sembunyikan kolom Layanan, Perusahaan, Kontak di mobile */
      .footer-col {
        display: none;
      }

      .footer-brand {
        display: block;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 24px;
      }

      .mockup-cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .packages-grid {
        max-width: 100%;
      }

      .reasons-grid {
        grid-template-columns: 1fr;
      }

      .about-card-small {
        flex-direction: row;
      }

      .about-card-small .num {
        font-size: 36px;
      }

      .metrics-panel {
        padding: 24px 20px;
      }

      .stat-num {
        font-size: 15px;
      }

      .stat-label {
        font-size: 9px;
      }
    }