:root {
      --bg-primary: #373b3e;
      --bg-secondary: #2d3033;
      --bg-card: #424649;
      --bg-card-hover: #4a4f52;
      --border: #555a5e;
      --accent: #86cecb;
      --accent-dark: #137a7f;
      --accent-pink: #e12885;
      --text-primary: #bec8d1;
      --text-light: #ffffff;
      --text-secondary: #9aa3ab;
    }

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

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      min-height: 100vh;
      line-height: 1.6;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    @media (max-width: 768px) {
      .container { padding: 0 16px; }
    }
    .navbar .container {
      padding-left: 24px;
      padding-right: 24px;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .navbar .container {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
      }
    }
    @media (max-width: 480px) {
      .navbar .container {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
      }
      .navbar-inner {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
      }
      .navbar .btn-primary {
        margin-right: 0;
        margin-left: auto;
      }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }
    .fade-up { animation: fadeUp 0.6s ease-out forwards; opacity: 0; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    /* Logo - Shared Style */
    .logo { 
      display: flex; 
      align-items: center; 
      gap: 10px; 
      font-weight: 800; 
      font-size: 22px; 
      color: var(--text-light); 
      letter-spacing: -0.5px;
      margin: 0;
    }

    /* Navbar */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(55, 59, 62, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
    }
    .navbar-inner { 
      display: flex; 
      align-items: center; 
      justify-content: space-between; 
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    .navbar .logo { 
      flex-shrink: 0;
    }
    .navbar .btn-primary {
      flex-shrink: 0;
      margin: 0;
    }
    /* Language switcher – tombol ganti bahasa di header */
    .lang-switcher {
      display: inline-flex;
      align-items: stretch;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px;
      gap: 0;
    }
    .lang-switcher .lang-switch {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      text-decoration: none;
      border-radius: 999px;
      transition: color 0.2s, background 0.2s;
    }
    .lang-switcher .lang-switch:hover {
      color: var(--text-primary);
    }
    .lang-switcher .lang-switch.active {
      background: var(--accent);
      color: var(--bg-primary);
    }
    .lang-switcher .lang-switch.active:hover {
      background: var(--accent-dark);
      color: var(--text-light);
    }
    @media (max-width: 768px) {
      .logo { font-size: 18px; }
      .logo img { width: 40px !important; height: 40px !important; }
      .navbar .logo { flex-shrink: 0; }
      .navbar .btn-primary {
        padding: 10px 14px; font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }
      .navbar .btn-primary svg { width: 16px; height: 16px; margin: 0; }
    }
    @media (max-width: 480px) {
      .navbar .btn-primary {
        padding: 0;
        font-size: 0;
        width: 44px;
        height: 44px;
        min-width: 44px;
        max-width: 44px;
        margin: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        gap: 0;
        line-height: 0;
        position: relative;
      }
      .navbar .btn-primary svg { 
        width: 20px; 
        height: 20px; 
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
      .navbar .btn-primary > *:not(svg) {
        display: none !important;
        visibility: hidden;
        width: 0;
        height: 0;
        overflow: hidden;
      }
    }
    .logo-icon {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .btn {
      padding: 12px 28px; border-radius: 10px; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: all 0.3s; border: none;
      display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    }
    .navbar .btn-primary {
      gap: 8px;
    }
    .btn-primary { background: var(--accent-pink); color: var(--text-light); }
    .btn-primary:hover { background: #f03a95; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(225, 40, 133, 0.35); }
    .btn-secondary { background: var(--bg-card); color: var(--text-light); border: 1px solid var(--border); }
    .btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--accent); }
    .btn-outline { background: transparent; color: var(--text-light); border: 2px solid var(--accent); }
    .btn-outline:hover { background: var(--accent); color: var(--bg-primary); }
    .btn-accent { background: var(--accent-dark); color: var(--text-light); }
    .btn-accent:hover { background: #169499; transform: translateY(-2px); }

    /* Hero */
    .hero {
      padding: 160px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 900px;
      background: radial-gradient(circle, rgba(134, 206, 203, 0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: 50px;
      background: rgba(134, 206, 203, 0.15); color: var(--accent);
      font-size: 13px; font-weight: 600; margin-bottom: 24px;
      border: 1px solid rgba(134, 206, 203, 0.3);
    }
    .hero-badge span { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
    .hero-title {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800; letter-spacing: -1px;
      line-height: 1.15; margin-bottom: 24px; color: var(--text-light);
    }
    .hero-title .highlight {
      background: linear-gradient(135deg, var(--accent), var(--accent-pink));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subtitle {
      font-size: 17px; color: var(--text-secondary);
      max-width: 650px; margin: 0 auto 20px; line-height: 1.7;
    }
    .hero-target {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
      margin-bottom: 40px;
    }
    .hero-target-item {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 16px; border-radius: 8px;
      background: var(--bg-card); font-size: 13px; color: var(--text-primary);
      border: 1px solid var(--border);
    }
    .hero-target-item svg { color: var(--accent); }
    .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* Stats */
    .stats-bar {
      display: flex; justify-content: center; gap: 48px; margin-top: 60px;
      padding: 32px; background: var(--bg-secondary); border-radius: 16px;
      border: 1px solid var(--border);
    }
    .stat-item { text-align: center; }
    .stat-value { font-size: 28px; font-weight: 800; color: var(--accent); }
    .stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
    @media (max-width: 600px) { .stats-bar { flex-direction: column; gap: 20px; } }

    /* Section */
    .section { padding: 100px 0; }
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-title { font-size: 32px; font-weight: 800; color: var(--text-light); margin-bottom: 16px; }
    .section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 550px; margin: 0 auto; }

    /* Pricing */
    .pricing-wrapper { display: flex; flex-direction: column; gap: 32px; }
    .pricing-main {
      background: linear-gradient(135deg, rgba(19, 122, 127, 0.2) 0%, rgba(134, 206, 203, 0.1) 100%);
      border: 2px solid var(--accent-dark);
      border-radius: 24px; padding: 48px; position: relative; overflow: hidden;
    }
    .pricing-main::before {
      content: attr(data-badge);
      position: absolute; top: 20px; right: -35px;
      background: var(--accent-pink); color: white;
      padding: 0 50px; font-size: 11px; font-weight: 700;
      transform: rotate(45deg);
      z-index: 1;
      line-height: 25px;
      height: 25px;
      display: inline-block;
    }
    .pricing-main-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    @media (max-width: 900px) { .pricing-main-inner { grid-template-columns: 1fr; } }
    @media (max-width: 768px) {
      .pricing-main { padding: 32px 20px; }
      .pricing-main::before {
        top: 15px; right: -45px;
        padding: 0 40px; font-size: 9px;
        transform: rotate(45deg);
        line-height: 21px;
        height: 21px;
      }
      .pricing-main-inner { 
        gap: 32px; 
        display: flex;
        flex-direction: column;
      }
      .pricing-main-left { 
        padding-right: 0; 
        width: 100%; 
        order: 1;
      }
      .pricing-main-left h3 { 
        padding-right: 70px; 
        font-size: 24px;
        line-height: 1.2;
      }
      .pricing-main-left .price { 
        width: 100%;
        max-width: 100%;
      }
      .pricing-main-inner > div:last-child {
        order: 2;
      }
    }
    .pricing-main-left h3 { font-size: 28px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
    .pricing-promo-badge {
      display: inline-block; padding: 6px 14px; border-radius: 20px;
      background: linear-gradient(135deg, var(--accent-pink), #f03a95);
      color: white; font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .pricing-main-left .price { margin: 24px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
    @media (max-width: 768px) {
      .pricing-main-left .price { 
        align-items: flex-start; 
        margin-left: 0;
        padding-left: 0;
      }
      .pricing-main-left .price .amount-old,
      .pricing-main-left .price .pricing-promo-badge,
      .pricing-main-left .price .price-new-wrapper {
        width: auto;
        max-width: 100%;
      }
    }
    .pricing-main-left .price .amount { font-size: 48px; font-weight: 800; color: var(--accent); }
    .pricing-main-left .price .amount-old { 
      font-size: 28px; font-weight: 600; color: var(--text-secondary); 
      text-decoration: line-through; 
      order: 1;
    }
    .pricing-main-left .price .pricing-promo-badge {
      order: 2;
      margin-bottom: 0;
    }
    .pricing-main-left .price .price-new-wrapper {
      display: flex; align-items: baseline; gap: 8px;
      order: 3;
      margin-top: -15px;
    }
    .pricing-main-left .price .amount-new { 
      font-size: 48px; font-weight: 800; color: var(--accent-pink); 
    }
    .pricing-main-left .price .period { font-size: 16px; color: var(--text-secondary); }
    .pricing-main-left .tagline { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; }
    .pricing-features { list-style: none; }
    .pricing-features li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 12px 0; font-size: 14px; color: var(--text-primary);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .pricing-features li:last-child { border-bottom: none; }
    .pricing-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
    .pricing-features li div { flex: 1; line-height: 1.6; }
    .pricing-features li div strong { color: var(--text-light); display: block; margin-bottom: 4px; }
    .pricing-limit { margin-top: 24px; padding: 16px; background: rgba(255,255,255,0.05); border-radius: 12px; }
    .pricing-limit-title { 
      font-size: 13px; 
      font-weight: 700; 
      color: var(--text-light); 
      background: linear-gradient(135deg, var(--accent-pink), #f03a95);
      padding: 8px 12px; 
      border-radius: 8px; 
      margin-bottom: 12px; 
      display: inline-flex; 
      align-items: center; 
      gap: 6px; 
    }
    .pricing-limit ul { list-style: none; font-size: 13px; color: var(--text-secondary); }
    .pricing-limit ul li { padding: 4px 0; }
    .pricing-limit-mobile { display: none; }
    @media (max-width: 768px) {
      .pricing-limit-desktop { display: none; }
      .pricing-limit-mobile { 
        display: block; 
        margin-top: 32px;
        order: 3;
      }
    }

    /* Timeline Info */
    .timeline-info {
      background: linear-gradient(135deg, rgba(134, 206, 203, 0.1) 0%, rgba(19, 122, 127, 0.15) 100%);
      border: 1px solid var(--accent);
      border-radius: 16px; padding: 24px;
      margin-top: 32px; display: flex; align-items: flex-start; gap: 16px;
    }
    .timeline-info-icon {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      background: rgba(134, 206, 203, 0.2); color: var(--accent);
      display: flex; align-items: center; justify-content: center;
    }
    .timeline-info-content h4 {
      font-size: 16px; font-weight: 700; color: var(--text-light);
      margin-bottom: 6px;
    }
    .timeline-info-content p {
      font-size: 14px; color: var(--text-primary); line-height: 1.6;
      margin: 0;
    }
    @media (max-width: 768px) {
      .timeline-info { padding: 20px; gap: 12px; }
      .timeline-info-icon { width: 40px; height: 40px; }
      .timeline-info-content h4 { font-size: 15px; }
      .timeline-info-content p { font-size: 13px; }
    }

    /* Add-ons */
    .addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
    @media (max-width: 900px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .addons-grid { grid-template-columns: 1fr; } }
    .addon-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 16px; padding: 24px; transition: all 0.3s;
    }
    .addon-card:hover { border-color: var(--accent); transform: translateY(-4px); }
    .addon-card.sekali { border-color: var(--accent-pink); background: rgba(225, 40, 133, 0.05); }
    .addon-card.sekali:hover { border-color: var(--accent-pink); transform: translateY(-4px); }
    .addon-icon {
      width: 48px; height: 48px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; background: rgba(134, 206, 203, 0.15); color: var(--accent);
    }
    .addon-card.sekali .addon-icon { background: rgba(225, 40, 133, 0.15); color: var(--accent-pink); }
    .addon-title { font-size: 16px; font-weight: 700; color: var(--text-light); margin-bottom: 8px; }
    .addon-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
    .addon-prices { font-size: 13px; color: var(--text-primary); }
    .addon-prices div { padding: 6px 0; border-bottom: 1px solid var(--border); }
    .addon-prices div:last-child { border-bottom: none; }
    .addon-prices strong { color: var(--accent); }
    .addon-card.sekali .addon-prices strong { color: var(--accent-pink); }
    .addon-tag {
      display: inline-block; padding: 4px 10px; border-radius: 6px;
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .addon-tag.yearly { background: rgba(134, 206, 203, 0.2); color: var(--accent); }
    .addon-tag.once { 
      background: linear-gradient(135deg, var(--accent-pink), #f03a95); 
      color: var(--text-light); 
      font-weight: 800;
      box-shadow: 0 2px 8px rgba(225, 40, 133, 0.3);
    }

    /* Why Section */
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    @media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
    .why-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 16px; padding: 28px; display: flex; gap: 16px;
      transition: all 0.3s;
    }
    .why-card:hover { border-color: var(--accent); }
    .why-icon {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(134, 206, 203, 0.15); color: var(--accent);
    }
    .why-title { font-size: 16px; font-weight: 700; color: var(--text-light); margin-bottom: 6px; }
    .why-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, var(--accent-dark) 0%, rgba(134, 206, 203, 0.3) 100%);
      border: 1px solid var(--accent);
      border-radius: 32px; padding: 60px; text-align: center;
      margin: 40px 0;
    }
    .cta-title { font-size: 28px; font-weight: 800; color: var(--text-light); margin-bottom: 16px; }
    .cta-subtitle { font-size: 16px; color: var(--text-primary); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

    /* Simulasi */
    .simulasi {
      background: var(--bg-secondary); border: 1px solid var(--border);
      border-radius: 20px; padding: 32px; margin-top: 60px;
    }
    .simulasi-title { font-size: 18px; font-weight: 700; color: var(--text-light); margin-bottom: 20px; text-align: center; }
    .simulasi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    @media (max-width: 768px) { .simulasi-grid { grid-template-columns: 1fr; } }
    .simulasi-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 12px; padding: 20px; text-align: center;
    }
    .simulasi-card h4 { font-size: 14px; font-weight: 600; color: var(--text-light); margin-bottom: 12px; }
    .simulasi-card ul { list-style: none; font-size: 12px; color: var(--text-secondary); margin-bottom: 16px; }
    .simulasi-card ul li { padding: 4px 0; }
    .simulasi-card .total { font-size: 24px; font-weight: 800; color: var(--accent-pink); }
    .simulasi-card .total span { font-size: 12px; color: var(--text-secondary); font-weight: 400; }
    .simulasi-recommend-badge {
      display: inline-block; padding: 4px 10px; border-radius: 12px;
      background: linear-gradient(135deg, var(--accent-pink), #f03a95);
      color: white; font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.5px; margin-left: 8px; vertical-align: middle;
    }
    .simulasi-recommend-badge.top {
      display: inline-block; margin-left: 0; margin-bottom: 12px; text-align: center;
    }

    /* Footer */
    .footer {
      border-top: 1px solid var(--border);
      padding: 40px 0; text-align: center;
    }
    .footer-text { font-size: 14px; color: var(--text-secondary); }
    .footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 16px; }
    .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--accent); }

    /* WhatsApp Floating Button */
    .wa-float {
      position: fixed; bottom: 20px; right: 20px;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25D366; color: white;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000; transition: all 0.3s;
      text-decoration: none;
    }
    .wa-float:hover {
      transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
    .wa-float svg { width: 32px; height: 32px; }
    @media (max-width: 768px) {
      .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
      .wa-float svg { width: 28px; height: 28px; }
    }