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

    :root {
      --cream:      #FFF7EC;
      --cream-dark: #F5EDDF;
      --olive:      #556B2F;
      --olive-light:#6B8A3A;
      --olive-pale: #A8C68C;
      --orange:     #E48A3D;
      --orange-dark:#C9732A;
      --text-dark:  #2C2C2C;
      --text-mid:   #555;
      --text-light: #888;
      --white:      #FFFFFF;
      --shadow:     0 4px 24px rgba(85,107,47,0.10);
      --shadow-lg:  0 8px 40px rgba(85,107,47,0.15);
      --radius:     16px;
      --radius-sm:  10px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.6;
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,247,236,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(85,107,47,0.12);
      padding: 14px 5%;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
    .nav-logo .logo-img { height: 52px; width: auto; display: block; }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-left: auto;
    }
    .nav-links {
      display: none;
      align-items: center; gap: 30px;
      font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
    }
    .nav-links a { text-decoration: none; color: var(--text-mid); position: relative; padding: 4px 0; transition: color 0.2s; }
    .nav-links a:hover { color: var(--olive); }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; bottom: -2px;
      width: 0; height: 2px; background: var(--orange); transition: width 0.25s;
    }
    .nav-links a:hover::after { width: 100%; }
    @media (min-width: 900px) { .nav-links { display: flex; } }
    .nav-buttons { display: flex; align-items: center; gap: 14px; }
    .btn-ghost-nav {
      padding: 10px 22px; border-radius: 50px;
      border: 1.5px solid rgba(85,107,47,0.30);
      color: var(--olive); font-weight: 600; font-size: 0.88rem;
      text-decoration: none; background: transparent;
      transition: background 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .btn-ghost-nav:hover { background: rgba(85,107,47,0.08); border-color: var(--olive); }
    @media (max-width: 640px) { .btn-ghost-nav { display: none; } }
    .nav-cta {
      background: var(--orange); color: var(--white);
      padding: 10px 24px; border-radius: 50px;
      font-weight: 700; font-size: 0.88rem;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
      box-shadow: 0 8px 20px -8px rgba(228,138,61,0.6);
    }
    .nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

    /* ── PRE-LAUNCH BANNER ── */
    .pre-launch-banner {
      background: var(--olive);
      color: var(--white);
      text-align: center;
      padding: 10px 20px;
      font-size: 0.85rem; font-weight: 500;
      letter-spacing: 0.3px;
    }
    .pre-launch-banner span { color: var(--orange); font-weight: 700; }

    /* ── HERO + LEAD FORM ── */
    .hero-wrapper {
      background: var(--cream);
      overflow: hidden;
      position: relative;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0.75;
      z-index: 0;
    }
    .hero-scrim {
      position: absolute; inset: 0;
      background: linear-gradient(100deg,
        var(--cream) 0%,
        rgba(255,247,236,0.94) 26%,
        rgba(255,247,236,0.65) 46%,
        rgba(255,247,236,0.30) 64%,
        rgba(255,247,236,0.55) 100%);
      z-index: 1;
    }
    .hero {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      padding: 64px 5% 72px;
      max-width: 1280px; margin: 0 auto;
    }
    .hero-label {
      display: inline-block;
      background: rgba(85,107,47,0.10);
      color: var(--olive);
      padding: 6px 16px; border-radius: 50px;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.8px; text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    .hero h1 span { color: var(--olive); }
    .hero h1 em { color: var(--orange); font-style: normal; }
    .hero-sub {
      font-size: 1rem; color: var(--text-mid);
      margin-bottom: 28px; max-width: 480px;
    }
    .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
    .badge {
      background: var(--cream-dark);
      border: 1px solid rgba(85,107,47,0.18);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 0.82rem; font-weight: 500; color: var(--olive);
    }
    .badge .icon { margin-right: 5px; }

    /* Lead Form Card */
    .form-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(85,107,47,0.10);
    }
    .form-card .form-eyebrow {
      font-size: 0.78rem; font-weight: 600; color: var(--orange);
      text-transform: uppercase; letter-spacing: 0.8px;
      margin-bottom: 6px;
    }
    .form-card h2 {
      font-size: 1.45rem; font-weight: 700;
      color: var(--text-dark); margin-bottom: 6px;
    }
    .form-card p {
      font-size: 0.88rem; color: var(--text-mid);
      margin-bottom: 24px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-size: 0.85rem;
      font-weight: 600; color: var(--text-dark);
      margin-bottom: 6px;
    }
    .form-group input {
      width: 100%; padding: 13px 16px;
      border: 1.5px solid #E2D9CC;
      border-radius: var(--radius-sm);
      font-family: 'Poppins', sans-serif;
      font-size: 0.92rem; color: var(--text-dark);
      background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus {
      border-color: var(--olive);
      box-shadow: 0 0 0 3px rgba(85,107,47,0.10);
    }
    .form-group input::placeholder { color: #B5A898; }
    .ig-prefix {
      display: flex; align-items: center;
      border: 1.5px solid #E2D9CC;
      border-radius: var(--radius-sm);
      background: var(--cream);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ig-prefix:focus-within {
      border-color: var(--olive);
      box-shadow: 0 0 0 3px rgba(85,107,47,0.10);
    }
    .ig-prefix span {
      padding: 13px 14px;
      color: var(--olive); font-weight: 600; font-size: 0.92rem;
      background: rgba(85,107,47,0.07);
      border-right: 1.5px solid #E2D9CC;
      white-space: nowrap;
    }
    .ig-prefix input {
      border: none; background: transparent;
      flex: 1; padding: 13px 14px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.92rem; color: var(--text-dark);
      outline: none;
    }
    .btn-submit {
      width: 100%; padding: 15px;
      background: var(--olive); color: var(--white);
      border: none; border-radius: var(--radius-sm);
      font-family: 'Poppins', sans-serif;
      font-size: 1rem; font-weight: 700;
      cursor: pointer; transition: background 0.2s, transform 0.15s;
      margin-top: 6px;
    }
    .btn-submit:hover { background: var(--olive-light); transform: translateY(-1px); }
    .form-note {
      text-align: center; font-size: 0.78rem;
      color: var(--text-light); margin-top: 12px;
    }
    .form-note span { color: var(--orange); font-weight: 600; }

    /* ── PRIVACY POLICY CHECKBOX ── */
    .privacy-group {
      margin-bottom: 16px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .privacy-group input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      margin-top: 2px;
      accent-color: var(--olive);
      cursor: pointer;
    }
    .privacy-label {
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.5;
    }
    .privacy-label a {
      color: var(--olive);
      font-weight: 600;
      text-decoration: underline;
      cursor: pointer;
    }
    .privacy-label a:hover { color: var(--orange); }

    /* ── SUCCESS POPUP ── */
    .success-popup-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.60);
      z-index: 99999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .success-popup-overlay.active { display: flex; }
    .success-popup {
      background: var(--white);
      border-radius: var(--radius);
      padding: 44px 36px 36px;
      max-width: 460px;
      width: 100%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(85,107,47,0.25);
      position: relative;
      animation: popIn .35s cubic-bezier(.34,1.56,.64,1) both;
    }
    @keyframes popIn {
      from { opacity:0; transform: scale(.82) translateY(24px); }
      to   { opacity:1; transform: scale(1)  translateY(0);     }
    }
    .success-popup-icon {
      font-size: 3.2rem;
      margin-bottom: 16px;
      display: block;
    }
    .success-popup h2 {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--olive);
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .success-popup p {
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .success-popup-badge {
      display: inline-block;
      background: rgba(85,107,47,0.10);
      color: var(--olive);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .btn-popup-close {
      background: var(--olive);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 13px 36px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s, transform .15s;
      width: 100%;
    }
    .btn-popup-close:hover {
      background: var(--olive-light);
      transform: translateY(-1px);
    }

    /* ── PRIVACY MODAL ── */
    .privacy-modal-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .privacy-modal-overlay.active { display: flex; }
    .privacy-modal {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      max-width: 520px;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .privacy-modal h3 {
      font-size: 1.1rem; font-weight: 700;
      color: var(--olive); margin-bottom: 14px;
    }
    .privacy-modal p, .privacy-modal li {
      font-size: 0.85rem; color: var(--text-mid);
      line-height: 1.7; margin-bottom: 8px;
    }
    .privacy-modal ul { padding-left: 18px; margin-bottom: 12px; }
    .privacy-modal-close {
      position: absolute; top: 14px; right: 18px;
      background: none; border: none;
      font-size: 1.4rem; cursor: pointer;
      color: var(--text-mid); line-height: 1;
    }
    .privacy-modal-close:hover { color: var(--olive); }
    .btn-modal-agree {
      margin-top: 18px;
      width: 100%; padding: 12px;
      background: var(--olive); color: var(--white);
      border: none; border-radius: var(--radius-sm);
      font-family: 'Poppins', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      cursor: pointer; transition: background 0.2s;
    }
    .btn-modal-agree:hover { background: var(--olive-light); }

    /* ── SECTION BASE ── */
    section { padding: 72px 5%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      display: inline-block;
      background: rgba(85,107,47,0.10);
      color: var(--olive);
      padding: 5px 14px; border-radius: 50px;
      font-size: 0.76rem; font-weight: 600;
      letter-spacing: 0.8px; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 800; color: var(--text-dark);
      margin-bottom: 10px; line-height: 1.25;
    }
    .section-title span { color: var(--olive); }
    .section-sub {
      font-size: 1rem; color: var(--text-mid);
      max-width: 560px; margin-bottom: 48px;
    }
    .centered { text-align: center; }
    .centered .section-sub { margin-left: auto; margin-right: auto; }

    /* ── VALUE PROPOSITION ── */
    .vp-section { background: var(--white); }
    .vp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .vp-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 32px 28px;
      border: 1px solid rgba(85,107,47,0.10);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .vp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .vp-icon {
      width: 56px; height: 56px;
      background: rgba(85,107,47,0.10);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 20px;
    }
    .vp-card h3 {
      font-size: 1.05rem; font-weight: 700;
      color: var(--olive); margin-bottom: 10px;
    }
    .vp-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 18px; }
    .vp-benefits { list-style: none; }
    .vp-benefits li {
      font-size: 0.85rem; color: var(--text-mid);
      padding: 5px 0;
      display: flex; align-items: flex-start; gap: 8px;
    }
    .vp-benefits li::before {
      content: "✓";
      color: var(--olive); font-weight: 700; flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── CARA KERJA ── */
    .how-section { background: var(--cream-dark); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .step-card {
      text-align: center;
      padding: 28px 20px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid rgba(85,107,47,0.10);
      position: relative;
    }
    .step-num {
      width: 44px; height: 44px;
      background: var(--olive); color: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-weight: 700;
      margin: 0 auto 16px;
    }
    .step-icon { font-size: 1.8rem; margin-bottom: 12px; }
    .step-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
    .step-card p { font-size: 0.83rem; color: var(--text-mid); }
    .step-arrow {
      position: absolute; right: -18px; top: 50%;
      transform: translateY(-50%);
      color: var(--olive-pale); font-size: 1.4rem;
      z-index: 1; pointer-events: none;
    }
    .step-card:last-child .step-arrow { display: none; }

    /* ── DELIVERY SLOTS ── */
    .slots-row {
      display: flex; gap: 20px; margin-top: 40px; justify-content: center;
    }
    .slot-pill {
      background: var(--olive);
      color: var(--white);
      border-radius: 50px;
      padding: 14px 28px;
      display: flex; align-items: center; gap: 12px;
      font-weight: 600;
    }
    .slot-pill .slot-label { font-size: 0.82rem; opacity: 0.85; }
    .slot-pill .slot-time { font-size: 1.05rem; font-weight: 700; }
    .slot-note {
      text-align: center; margin-top: 14px;
      font-size: 0.83rem; color: var(--text-light);
    }

    /* ── PAKET ── */
    .packages-section { background: var(--white); }
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .pkg-card {
      border-radius: var(--radius);
      padding: 30px 24px;
      background: var(--cream);
      border: 1.5px solid rgba(85,107,47,0.12);
      display: flex; flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .pkg-card.featured {
      background: var(--olive);
      border-color: var(--olive);
      color: var(--white);
    }
    .pkg-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--orange); color: var(--white);
      padding: 4px 16px; border-radius: 50px;
      font-size: 0.72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.5px;
      white-space: nowrap;
    }
    .pkg-icon { font-size: 2rem; margin-bottom: 14px; }
    .pkg-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
    .pkg-card.featured h3 { color: var(--white); }
    .pkg-tagline { font-size: 0.8rem; color: var(--text-light); margin-bottom: 16px; }
    .pkg-card.featured .pkg-tagline { color: rgba(255,255,255,0.75); }
    .pkg-price {
      font-size: 1.55rem; font-weight: 800; color: var(--olive);
      margin-bottom: 4px;
    }
    .pkg-card.featured .pkg-price { color: var(--orange); }
    .pkg-price-note { font-size: 0.78rem; color: var(--text-light); margin-bottom: 20px; }
    .pkg-card.featured .pkg-price-note { color: rgba(255,255,255,0.65); }
    .pkg-divider {
      border: none; border-top: 1px solid rgba(85,107,47,0.12);
      margin-bottom: 16px;
    }
    .pkg-card.featured .pkg-divider { border-top-color: rgba(255,255,255,0.2); }
    .pkg-features { list-style: none; flex: 1; }
    .pkg-features li {
      font-size: 0.84rem; padding: 5px 0;
      display: flex; align-items: flex-start; gap: 8px;
      color: var(--text-mid);
    }
    .pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.88); }
    .pkg-features li::before {
      content: "✓"; font-weight: 700;
      color: var(--olive); flex-shrink: 0;
    }
    .pkg-card.featured .pkg-features li::before { color: var(--olive-pale); }
    .pkg-cta {
      margin-top: 22px; padding: 12px;
      border-radius: var(--radius-sm);
      text-align: center; font-weight: 700; font-size: 0.88rem;
      cursor: pointer; border: none;
      font-family: 'Poppins', sans-serif;
      transition: transform 0.15s, background 0.2s;
      text-decoration: none; display: block;
    }
    .pkg-cta:hover { transform: translateY(-1px); }
    .pkg-cta-outline {
      background: transparent;
      border: 2px solid var(--olive); color: var(--olive);
    }
    .pkg-cta-outline:hover { background: rgba(85,107,47,0.07); }
    .pkg-cta-solid {
      background: var(--orange); color: var(--white);
    }
    .pkg-cta-solid:hover { background: var(--orange-dark); }

    /* Add-ons */
    .addons-row {
      display: flex; flex-wrap: wrap; gap: 12px;
      margin-top: 36px; justify-content: center;
    }
    .addon-chip {
      background: var(--cream-dark);
      border: 1px solid rgba(85,107,47,0.15);
      border-radius: 50px; padding: 8px 18px;
      font-size: 0.83rem; font-weight: 500;
      color: var(--text-dark);
      display: flex; align-items: center; gap: 6px;
    }
    .addon-chip .addon-price {
      color: var(--orange); font-weight: 700;
    }

    /* ── EARLY BIRD ── */
    .early-section { background: var(--olive); }
    .early-section .section-label {
      background: rgba(255,255,255,0.15); color: var(--white);
    }
    .early-section .section-title { color: var(--white); }
    .early-section .section-title span { color: var(--orange); }
    .early-section .section-sub { color: rgba(255,255,255,0.8); }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .benefit-card {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: background 0.2s;
    }
    .benefit-card:hover { background: rgba(255,255,255,0.15); }
    .benefit-icon { font-size: 2rem; margin-bottom: 14px; }
    .benefit-card h4 {
      font-size: 1rem; font-weight: 700; color: var(--white);
      margin-bottom: 8px;
    }
    .benefit-card p { font-size: 0.86rem; color: rgba(255,255,255,0.78); }
    .benefit-card .highlight {
      display: inline-block; background: var(--orange);
      color: var(--white); font-weight: 700;
      padding: 2px 10px; border-radius: 50px;
      font-size: 0.82rem; margin-top: 8px;
    }
    .waitlist-counter {
      margin-top: 48px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: var(--radius);
      padding: 28px;
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .counter-item { text-align: center; }
    .counter-num {
      font-size: 2.4rem; font-weight: 800; color: var(--orange);
      display: block;
    }
    .counter-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
    .early-cta {
      text-align: center; margin-top: 36px;
    }
    .btn-early {
      display: inline-block;
      background: var(--orange); color: var(--white);
      padding: 16px 40px; border-radius: 50px;
      font-weight: 700; font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-early:hover { background: var(--orange-dark); transform: translateY(-2px); }

    /* ── REFERRAL ── */
    .referral-section { background: var(--white); }
    .referral-box {
      background: linear-gradient(135deg, var(--cream-dark) 0%, #EEE5D3 100%);
      border: 1.5px solid rgba(85,107,47,0.15);
      border-radius: var(--radius);
      padding: 48px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px; align-items: center;
    }
    .referral-box h3 {
      font-size: 1.5rem; font-weight: 800;
      color: var(--text-dark); margin-bottom: 12px;
    }
    .referral-box h3 span { color: var(--olive); }
    .referral-box p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 24px; }
    .referral-cards { display: flex; flex-direction: column; gap: 14px; }
    .ref-card {
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 18px 20px;
      display: flex; gap: 16px; align-items: center;
      border: 1px solid rgba(85,107,47,0.10);
    }
    .ref-card-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(85,107,47,0.10);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; flex-shrink: 0;
    }
    .ref-card h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
    .ref-card p { font-size: 0.82rem; color: var(--text-mid); margin: 0; }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,0.75);
      padding: 56px 5% 28px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px; margin-bottom: 40px;
    }
    .footer-brand img { height: 52px; margin-bottom: 14px; }
    .footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 280px; }
    .footer-brand .tagline {
      display: inline-block;
      color: var(--olive-pale); font-style: italic;
      font-size: 0.85rem; margin-bottom: 12px;
    }
    .footer-col h5 {
      font-size: 0.9rem; font-weight: 700;
      color: var(--white); margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; font-size: 0.85rem; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.65); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--olive-pale); }
    .footer-social { display: flex; gap: 10px; margin-top: 16px; }
    .social-btn {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.10);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; font-size: 1rem;
      transition: background 0.2s;
    }
    .social-btn:hover { background: var(--olive); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.10);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
      font-size: 0.8rem;
    }
    .footer-bottom a { color: var(--olive-pale); text-decoration: none; }

    /* ── SUCCESS STATE ── */
    .success-msg {
      display: none;
      background: rgba(85,107,47,0.10);
      border: 1.5px solid var(--olive);
      border-radius: var(--radius-sm);
      padding: 16px;
      text-align: center;
      color: var(--olive); font-weight: 600;
      font-size: 0.9rem; margin-top: 14px;
    }
    .success-msg.show { display: block; }

    /* ── BAHAN SECTION (triptych image) ── */
    .bahan-section { background: var(--cream); padding: 0; }
    .bahan-img-wrap {
      width: 100%;
      position: relative;
    }
    .bahan-img-wrap img {
      width: 100%; height: auto;
      display: block;
    }
    .bahan-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(255,247,236,0.6) 0%, transparent 30%);
      pointer-events: none;
    }

    /* ── DELIVERY VISUAL ── */
    .delivery-img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      margin-top: 40px;
    }
    .delivery-img-wrap img {
      width: 100%; height: auto;
      display: block;
    }

    /* ── PACKAGING SHOWCASE ── */
    .packaging-section { background: var(--cream-dark); }
    .packaging-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px; align-items: center;
    }
    .packaging-img {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .packaging-img img {
      width: 100%; height: auto;
      display: block;
    }
    .packaging-content { padding: 12px 0; }
    .packaging-content .section-label { margin-bottom: 12px; }
    .packaging-content .section-title { margin-bottom: 12px; }
    .packaging-content .section-sub { margin-bottom: 28px; }
    .packaging-features { list-style: none; }
    .packaging-features li {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid rgba(85,107,47,0.08);
    }
    .packaging-features li:last-child { border-bottom: none; }
    .pf-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(85,107,47,0.10);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .pf-text h5 { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
    .pf-text p  { font-size: 0.82rem; color: var(--text-mid); }

    /* ── OFFICE LIFESTYLE (VP image) ── */
    .vp-with-img {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 48px; align-items: center;
      margin-top: 52px;
    }
    .vp-lifestyle-img {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .vp-lifestyle-img img {
      width: 100%; height: auto;
      display: block;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .packages-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .step-arrow { display: none; }
      .packaging-grid { grid-template-columns: 1fr; }
      .vp-with-img { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; gap: 36px; padding: 48px 5%; }
      .vp-grid { grid-template-columns: 1fr; }
      .packages-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .benefits-grid { grid-template-columns: 1fr; }
      .referral-box { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .slots-row { flex-direction: column; align-items: center; }
      .waitlist-counter { gap: 24px; }
      .packaging-grid { grid-template-columns: 1fr; }
      .vp-with-img { grid-template-columns: 1fr; }
    }
  
