    :root {
      --navy: #f3f8fc;
      --navy2: #eef5fa;
      --slate: #ffffff;
      --orange: #d9480a;
      --orange2: #ff8c42;
      --blue: #0089ba;
      --magenta: #d42b6a;
      --text: #1a2b3d;
      --muted: #5e7588;
      --white: #0e2a40;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: var(--navy); color: var(--text); font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.7; }

    /* NAV */
    nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(242,101,34,0.15); padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { height: 36px; }
    .nav-logo span { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
    .nav-links { display: flex; gap: 24px; list-style: none; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta { background: var(--orange); color: #fff; padding: 8px 18px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: background .2s; white-space: nowrap; }
    .nav-cta:hover { background: var(--orange2); }

    /* HERO */
    .hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; padding: 80px 24px 60px; }
    .hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #eaf6fc 0%, #ffffff 45%, #fdf1ec 100%); }
    .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,137,186,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,137,186,.07) 1px, transparent 1px); background-size: 60px 60px; }
    .hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(217,72,10,.15) 0%, transparent 70%); right: -100px; top: -100px; }
    .hero-glow2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(0,137,186,.10) 0%, transparent 70%); left: -50px; bottom: -50px; }
    .hero-content { position: relative; z-index: 1; max-width: 720px; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(217,72,10,.15); border: 1px solid rgba(242,101,34,0.3); color: var(--orange); padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
    .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }
    h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.4rem, 6vw, 3.8rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
    h1 .accent { color: var(--orange); }
    .hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-bottom: 32px; }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all .2s; box-shadow: 0 4px 20px rgba(242,101,34,0.3); }
    .btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,101,34,0.4); }
    .btn-secondary { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(0,137,186,.25); color: var(--white); padding: 13px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all .2s; }
    .btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
    .hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
    .stat { display: flex; flex-direction: column; }
    .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); }
    .stat-num span { color: var(--orange); }
    .stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

    /* BREADCRUMB */
    .breadcrumb { background: var(--navy2); padding: 12px 24px; font-size: 0.82rem; color: var(--muted); }
    .breadcrumb a { color: var(--muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--orange); }
    .breadcrumb span { color: var(--orange); margin: 0 6px; }

    /* SECTIONS */
    section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
    .section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
    h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
    h2 .accent { color: var(--orange); }
    .section-desc { color: var(--muted); max-width: 600px; margin-bottom: 48px; }

    /* AREA CARDS */
    .area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
    .area-card { background: var(--slate); border: 1px solid rgba(0,137,186,.15); border-radius: 10px; padding: 18px 16px; display: flex; align-items: center; gap: 12px; transition: all .2s; }
    .area-card:hover { border-color: var(--orange); background: rgba(242,101,34,0.06); transform: translateY(-2px); }
    .area-icon { width: 36px; height: 36px; background: rgba(242,101,34,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .area-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }

    /* WHY */
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
    .why-card { background: var(--slate); border: 1px solid rgba(0,137,186,.12); border-radius: 12px; padding: 28px 24px; position: relative; overflow: hidden; transition: border-color .2s; }
    .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--magenta)); opacity: 0; transition: opacity .2s; }
    .why-card:hover { border-color: rgba(242,101,34,0.3); }
    .why-card:hover::before { opacity: 1; }
    .why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(217,72,10,.15); line-height: 1; margin-bottom: 12px; }
    .why-title { font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .why-desc { font-size: 0.88rem; color: var(--muted); }

    /* PACKAGES */
    .pkg-wrap { background: var(--navy2); border-radius: 0; padding: 72px 0; margin: 0; }
    .pkg-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
    .pkg-card { background: var(--slate); border: 1px solid rgba(0,137,186,.14); border-radius: 14px; padding: 28px 24px; transition: all .2s; }
    .pkg-card.featured { border-color: var(--orange); background: rgba(242,101,34,0.05); }
    .pkg-badge { display: inline-block; background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; margin-bottom: 14px; }
    .pkg-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .pkg-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--orange); margin-bottom: 20px; }
    .pkg-price small { font-size: 0.85rem; color: var(--muted); font-family: 'Barlow', sans-serif; font-weight: 400; }
    .pkg-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
    .pkg-features li { font-size: 0.88rem; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
    .pkg-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .pkg-btn { display: block; text-align: center; background: var(--orange); color: #fff; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: background .2s; }
    .pkg-btn:hover { background: var(--orange2); }
    .pkg-btn.outline { background: transparent; border: 1.5px solid rgba(0,137,186,.25); color: var(--white); }
    .pkg-btn.outline:hover { border-color: var(--orange); background: rgba(242,101,34,0.08); color: var(--orange); }

    /* FAQ */
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--slate); border: 1px solid rgba(0,137,186,.12); border-radius: 10px; overflow: hidden; }
    .faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.95rem; font-weight: 600; padding: 18px 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
    .faq-q:hover { color: var(--orange); }
    .faq-icon { font-size: 1.1rem; color: var(--orange); transition: transform .3s; flex-shrink: 0; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-a p { padding: 0 20px 18px; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-item.open .faq-a { max-height: 200px; }

    /* CTA BANNER */
    .cta-banner { background: linear-gradient(135deg, var(--slate) 0%, #eef5fa 100%); border: 1px solid rgba(242,101,34,0.2); border-radius: 16px; padding: 48px 40px; text-align: center; position: relative; overflow: hidden; }
    .cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(242,101,34,0.06) 0%, transparent 70%); }
    .cta-banner h2 { position: relative; margin-bottom: 12px; }
    .cta-banner p { position: relative; color: var(--muted); max-width: 480px; margin: 0 auto 28px; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
    .btn-wa { background: #25d366; color: #fff; display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all .2s; }
    .btn-wa:hover { background: #1db954; transform: translateY(-2px); }

    /* FOOTER */
    footer { background: #eef5fa; border-top: 1px solid rgba(0,137,186,.12); padding: 40px 24px 24px; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
    .footer-logo img { height: 40px; margin-bottom: 10px; }
    .footer-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color .2s; }
    .footer-links a:hover { color: var(--orange); }
    .footer-copy { max-width: 1100px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid rgba(0,137,186,.12); font-size: 0.8rem; color: var(--muted); text-align: center; }

    /* DIVIDER */
    .divider { height: 1px; background: rgba(0,137,186,.10); max-width: 1100px; margin: 0 auto; }

    /* RESPONSIVE */
    @media (max-width: 640px) {
      nav { padding: 0 16px; }
      .nav-links { display: none; }
      h1 { font-size: 2.2rem; }
      .hero-stats { gap: 20px; }
      .cta-banner { padding: 32px 20px; }
      .footer-inner { grid-template-columns: 1fr; }
    }

  /* === GALERI PROYEK === */
  .galeri-section { padding: 60px 0; background: var(--navy2); }
  .galeri-section .sec-title { text-align: center; margin-bottom: 8px; }
  .galeri-section .sec-sub { text-align: center; color: var(--muted); margin-bottom: 36px; font-size: .9rem; }
  .galeri-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  .galeri-card { border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,137,186,.15); background: var(--slate); box-shadow: 0 4px 16px rgba(14,42,64,.06); transition: transform .25s, box-shadow .25s; }
  .galeri-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(14,42,64,.12); border-color: rgba(217,72,10,.3); }
  .galeri-card img { width: 100%; height: 200px; object-fit: cover; object-position: top; display: block; }
  .galeri-card-body { padding: 14px 16px; }
  .galeri-badge { display: inline-block; background: rgba(0,137,186,.1); border: 1px solid rgba(0,137,186,.22); color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; }
  .galeri-label { font-size: .85rem; font-weight: 600; color: var(--white); line-height: 1.45; }
  @media(max-width:600px){ .galeri-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .galeri-card img { height: 150px; } }
/* === HERO 2 KOLOM (Karawang) === */
.hero-two-col-wrap .hero-two-col{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;padding:110px 24px 80px;max-width:1100px;margin:0 auto}
.hero-photo-col{position:relative}
.hero-photo-frame{position:relative}
.hero-proof-badge{position:absolute;bottom:-16px;left:-16px;background:#fff;border:1px solid rgba(0,137,186,.2);border-radius:12px;padding:12px 16px;display:flex;align-items:flex-start;gap:10px;box-shadow:0 8px 28px rgba(14,42,64,.14);max-width:280px}
@media(max-width:768px){
  .hero-two-col-wrap .hero-two-col{grid-template-columns:1fr;gap:32px;padding:90px 20px 60px}
  .hero-photo-col{order:-1}
  .hero-proof-badge{position:relative;bottom:auto;left:auto;margin-top:12px}
}
