/* ─── LAYOUT ─── */
p{line-height:1.85;}
  .container { margin: 0 auto; padding: 0 3%; }
  section { padding: 96px 0; }
  @media(max-width:768px){ section { padding: 64px 0; } }

  /* ─── LABEL CHIP ─── */
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: #1A1A18; color: #FAF8F4;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 20px;
  }
  .chip-accent { background: #FFF0EB; color: #E8552A; }
  .chip-sage { background: #EBF3EE; color: #4A7C59; }
  .chip-gold { background: #FBF5E6; color: #C9A84C; }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem;
    padding: 16px 32px; border-radius: 100px; cursor: pointer; border: none;
    text-decoration: none; transition: all 0.25s ease;
  }
  .btn-primary {
    background: #1A1A18; color: #FAF8F4;
    box-shadow: 0 4px 16px rgba(26,26,24,0.2);
  }
  .btn-primary:hover { background: #E8552A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,85,42,0.3); }
  .btn-outline {
    background: transparent; color: #1A1A18;
    border: 2px solid #E8E4DC;
  }
  .btn-outline:hover { border-color: #1A1A18; }
  .btn-accent {
    background: #E8552A; color: white;
    box-shadow: 0 4px 20px rgba(232,85,42,0.35);
  }
  .btn-accent:hover { background: #C9401A; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,85,42,0.4); }
  .btn-lg { padding: 20px 44px; font-size: 1.1rem; }

  /* ─── SECTION DIVIDER ─── */
  .divider { height: 1px; background: #E8E4DC; margin: 0 24px; }

  /* ══════════════════════════════════════════════
     HERO
  ══════════════════════════════════════════════ */
  #hero {
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
    background:linear-gradient(160deg, #ff395c 0%, #ffffff 45%, #f0faf6 100%);
  }
  #hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,85,42,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  @media(max-width:900px){ .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #4A7C59;
    box-shadow: 0 0 0 3px rgba(74,124,89,0.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(74,124,89,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(74,124,89,0.08); }
  }
  .hero-eyebrow span { font-size: 0.85rem; font-weight: 500; color: #1A1A1899; }

  .hero-title { margin-bottom: 24px; }
  .hero-title em {
    font-style: italic; color: #E8552A;
    background: linear-gradient(135deg, #E8552A, #F0803A);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero-subtitle { font-size: 1.1rem; line-height:1.85; margin-bottom: 40px; }

  .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-social-proof {
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid #E8E4DC;
    display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  }
  .proof-stat strong { font-family: 'Satoshi', serif; font-size: 1.9rem; display: block;color:#000; }
  .proof-stat span { font-size: 0.82rem; color: #1A1A1899; }
  .proof-divider { width: 1px; height: 36px; background: #E8E4DC; }

  .hero-visual { position: relative; }
  .hero-img-wrap {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 16px 64px rgba(26,26,24,0.12);
    aspect-ratio: 5/5; max-height: 540px;
  }
  .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .hero-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: white; border-radius: 16px;
    padding: 16px 20px; box-shadow: 0 4px 32px rgba(26,26,24,0.08);
    display: flex; align-items: center; gap: 12px;
  }
  @media(max-width:480px){ .hero-badge { left: 0; bottom: 12px; } }
  .hero-badge-icon { width: 42px; height: 42px; border-radius: 12px; background: #FFF0EB; display:grid; place-items:center; flex-shrink:0; }
  .hero-badge-text strong { font-weight: 600; font-size: 0.95rem; display: block; }
  .hero-badge-text span { font-size: 0.78rem; color: #1A1A1899; }

  .hero-float {
    position: absolute; top: 24px; right: -16px;
    background: #4A7C59; color: white;
    border-radius: 12px; padding: 12px 16px; font-size: 0.8rem; font-weight: 600;
    box-shadow: 0 8px 20px rgba(74,124,89,0.3);
  }
  @media(max-width:480px){ .hero-float { display:none; } }

  /* ══════════════════════════════════════════════
     TRUST LOGOS / CLIENTS
  ══════════════════════════════════════════════ */
  #clients {
    padding: 40px 0;
    background: #FFFFFF;
    border-top: 1px solid #E8E4DC; border-bottom: 1px solid #E8E4DC;
  }
  .clients-label { text-align: center; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #1A1A184D; margin-bottom: 28px; }
  .clients-row { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
  .client-logo { opacity: 0.4; transition: opacity 0.2s; font-family: 'DM Serif Display', serif; font-size: 1.1rem; }
  .client-logo:hover { opacity: 0.7; }

  /* ══════════════════════════════════════════════
     PROFESIONAL
  ══════════════════════════════════════════════ */
  #profesional { background: #FFFFFF; }
  .pro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  @media(max-width:900px){ .pro-grid { grid-template-columns: 1fr; gap:48px; } }

  .pro-img-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .pro-img-card {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 32px rgba(26,26,24,0.08);
  }
  .pro-img-card:first-child { grid-row: span 2; border-radius: 20px; }
  .pro-img-card img { width: 100%; height: 100%; object-fit: cover; display:block; }
  .pro-img-card:not(:first-child) { aspect-ratio: 1; }

  .pro-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
  .pro-feature { display: flex; gap: 16px; align-items: flex-start; }
  .pro-feature-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink:0; display:grid; place-items:center; }
  .pro-feature-icon.orange { background: #FFF0EB; }
  .pro-feature-icon.green { background: #EBF3EE; }
  .pro-feature-icon.gold { background: #FBF5E6; }
  .pro-feature h3 { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
  .pro-feature p { font-size: 0.9rem; margin:0; }

  /* ══════════════════════════════════════════════
     ALASAN / WHY US
  ══════════════════════════════════════════════ */
  #alasan { background: #FAF8F4; }
  .alasan-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .alasan-header p { margin-top: 16px; }

  .alasan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media(max-width:900px){ .alasan-grid { grid-template-columns: 1fr; } }

  .alasan-card {
    background: white; border: 1px solid #E8E4DC;
    border-radius: 20px; padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
  }
  .alasan-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: #E8552A; transform: scaleX(0); transition: transform 0.3s;
  }
  .alasan-card:hover { transform: translateY(-4px); box-shadow: 0 4px 32px rgba(26,26,24,0.08); }
  .alasan-card:hover::before { transform: scaleX(1); }
  .alasan-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem; color: #E8E4DC;
    line-height: 1; margin-bottom: 16px;
  }
  .alasan-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center; margin-bottom: 20px;
  }
  .alasan-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
  .alasan-card p { font-size: 0.92rem; }

  /* ══════════════════════════════════════════════
     HASIL / RESULTS
  ══════════════════════════════════════════════ */
  #hasil {
    background: #1A1A18;
    color: #FAF8F4;
  }
  #hasil h2, #hasil h3 { color: #FAF8F4; }
  #hasil p { color: rgba(250,248,244,0.6); }

  .hasil-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .hasil-header p { color: rgba(250,248,244,0.6); margin-top: 16px; }

  .hasil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media(max-width:768px){ .hasil-grid { grid-template-columns: 1fr; gap: 16px; } }

  .hasil-card {
    border: 1px solid rgba(250,248,244,0.1);
    border-radius: 20px; padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s;
  }
  .hasil-card:hover { border-color: rgba(250,248,244,0.3); }
  .hasil-card-accent {
    position: absolute; top: 0; right: 0;
    width: 120px; height: 120px;
    border-radius: 50%; opacity: 0.06;
    transform: translate(30px,-30px);
  }
  .hasil-card:nth-child(1) .hasil-card-accent { background: #E8552A; }
  .hasil-card:nth-child(2) .hasil-card-accent { background: #C9A84C; }
  .hasil-card:nth-child(3) .hasil-card-accent { background: #4A7C59; }

  .hasil-big {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1; color: #FAF8F4; margin-bottom: 8px;
  }
  .hasil-big span { color: #E8552A; }
  .hasil-card h3 { color: #FAF8F4; font-size: 1.3rem; margin-bottom: 12px; }
  .hasil-card p { font-size: 0.9rem; }

  .hasil-img { margin-top: 64px; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
  .hasil-img img { width: 100%; height: 340px; object-fit: cover; display:block; }
  @media(max-width:600px){ .hasil-img img { height: 220px; } }

  /* ══════════════════════════════════════════════
     STATISTIK / FAKTA
  ══════════════════════════════════════════════ */
  #statistik { background: #FFFFFF; }
  .stat-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .stat-header p { margin-top: 16px; }

  .stat-main { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  @media(max-width:900px){ .stat-main { grid-template-columns: 1fr; gap: 48px; } }

  .stat-bars { display: flex; flex-direction: column; gap: 20px; }
  .stat-bar-item {}
  .stat-bar-label {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
  }
  .stat-bar-label span:first-child { font-weight: 500; font-size: 0.95rem; }
  .stat-bar-label span:last-child { font-weight: 700; font-size: 1rem; color: #E8552A; }
  .stat-bar-track {
    height: 10px; background: #E8E4DC; border-radius: 100px; overflow: hidden;
  }
  .stat-bar-fill {
    height: 100%; border-radius: 100px;
    background: linear-gradient(90deg, #E8552A, #F0803A);
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
    width: 0;
  }
  .stat-bar-fill.animated { }

  .stat-insight { background: #FAF8F4; border-radius: 20px; padding: 40px; }
  .stat-insight h3 { margin-bottom: 16px; font-size: 1.4rem; }
  .stat-insight p { font-size: 0.95rem; margin-bottom: 20px; }

  .insight-items { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
  .insight-item { display: flex; gap: 12px; align-items: center; }
  .insight-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .insight-item span { font-size: 0.9rem; color: #1A1A1899; }
  .insight-item strong { color: #1A1A18; }

  .stat-source { font-size: 0.75rem; color: #1A1A184D; margin-top: 8px; }

  /* ══════════════════════════════════════════════
     PROSES
  ══════════════════════════════════════════════ */
  #proses { background: #FAF8F4; }
  .proses-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .proses-header p { margin-top: 16px; }

  .proses-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  @media(max-width:900px){ .proses-steps { grid-template-columns: 1fr 1fr; gap: 24px; } }
  @media(max-width:540px){ .proses-steps { grid-template-columns: 1fr; } }

  .proses-step {
    background: white; border: 1px solid #E8E4DC;
    padding: 36px 28px;
    position: relative;
  }
  .proses-step:first-child { border-radius: 20px 0 0 20px; }
  .proses-step:last-child { border-radius: 0 20px 20px 0; }
  @media(max-width:900px){
    .proses-step { border-radius: 16px !important; }
  }
  .proses-step:not(:last-child)::after {
    content: '';
    position: absolute; right: -1px; top: 50%;
    width: 20px; height: 20px;
    background: white;
    border-top: 1px solid #E8E4DC; border-right: 1px solid #E8E4DC;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
  }
  @media(max-width:900px){ .proses-step:not(:last-child)::after { display:none; } }

  .proses-step:hover { background: #FFF0EB; border-color: #E8552A; }
  .proses-step:hover .proses-num { color: #E8552A; }

  .proses-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem; color: #E8E4DC; line-height: 1; margin-bottom: 12px;
    transition: color 0.3s;
  }
  .proses-icon { margin-bottom: 16px; }
  .proses-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .proses-step p { font-size: 0.88rem; }

  .proses-bottom {
    margin-top: 48px; background: white; border: 1px solid #E8E4DC;
    border-radius: 20px; padding: 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  }
  @media(max-width:768px){ .proses-bottom { grid-template-columns: 1fr; gap: 24px; } }
  .proses-bottom h3 { font-size: 1.5rem; margin-bottom: 12px; }
  .proses-bottom p { font-size: 0.95rem; }
  .proses-bottom-img { border-radius: 16px; overflow: hidden; }
  .proses-bottom-img img { width: 100%; height: 360px; object-fit: cover; display:block; }

  /* ══════════════════════════════════════════════
     DATA DRIVEN / LAYANAN
  ══════════════════════════════════════════════ */
  #layanan { background: #FFFFFF; }
  .layanan-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .layanan-header p { margin-top: 16px; }

  .layanan-main { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  @media(max-width:900px){ .layanan-main { grid-template-columns: 1fr; } }

  .layanan-list { display: flex; flex-direction: column; gap: 24px; }
  .layanan-item {
    display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
    padding: 28px; border-radius: 16px; border: 1px solid #E8E4DC;
    transition: all 0.25s;
  }
  .layanan-item:hover { border-color: #E8552A; background: #FFF0EB; transform: translateX(4px); }
  .layanan-item-icon { width: 56px; height: 56px; border-radius: 14px; display:grid; place-items:center; flex-shrink:0; }
  .layanan-item h3 { font-size: 1.05rem; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
  .layanan-item p { font-size: 0.88rem; margin: 0; }

  .layanan-visual { position: relative; }
  .layanan-img { border-radius: 20px; overflow: hidden; box-shadow: 0 4px 32px rgba(26,26,24,0.08); }
  .layanan-img img { width: 100%; height: 380px; object-fit: cover; display:block; }

  .layanan-metric {
    position: absolute; bottom: -16px; right: -16px;
    background: white; border-radius: 16px; padding: 20px 24px;
    box-shadow: 0 4px 32px rgba(26,26,24,0.08); min-width: 180px;
  }
  @media(max-width:540px){ .layanan-metric { right: 0; bottom: 12px; } }
  .layanan-metric-val { font-family: 'DM Serif Display', serif; font-size: 2rem; color: #4A7C59; }
  .layanan-metric-label { font-size: 0.8rem; color: #1A1A1899; margin-top: 2px; }

  .data-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .data-tag {
    font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 100px;
    border: 1.5px solid #E8E4DC; color: #1A1A1899;
    transition: all 0.2s;
  }
  .data-tag:hover { border-color: #E8552A; color: #E8552A; background: #FFF0EB; }

  /* ══════════════════════════════════════════════
     PRICING
  ══════════════════════════════════════════════ */
  #pricing { background: #FAF8F4; }
  .pricing-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .pricing-header p { margin-top: 16px; }

  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media(max-width:900px){ .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

  .pricing-card {
    background: white; border: 1px solid #E8E4DC; border-radius: 24px;
    padding: 40px 32px;
    position: relative; transition: all 0.3s;
  }
  .pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 64px rgba(26,26,24,0.12); }
  .pricing-card.featured {
    background: #1A1A18; border-color: #1A1A18;
    transform: scale(1.04);
  }
  .pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
  @media(max-width:900px){ .pricing-card.featured { transform: none; } }
  .pricing-card.featured h3,
  .pricing-card.featured .price-amount,
  .pricing-card.featured .price-period { color: #FAF8F4; }
  .pricing-card.featured p { color: rgba(250,248,244,0.6); }
  .pricing-card.featured .feat-item { border-color: rgba(250,248,244,0.1); }
  .pricing-card.featured .feat-item span { color: rgba(250,248,244,0.7); }
  .pricing-card.featured .feat-check { color: #C9A84C; }

  .popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: #E8552A; color: white;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px;
    white-space: nowrap;
  }

  .pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
  .pricing-card > p { font-size: 0.9rem; margin-bottom: 28px; }
  .price-amount { font-family: 'Satoshi', serif; font-size: 2.6rem; line-height: 1; }
  .price-period { font-size: 0.85rem; color: #1A1A1899; margin-bottom: 32px; display:block; margin-top:4px; }

  .feat-list { list-style: none; margin-bottom: 32px; display:flex; flex-direction:column; gap: 12px; }
  .feat-item { display:flex; gap:10px; align-items:flex-start; padding-bottom: 12px; border-bottom: 1px solid #E8E4DC; }
  .feat-item:last-child { border:none; padding:0; }
  .feat-check { flex-shrink:0; color: #4A7C59; margin-top:1px; }
  .feat-item span { font-size: 0.9rem; color: #1A1A1899; }

  .pricing-note { text-align: center; margin-top: 32px; font-size: 0.85rem; color: #1A1A184D; }


  /* ══════════════════════════════════════════════
     CTA
  ══════════════════════════════════════════════ */
  #cta {
    background: #1A1A18;
    padding: 120px 0;
    text-align: center;
    position: relative; overflow: hidden;
  }
  #cta::before, #cta::after {
    content: '';
    position: absolute; border-radius: 50%;
    pointer-events: none;
  }
  #cta::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,85,42,0.12) 0%, transparent 70%);
    top: -200px; left: -100px;
  }
  #cta::after {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(74,124,89,0.1) 0%, transparent 70%);
    bottom: -150px; right: -50px;
  }

  .cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
  #cta h2 { color: #FAF8F4; margin-bottom: 16px; }
  #cta p { color: rgba(250,248,244,0.6); font-size: 1.1rem; margin-bottom: 48px; }

  .cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

  .cta-contact-row {
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(250,248,244,0.1);
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    align-items: center;
  }
  .cta-contact-item { display: flex; gap: 8px; align-items:center; }
  .cta-contact-item span { font-size: 0.9rem; color: rgba(250,248,244,0.5); }
  .cta-contact-item a { color: #FAF8F4; font-weight: 500; text-decoration: none; font-size: 0.9rem; }
  .cta-contact-item a:hover { color: #E8552A; }


  /* ══════════════════════════════════════════════
     ANIMATIONS
  ══════════════════════════════════════════════ */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ══════════════════════════════════════════════
     RESPONSIVE FIXES
  ══════════════════════════════════════════════ */
  @media(max-width:600px){
    .btn-lg { padding: 16px 28px; font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-cta { flex-direction: column; }
  }