:root {
      --white: #ffffff;
      --off-white: #f7f6f2;
      --light-gray: #f0eeea;
      --border: #e4e1da;
      --text: #1a1a2e;
      --text-mid: #3d3d5c;
      --text-muted: #8888a0;

      --blue: #1a2b6b;
      --blue-mid: #2a3f8f;
      --blue-light: #e8ecf8;
      --blue-pale: #f0f3fc;

      --orange: #f26522;
      --orange-dark: #d45510;
      --orange-light: #fff4ee;
      --orange-pale: #fef8f5;

      --serif: 'Libre Baskerville', Georgia, serif;
      --sans: 'Sora', sans-serif;

      --shadow-sm: 0 2px 8px rgba(26, 43, 107, 0.08);
      --shadow-md: 0 8px 32px rgba(26, 43, 107, 0.12);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 17px;
      /* Enlarged base font size for better readability */
    }

    body {
      background: var(--white);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 400;
      /* Increased from 300 to 400 for better clarity */
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Language Display Rules */
    html[lang="id"] .lang-en {
      display: none !important;
    }
    html[lang="en"] .lang-id {
      display: none !important;
    }
    html[lang="id"] .lang-id {
      display: inline;
    }
    html[lang="en"] .lang-en {
      display: inline;
    }

    /* ── NAV (Elite Floating Pill) ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      max-width: 1200px;
      margin: 1.5rem auto 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 2.5rem;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 100px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    }

    nav.scrolled {
      margin-top: 0.8rem;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 12px 32px rgba(26, 43, 107, 0.08);
      border: 1px solid rgba(228, 225, 218, 0.6);
      padding: 0.6rem 2.5rem;
    }

    .nav-logo {
      font-family: var(--sans);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: -0.02em;
    }

    .nav-logo span {
      color: var(--orange);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav-links a {
      color: var(--text-mid);
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -6px;
      left: 50%;
      background: var(--orange);
      transition: width 0.3s ease, left 0.3s ease;
      border-radius: 2px;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .nav-links a:hover::after {
      width: 100%;
      left: 0;
    }

    .nav-cta {
      background: var(--blue);
      color: var(--white);
      padding: 0.65rem 1.6rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 100px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(26, 43, 107, 0.15);
    }

    .nav-cta:hover {
      background: var(--orange);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(242, 101, 34, 0.25);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      padding: 8rem 3rem 5rem;
      position: relative;
      overflow: hidden;
    }

    /* Hero Mesh Background (Lumonata Style) */
    .hero-mesh {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
      background: #fdfdfd;
      /* Clean bright canvas */
    }

    .hero-mesh .blob {
      position: absolute;
      filter: blur(70px);
      border-radius: 50%;
      opacity: 0.8;
      animation: floatBlob 12s infinite alternate ease-in-out;
      mix-blend-mode: normal;
    }

    .blob-1 {
      width: 50vw;
      height: 50vw;
      max-width: 600px;
      max-height: 600px;
      background: rgba(99, 102, 241, 0.5);
      /* Indigo / Purple */
      top: -10%;
      left: -10%;
      animation-duration: 10s;
    }

    .blob-2 {
      width: 55vw;
      height: 55vw;
      max-width: 650px;
      max-height: 650px;
      background: rgba(236, 72, 153, 0.45);
      /* Pink */
      top: -20%;
      right: -10%;
      animation-duration: 14s;
      animation-delay: -2s;
    }

    .blob-3 {
      width: 45vw;
      height: 45vw;
      max-width: 550px;
      max-height: 550px;
      background: rgba(245, 158, 11, 0.5);
      /* Orange / Gold */
      bottom: -10%;
      left: -5%;
      animation-duration: 12s;
      animation-delay: -5s;
    }

    .blob-4 {
      width: 50vw;
      height: 50vw;
      max-width: 600px;
      max-height: 600px;
      background: rgba(45, 212, 191, 0.45);
      /* Teal / Cyan */
      bottom: -15%;
      right: 10%;
      animation-duration: 15s;
      animation-delay: -8s;
    }

    .blob-5 {
      width: 40vw;
      height: 40vw;
      max-width: 500px;
      max-height: 500px;
      background: rgba(59, 130, 246, 0.5);
      /* Bright Blue */
      top: 30%;
      left: 30%;
      animation-duration: 11s;
      animation-delay: -4s;
    }

    @keyframes floatBlob {
      0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
      }

      33% {
        transform: translate(25vw, 15vh) scale(1.2) rotate(45deg);
      }

      66% {
        transform: translate(-15vw, 25vh) scale(0.8) rotate(-45deg);
      }

      100% {
        transform: translate(15vw, -20vh) scale(1.1) rotate(90deg);
      }
    }

    .hero-left {
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      background: var(--orange-light);
      border: 1px solid rgba(242, 101, 34, 0.25);
      padding: 0.4rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 2rem;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      animation: blink 2s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--blue);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: riseUp 0.85s 0.15s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--orange);
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--text-mid);
      max-width: 460px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: riseUp 0.85s 0.3s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: riseUp 0.85s 0.45s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    @keyframes riseUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .btn-primary {
      display: inline-block;
      background: var(--orange);
      color: var(--white);
      padding: 0.9rem 2rem;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(242, 101, 34, 0.3);
    }

    .btn-secondary {
      display: inline-block;
      background: var(--blue);
      color: var(--white);
      padding: 0.9rem 2rem;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-secondary:hover {
      background: var(--blue-mid);
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-block;
      border: 1.5px solid var(--border);
      color: var(--text-mid);
      padding: 0.9rem 2rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .btn-hero-demo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      border: 2px solid var(--blue);
      color: var(--blue);
      padding: 0.9rem 1.8rem;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 12px rgba(26, 43, 107, 0.05);
      position: relative;
    }

    .btn-hero-demo:hover {
      background: var(--blue-pale);
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(26, 43, 107, 0.12);
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #ff3b30;
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
    }

    .live-dot::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ff3b30;
      border-radius: 50%;
      animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

    @keyframes pulse-ring {
      0% { transform: scale(.33); }
      80%, 100% { opacity: 0; }
    }

    .demo-tag {
      position: absolute;
      top: -12px;
      right: -10px;
      background: var(--orange);
      color: var(--white);
      font-size: 0.58rem;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 4px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
      pointer-events: none;
      animation: floatTag 3s ease-in-out infinite;
    }

    @keyframes floatTag {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    .hero-right {
      padding-left: 4rem;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: riseUp 0.85s 0.5s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .hero-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 1.5rem;
    }

    .hero-stat {
      background: var(--blue-pale);
      border: 1px solid var(--blue-light);
      border-radius: 4px;
      padding: 1.4rem;
    }

    .hero-stat-num {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .hero-stat-num span {
      color: var(--orange);
    }

    .hero-stat-label {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .hero-testimony {
      background: var(--orange-pale);
      border: 1px solid rgba(242, 101, 34, 0.15);
      border-left: 3px solid var(--orange);
      padding: 1.5rem;
      border-radius: 4px;
    }

    .hero-testimony p {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 0.75rem;
    }

    .hero-testimony cite {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
    }

    .hero-testimony cite span {
      color: var(--text-muted);
      font-weight: 400;
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--blue);
      padding: 0.85rem 0;
      overflow: hidden;
    }

    .ticker-track {
      display: flex;
      gap: 3rem;
      animation: scroll 28s linear infinite;
      white-space: nowrap;
    }

    .ticker-item {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .ticker-item::after {
      content: '◆';
      color: var(--orange);
      font-size: 0.4rem;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ── SHARED ── */
    section {
      padding: 6rem 3rem;
      position: relative;
    }

    section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(26, 43, 107, 0.1) 20%,
          var(--blue) 40%,
          var(--orange) 60%,
          rgba(242, 101, 34, 0.1) 80%,
          transparent 100%);
      opacity: 0.8;
      border-radius: 3px;
    }

    /* ── SECTION BACKGROUNDS ── */
    #layanan {
      background-color: var(--blue-pale);
    }

    #harga {
      background-color: var(--orange-pale);
    }

    #kontak {
      background-color: var(--blue-pale);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 1.2rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--blue);
      margin-bottom: 1.5rem;
    }

    .section-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--orange);
    }

    /* ── WHY ── */
    .why-section {
      background: var(--off-white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .why-sub {
      color: var(--text-mid);
      line-height: 1.85;
      font-size: 0.98rem;
      margin-bottom: 2rem;
    }

    .why-features {
      display: flex;
      flex-direction: column;
    }

    .why-feature {
      display: flex;
      gap: 1.25rem;
      padding: 1.4rem 0;
      border-top: 1px solid var(--border);
      align-items: flex-start;
    }

    .why-feature:last-child {
      border-bottom: 1px solid var(--border);
    }

    .why-feature-num {
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--orange);
      padding-top: 0.15rem;
      flex-shrink: 0;
      width: 24px;
    }

    .why-feature-title {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.3rem;
    }

    .why-feature-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── PIPELINE ── */
    .pipeline-section {
      background: var(--blue);
      color: var(--white);
    }

    .pipeline-section .section-label {
      color: var(--orange);
    }

    .pipeline-section .section-label::before {
      background: var(--orange);
    }

    .pipeline-section .section-title {
      color: var(--white);
    }

    .pipeline-section .section-title em {
      color: var(--orange);
    }

    .pipeline-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
      align-items: end;
    }

    .pipeline-sub {
      font-size: 0.98rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.85;
    }

    .pipeline-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      overflow: hidden;
    }

    .pipeline-step {
      background: rgba(255, 255, 255, 0.04);
      padding: 2.5rem 2rem;
      transition: background 0.3s;
      position: relative;
    }

    .pipeline-step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .pipeline-step:hover {
      background: rgba(255, 255, 255, 0.07);
    }

    .pipeline-step:hover::before {
      transform: scaleX(1);
    }

    .pipeline-step-num {
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.08);
      line-height: 1;
      margin-bottom: 0.75rem;
    }

    .pipeline-step-icon {
      font-size: 1.6rem;
      margin-bottom: 0.75rem;
    }

    .pipeline-step-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.5rem;
    }

    .pipeline-step-desc {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
    }

    /* ── SERVICES ── */
    .services-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 3rem;
    }

    .services-sub {
      font-size: 0.98rem;
      color: var(--text-mid);
      line-height: 1.85;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 2rem 1.75rem;
      border-radius: 4px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(26, 43, 107, 0.15);
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      display: block;
    }

    .service-tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.5rem;
    }

    .service-name {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 0.6rem;
      line-height: 1.25;
    }

    .service-desc {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1.25rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      transition: color 0.2s, gap 0.2s;
    }

    .service-link:hover {
      color: var(--orange);
      gap: 0.7rem;
    }

    /* ── PRICING ── */
    .pricing-section {
      background: var(--off-white);
    }

    .pricing-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 3.5rem;
    }

    .pricing-sub {
      font-size: 0.98rem;
      color: var(--text-mid);
      line-height: 1.85;
    }

    .pricing-note {
      font-size: 0.8rem;
      color: var(--text-mid);
      background: var(--blue-pale);
      border-left: 3px solid var(--blue);
      padding: 1rem 1.25rem;
      line-height: 1.6;
      border-radius: 0 4px 4px 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .pricing-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.5rem 2rem;
      transition: box-shadow 0.25s;
    }

    .pricing-card:hover {
      box-shadow: var(--shadow-md);
    }

    .pricing-card.featured {
      background: var(--blue);
      border-color: var(--blue);
    }

    .pricing-plan {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .pricing-card.featured .pricing-plan {
      color: rgba(255, 255, 255, 0.55);
    }

    .pricing-badge {
      display: inline-block;
      background: var(--orange);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      border-radius: 100px;
      margin-bottom: 0.75rem;
    }

    .pricing-price {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    .pricing-card.featured .pricing-price {
      color: var(--white);
    }

    .pricing-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 2rem;
    }

    .pricing-card.featured .pricing-desc {
      color: rgba(255, 255, 255, 0.65);
    }

    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 1.5rem;
    }

    .pricing-card.featured .pricing-divider {
      background: rgba(255, 255, 255, 0.12);
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .pricing-features li {
      font-size: 0.82rem;
      color: var(--text-mid);
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      line-height: 1.5;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--orange);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pricing-card.featured .pricing-features li {
      color: rgba(255, 255, 255, 0.8);
    }

    /* ── ANIMATED WORKFLOW SECTION ── */
    .workflow-section {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .workflow-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
      align-items: end;
    }

    .workflow-sub {
      font-size: 0.98rem;
      color: var(--text-mid);
      line-height: 1.85;
    }

    .workflow-track-wrapper {
      position: relative;
    }

    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      position: relative;
      z-index: 2;
    }

    @media (max-width: 900px) {
      .workflow-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .workflow-grid {
        grid-template-columns: 1fr;
      }
    }

    .workflow-step {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2.2rem 1.8rem;
      position: relative;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 16px rgba(26, 43, 107, 0.04);
    }

    .workflow-step.active,
    .workflow-step:hover {
      border-color: var(--orange);
      transform: translateY(-6px);
      box-shadow: 0 14px 35px rgba(242, 101, 34, 0.14);
      background: linear-gradient(180deg, #ffffff 0%, var(--orange-pale) 100%);
    }

    .workflow-step-badge {
      font-family: var(--serif);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--blue-pale);
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      transition: color 0.3s ease;
    }

    .workflow-step.active .workflow-step-badge,
    .workflow-step:hover .workflow-step-badge {
      color: var(--orange);
    }

    .workflow-icon-box {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .workflow-step.active .workflow-icon-box {
      transform: scale(1.15) rotate(5deg);
    }

    .workflow-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }

    .workflow-desc {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.7;
      margin: 0;
    }

    /* Laser Connecting Bar */
    .workflow-laser-container {
      position: relative;
      height: 4px;
      background: var(--border);
      margin: 2.2rem 0;
      border-radius: 4px;
      overflow: hidden;
    }

    .workflow-laser-pulse {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 33.33%;
      background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, var(--blue) 100%);
      box-shadow: 0 0 12px var(--orange);
      border-radius: 4px;
      transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Interactive Live Monitor Panel */
    .workflow-monitor-panel {
      background: var(--blue);
      color: var(--white);
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 15px 40px rgba(26, 43, 107, 0.2);
      position: relative;
      overflow: hidden;
    }

    .monitor-content {
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .monitor-content.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .monitor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .monitor-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
    }

    .monitor-status {
      font-size: 0.75rem;
      color: #20bd5a;
      font-weight: 600;
    }

    /* Step 01 Flow Nodes */
    .arch-node-flow {
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding: 1rem 0;
      gap: 1rem;
    }

    @media (max-width: 600px) {
      .arch-node-flow {
        flex-direction: column;
      }
    }

    .arch-node {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 1rem 1.5rem;
      border-radius: 6px;
      text-align: center;
      transition: all 0.3s;
    }

    .arch-node.active {
      border-color: var(--orange);
      background: rgba(242, 101, 34, 0.15);
      box-shadow: 0 0 20px rgba(242, 101, 34, 0.2);
    }

    .node-icon {
      font-size: 1.5rem;
      display: block;
      margin-bottom: 0.3rem;
    }

    .node-label {
      font-size: 0.8rem;
      font-weight: 600;
    }

    .arch-line {
      flex: 1;
      height: 2px;
      background: rgba(255, 255, 255, 0.15);
      position: relative;
      overflow: hidden;
      min-width: 40px;
    }

    .arch-pulse {
      position: absolute;
      width: 40%;
      height: 100%;
      background: var(--orange);
      animation: pulseMove 1.5s infinite linear;
    }

    @keyframes pulseMove {
      0% { left: -40%; }
      100% { left: 100%; }
    }

    /* Step 02 Compiler */
    .compiler-box {
      font-family: 'Fira Code', 'Consolas', monospace;
      font-size: 0.82rem;
      background: rgba(0, 0, 0, 0.3);
      padding: 1.25rem;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .compiler-line {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .c-keyword { color: #ff79c6; }
    .c-func { color: #50fa7b; }
    .c-bool { color: #bd93f9; }
    .c-val { color: #f1fa8c; }
    .c-comment { color: #6272a4; font-style: italic; }
    .c-success { color: #50fa7b; font-weight: bold; margin-left: 0.5rem; }

    .sprint-progress-bar {
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      margin-top: 1rem;
      overflow: hidden;
    }

    .sprint-progress-fill {
      height: 100%;
      width: 100%;
      background: linear-gradient(90deg, var(--orange) 0%, #20bd5a 100%);
      animation: sprintFill 2.5s infinite ease-in-out;
    }

    @keyframes sprintFill {
      0% { width: 10%; }
      50% { width: 85%; }
      100% { width: 100%; }
    }

    /* Step 03 Metrics */
    .metrics-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      text-align: center;
    }

    @media (max-width: 600px) {
      .metrics-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .metric-item {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.25rem 0.8rem;
      border-radius: 6px;
    }

    .metric-val {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 0.3rem;
    }

    .metric-lbl {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.7);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* ── FAQ ── */
    .faq-section {
      background: var(--off-white);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
    }

    .faq-sticky {
      position: sticky;
      top: 8rem;
      align-self: start;
    }

    details {
      border-top: 1px solid var(--border);
    }

    summary {
      padding: 1.2rem 0;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--blue);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    .summary-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.2s;
    }

    details[open] .summary-icon {
      background: var(--orange);
      color: var(--white);
      transform: rotate(45deg);
    }

    details p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.8;
      padding-bottom: 1.25rem;
      padding-right: 2.5rem;
    }

    /* ── CONTACT ── */
    .contact-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--blue);
      letter-spacing: -0.02em;
    }

    .contact-title em {
      color: var(--orange);
      font-style: italic;
      font-weight: 400;
    }

    .contact-desc {
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.85;
      margin-top: 1.5rem;
    }

    .contact-highlights {
      display: flex;
      flex-direction: column;
      margin-top: 2rem;
    }

    .contact-highlight {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.9rem 0;
      border-top: 1px solid var(--border);
      font-size: 0.83rem;
      color: var(--text-mid);
    }

    .contact-highlight:last-child {
      border-bottom: 1px solid var(--border);
    }

    .contact-highlight-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--orange-light);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .contact-form {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .form-title {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 0.25rem;
    }

    .form-subtitle {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-field label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 0.8rem 1rem;
      font-family: var(--sans);
      font-size: 0.88rem;
      font-weight: 400;
      outline: none;
      border-radius: 2px;
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px var(--blue-pale);
    }

    .form-field textarea {
      height: 90px;
      resize: vertical;
    }

    .form-note {
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--blue);
      color: var(--white);
      padding: 3rem;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .footer-logo {
      font-family: var(--sans);
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .footer-logo span {
      color: var(--orange);
    }

    .footer-tagline {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
      max-width: 240px;
    }

    .footer-section-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .footer-links a {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--orange);
    }

    .footer-bottom {
      background: #141e52;
      padding: 1.2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ── DEMO MODAL ── */
    .demo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem;
      margin-top: 1.5rem;
    }

    .demo-option {
      background: var(--blue-pale);
      border: 1px solid var(--blue-light);
      padding: 1.5rem;
      border-radius: 12px;
      text-align: left;
      transition: all 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .demo-option:hover {
      border-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .demo-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .demo-title {
      font-weight: 700;
      color: var(--blue);
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }

    .demo-desc {
      font-size: 0.75rem;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .demo-btn {
      width: 100%;
      padding: 0.75rem;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .demo-btn-online {
      background: var(--blue);
      color: var(--white);
    }

    .demo-btn-offline {
      background: var(--orange);
      color: var(--white);
    }

    @media (max-width: 600px) {
      .demo-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(26, 26, 46, 0.6);
      backdrop-filter: blur(6px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      background: var(--white);
      width: 90%;
      max-width: 500px;
      border-radius: 8px;
      padding: 2.5rem;
      position: relative;
      transform: translateY(30px);
      transition: transform 0.3s ease;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .modal-close:hover {
      color: var(--orange);
    }

    /* ── FLOATING WA ── */
    .floating-wa {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
      z-index: 999;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .floating-wa:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    }

    .floating-wa svg {
      width: 32px;
      height: 32px;
    }

    /* ── LANG SWITCHER ── */
    html[lang="id"] .lang-en {
      display: none !important;
    }

    html[lang="en"] .lang-id {
      display: none !important;
    }

    /* ── LANG SWITCHER (Pill Style) ── */
    .lang-switcher-wrapper {
      display: flex;
      align-items: center;
      background: var(--blue-pale);
      border: 1px solid var(--blue-light);
      padding: 2px;
      border-radius: 100px;
      margin-right: 1.5rem;
    }

    .lang-btn {
      padding: 0.4rem 0.8rem;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      cursor: pointer;
      border: none;
      background: transparent;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .lang-btn.active {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(26, 43, 107, 0.2);
    }

    .lang-btn:hover:not(.active) {
      color: var(--blue);
    }

    /* ── PWA INSTALL BANNER ── */
    #installBanner {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%) translateY(150%);
      background: var(--blue);
      color: var(--white);
      padding: 1rem 1.5rem;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      z-index: 1000;
      box-shadow: 0 12px 40px rgba(26, 43, 107, 0.3);
      width: 90%;
      max-width: 400px;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    #installBanner.show {
      transform: translateX(-50%) translateY(0);
    }

    .install-content {
      flex: 1;
    }

    .install-title {
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 0.1rem;
    }

    .install-desc {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .install-actions {
      display: flex;
      gap: 0.5rem;
    }

    .btn-install {
      background: var(--orange);
      color: var(--white);
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      cursor: pointer;
    }

    .btn-close-install {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0 0.5rem;
    }
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav {
        padding: 1.1rem 1.5rem;
      }

      .nav-links {
        display: none;
      }

      section {
        padding: 4rem 1.5rem;
      }

      .hero {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
      }

      .hero-right {
        padding-left: 0;
        margin-top: 2.5rem;
      }

      .why-grid,
      .pipeline-header,
      .services-intro,
      .pricing-intro,
      .workflow-header,
      .faq-layout,
      .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .faq-sticky {
        position: static;
        top: auto;
      }

      .pipeline-steps,
      .services-grid,
      .pricing-grid,
      .workflow-grid {
        grid-template-columns: 1fr;
      }

      footer {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1.2rem 1.5rem;
      }
    }

    /* ── RABBITDECK SHOWCASE ── */
    .rabbitdeck-section {
      background: linear-gradient(135deg, #0f1a3e 0%, #1a2b6b 40%, #1e3278 70%, #162560 100%);
      color: var(--white);
      overflow: hidden;
      position: relative;
    }

    .rabbitdeck-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 120%;
      background: radial-gradient(circle, rgba(37, 211, 102, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .rabbitdeck-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, #25D366 30%, var(--orange) 60%, transparent 100%);
      opacity: 0.8;
      border-radius: 3px;
    }

    .rabbitdeck-section .section-label {
      color: #25D366;
    }

    .rabbitdeck-section .section-label::before {
      background: #25D366;
    }

    .rabbitdeck-section .section-title {
      color: var(--white);
    }

    .rabbitdeck-section .section-title em {
      color: #25D366;
    }

    .rd-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .rd-narrative h3 {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 700;
      color: #25D366;
      margin-bottom: 1rem;
      margin-top: 2rem;
    }

    .rd-narrative p {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .rd-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .rd-feature {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 1.2rem;
      transition: all 0.3s ease;
    }

    .rd-feature:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(37, 211, 102, 0.3);
      transform: translateY(-3px);
    }

    .rd-feature-icon {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    .rd-feature-title {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #25D366;
      margin-bottom: 0.3rem;
    }

    .rd-feature-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    .rd-screenshot {
      position: relative;
    }

    .rd-screenshot img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.4s ease;
    }

    /* ── LIGHT THEME VARIANT FOR RD LAYOUT ── */
    .product-section-light .rd-narrative p {
      color: var(--text-mid);
    }
    .product-section-light .rd-narrative h3 {
      color: var(--orange);
    }
    .product-section-light .rd-feature {
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .product-section-light .rd-feature:hover {
      background: var(--white);
      border-color: var(--orange);
    }
    .product-section-light .rd-feature-title {
      color: var(--blue);
    }
    .product-section-light .rd-feature-desc {
      color: var(--text-muted);
    }

    .rd-screenshot:hover img {
      transform: scale(1.02);
    }

    .rd-screenshot::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.2);
      filter: blur(20px);
      pointer-events: none;
    }

    .rd-screenshot::after {
      content: '';
      position: absolute;
      bottom: -15px;
      right: -15px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(242, 101, 34, 0.15);
      filter: blur(30px);
      pointer-events: none;
    }

    .rd-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #25D366;
      background: rgba(37, 211, 102, 0.12);
      border: 1px solid rgba(37, 211, 102, 0.25);
      padding: 0.35rem 0.85rem;
      border-radius: 100px;
      margin-bottom: 0.5rem;
    }

    .rd-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #25D366;
      animation: blink 2s infinite;
    }

    .rd-cta-group {
      display: flex;
      gap: 1rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .btn-wa-green {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: var(--white);
      padding: 0.9rem 1.8rem;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }

    .btn-wa-green:hover {
      background: #20bd5a;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    .btn-ghost-light {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      color: rgba(255, 255, 255, 0.8);
      padding: 0.9rem 1.8rem;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .btn-ghost-light:hover {
      border-color: #25D366;
      color: #25D366;
      transform: translateY(-3px);
    }

    @media (max-width: 900px) {
      .rd-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .rd-features {
        grid-template-columns: 1fr;
      }

      .rd-screenshot {
        order: -1;
      }
    }

    /* ── RABBIT ATTENDANCE SHOWCASE (AGNI Brand: Putih - Biru - Orange) ── */
    .attendance-section {
      background: linear-gradient(180deg, #ffffff 0%, var(--orange-pale) 100%);
      color: var(--text);
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .attendance-section::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 45%;
      height: 90%;
      background: radial-gradient(circle, rgba(242, 101, 34, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .attendance-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3.5rem;
      align-items: end;
    }

    .attendance-sub {
      font-size: 0.98rem;
      color: var(--text-mid);
      line-height: 1.85;
    }

    .attendance-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    @media (max-width: 992px) {
      .attendance-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .attendance-features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .attendance-features-grid {
        grid-template-columns: 1fr;
      }
    }

    .attendance-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem 1.75rem;
      transition: all 0.3s ease;
      position: relative;
      box-shadow: 0 4px 16px rgba(26, 43, 107, 0.04);
    }

    .attendance-card:hover {
      background: var(--white);
      border-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(242, 101, 34, 0.12);
    }

    .attendance-card-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      display: inline-block;
    }

    .attendance-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 0.75rem;
      line-height: 1.4;
    }

    .attendance-card-desc {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.7;
      margin: 0;
    }

    /* ── PROJECT PORTFOLIO SCROLLABLE CATALOG ── */
    .project-catalog {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem 1.8rem;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 20px rgba(26, 43, 107, 0.05);
      position: relative;
    }

    .project-catalog-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 1.25rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid var(--border);
    }

    .catalog-title {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.2;
    }

    .catalog-subtitle {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
    }

    .catalog-nav-buttons {
      display: flex;
      gap: 0.5rem;
    }

    .catalog-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--blue);
      font-size: 1.2rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      line-height: 1;
      padding: 0;
    }

    .catalog-btn:hover {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }

    .project-catalog-scroll {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-height: 420px;
      overflow-y: auto;
      padding-right: 0.4rem;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    /* Custom Slim Scrollbar */
    .project-catalog-scroll::-webkit-scrollbar {
      width: 5px;
      height: 5px;
    }

    .project-catalog-scroll::-webkit-scrollbar-track {
      background: var(--border);
      border-radius: 10px;
    }

    .project-catalog-scroll::-webkit-scrollbar-thumb {
      background: var(--orange);
      border-radius: 10px;
    }

    .portfolio-card {
      display: flex;
      gap: 1.2rem;
      align-items: center;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 1rem 1.1rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 2px 8px rgba(26, 43, 107, 0.03);
    }

    .portfolio-card:hover {
      border-color: var(--orange);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(242, 101, 34, 0.12);
    }

    .portfolio-card-img {
      width: 110px;
      height: 75px;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid var(--border);
      flex-shrink: 0;
    }

    .portfolio-card-tags {
      display: flex;
      gap: 0.4rem;
      align-items: center;
      margin-bottom: 0.3rem;
      flex-wrap: wrap;
    }

    .portfolio-tag-cat {
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
    }

    .portfolio-tag-prod {
      font-size: 0.58rem;
      padding: 0.12rem 0.4rem;
      background: rgba(242, 101, 34, 0.1);
      color: var(--orange);
      border-radius: 3px;
      font-weight: 700;
    }

    .portfolio-card-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 0.25rem;
    }

    .portfolio-card-desc {
      font-size: 0.78rem;
      color: var(--text-mid);
      line-height: 1.5;
      margin: 0;
    }

    /* Mobile & Tablet Responsive Horizontal Swipe Carousel */
    @media (max-width: 768px) {
      .project-catalog {
        padding: 1.5rem 1.2rem;
        min-width: 0;
        max-width: 100vw;
        overflow: hidden;
      }

      .project-catalog-scroll {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.8rem;
        gap: 1rem;
      }

      .portfolio-card {
        flex: 0 0 85%;
        min-width: 260px;
        scroll-snap-align: start;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
      }

      .portfolio-card-img {
        width: 100%;
        height: 140px;
      }
    }