:root {
  --cream-bg: #F5EFE3;
  --ivory: #FBF7ED;
  --paper: #EFE7D3;
  --warm-gold: #B8893E;
  --soft-gold: #D4A857;
  --gold-light: #E5C078;
  --gold-dark: #8B6420;
  --gold-darker: #6F4E16;
  --deep-brown: #3D2817;
  --brown: #5A3D24;
  --muted-brown: #7A5A3A;
  --text-light: #8B7548;
  --border-beige: #E5D9BE;
  --white: #FFFFFF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17.5px; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream-bg);
  color: var(--deep-brown);
  line-height: 1.6;
}



/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 5%;
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-beige);
}
.nav-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-logo img { width: 72px; height: 72px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem; line-height: 1.2;
  color: var(--deep-brown); font-weight: 600; white-space: nowrap;
}
.nav-logo-text span {
  display: block; font-size: 0.56rem; letter-spacing: 0.12em;
  color: var(--warm-gold); font-family: 'DM Sans', sans-serif;
  font-weight: 500; text-transform: uppercase; white-space: nowrap;
}
.nav-links { display: flex; gap: 1.3rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--brown);
  font-size: 0.85rem; letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--warm-gold); }
.nav-cta {
  background: var(--warm-gold); color: var(--white);
  padding: 0.6rem 1.4rem; border-radius: 14px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-darker); }
.nav-toggle { display: none; }
.nav-links-cta { display: none; }

/* ─── HERO (gaya banner) ─── */
#hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 5rem 0 5rem 5%; position: relative; overflow: hidden;
  padding-right: 5%;
  background:
    radial-gradient(ellipse 50% 60% at 15% 50%, rgba(184,137,62,0.08) 0%, transparent 60%),
    var(--cream-bg);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--muted-brown) 0, var(--muted-brown) 1px, transparent 1px, transparent 26px);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center; width: 100%;
  
}
.hero-content { max-width: 600px; padding-right: 1rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(184,137,62,0.4); background: rgba(184,137,62,0.06);
  padding: 0.35rem 0.9rem; border-radius: 2px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-gold); margin-bottom: 1.3rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--warm-gold); border-radius: 50%; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.1;
  color: var(--deep-brown); margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--warm-gold); display: block; }
.hero-subtitle {
  font-size: 1rem; line-height: 1.7; color: var(--muted-brown);
  max-width: 460px; margin-bottom: 1.8rem;
}
/* Row 4 features - setiap satu dalam box */
.hero-features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem; margin-bottom: 2rem; max-width: 580px;
}
.hero-feature {
  display: flex; flex-direction: column;
  background: var(--white); border: 1.5px solid var(--warm-gold);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.hero-feature:hover { transform: translateY(-4px); border-color: var(--warm-gold); box-shadow: 0 10px 22px rgba(184,137,62,0.18); }
.hf-thumb { width: 100%; height: 72px; overflow: hidden; }
.hf-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hf-body { padding: 0.55rem 0.6rem 0.7rem; }
.hero-feature .hf-title { font-size: 0.74rem; color: var(--deep-brown); font-weight: 700; line-height: 1.25; margin: 0 0 0.25rem; }
.hf-desc { font-size: 0.63rem; color: var(--muted-brown); line-height: 1.4; margin: 0; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--warm-gold); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 14px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  transition: all 0.2s; border: 2px solid var(--warm-gold);
}
.btn-primary:hover { background: var(--gold-darker); border-color: var(--gold-darker); color: var(--white); }
.btn-outline {
  border: 2px solid rgba(184,137,62,0.45); color: var(--brown);
  padding: 0.85rem 2rem; border-radius: 14px;
  font-size: 0.85rem; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  transition: all 0.2s; background: transparent;
}
.btn-outline:hover { border-color: var(--gold-darker); color: var(--gold-darker); background: rgba(184,137,62,0.06); }

/* Gambar kanan dengan lengkung */
.hero-image-wrap {
  position: relative; height: 100%; min-height: 520px;
  display: flex; align-items: center; justify-content: flex-end;
}
.hero-image {
  width: 92%; max-width: 560px; height: 520px; object-fit: cover;
  border-radius: 180px 0 0 180px;
  border-left: 4px solid var(--warm-gold);
  box-shadow: -20px 20px 60px rgba(61,40,23,0.18);
  padding-right: 20px;
}





/* ─── SECTION SHARED ─── */
section { padding: 4rem 4%; position: relative; z-index: 1; }
.section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--warm-gold); display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; font-weight: 600; }
.section-label::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--warm-gold); opacity: 0.5; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--deep-brown); line-height: 1.15; }
.section-title em { font-style: italic; color: var(--warm-gold); }
.divider { width: 60px; height: 2px; background: var(--warm-gold); margin: 1.2rem 0; }

/* ─── TENTANG ─── */
#tentang { background: var(--ivory); }
.tentang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tentang-left p { color: var(--brown); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1.2rem; }
.visi-box { background: rgba(184,137,62,0.06); border-left: 3px solid var(--warm-gold); padding: 1.2rem 1.5rem; margin: 1.5rem 0; border-radius: 0 4px 4px 0; }
.visi-box h4 { color: var(--warm-gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.5rem; }
.visi-box p { color: var(--deep-brown); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.ustaz-card {
  background: var(--white); border: 1px solid var(--border-beige);
  border-radius: 16px; overflow: hidden; position: relative;
  box-shadow: 0 10px 34px rgba(61,40,23,0.10);
  text-align: center;
}
/* Bahagian atas cerah */
.ustaz-top {
  background: linear-gradient(180deg, rgba(184,137,62,0.10) 0%, rgba(184,137,62,0.02) 100%);
  padding: 2.4rem 2rem 1.6rem;
}
/* Gambar bulat besar tengah (highlight) */
.ustaz-photo {
  width: 160px; height: 160px; border-radius: 50%;
  margin: 0 auto 1.4rem; overflow: hidden;
  background: var(--cream-bg);
  border: 5px solid var(--white);
  box-shadow: 0 8px 26px rgba(61,40,23,0.18), 0 0 0 2px var(--warm-gold);
}
.ustaz-photo img { width: 100%; height: 100%; object-fit: cover; }
.ustaz-photo img.is-logo { object-fit: contain; padding: 14px; }
.ustaz-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--deep-brown);
  line-height: 1.2;
}
.ustaz-jawatan {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-gold); font-weight: 600; margin-top: 0.4rem;
}
/* Body senarai pencapaian */
.ustaz-body { padding: 1.6rem 2rem 1.8rem; text-align: left; }
.achievement {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border-beige);
  font-size: 0.85rem; color: var(--brown); line-height: 1.5;
}
.achievement:last-child { border-bottom: none; }
.achievement-icon { color: var(--warm-gold); font-size: 0.7rem; margin-top: 0.35rem; flex-shrink: 0; }
/* Band emas hiasan bawah (ganti media sosial) */
.ustaz-footer-band {
  height: 8px; background: linear-gradient(90deg, var(--gold-dark), var(--warm-gold), var(--soft-gold));
}

/* ─── PAKEJ ─── */
#pakej { background: var(--cream-bg); }
.pakej-intro { max-width: 540px; margin-bottom: 3rem; }
.pakej-intro p { color: var(--brown); line-height: 1.7; margin-top: 1rem; }
.pakej-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.pakej-card { background: linear-gradient(165deg, var(--deep-brown) 0%, #2A1B0F 100%); border: 1px solid var(--gold-dark); border-radius: 16px; overflow: hidden; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; position: relative; box-shadow: 0 8px 24px rgba(61,40,23,0.18); display: flex; flex-direction: column; }
/* Pilihan 5: coklat gelap + teks emas */
.pakej-card .pakej-header { background: transparent; border-bottom-color: rgba(212,168,87,0.22); }
.pakej-card .pakej-name { color: var(--gold-light); }
.pakej-card .pakej-sub { color: #C9B896; }
.pakej-card .pakej-price { color: var(--gold-light); }
.pakej-card .pakej-price span { color: #C9B896; }
.pakej-card .pakej-price-old { color: #A8927A; }
.pakej-card .pakej-features li { color: #D8C9B0; }
.pakej-card .pakej-discount { background: var(--cream-bg); color: var(--gold-dark); }
.pakej-card .pakej-tier-label { color: var(--gold-light) !important; }
.pakej-card:hover { transform: translateY(-4px); border-color: var(--warm-gold); box-shadow: 0 12px 30px rgba(184,137,62,0.12); }
.pakej-card.featured { border-color: var(--warm-gold); box-shadow: 0 8px 24px rgba(184,137,62,0.10); }
.featured-badge { position: absolute; top: 1rem; right: 1rem; background: var(--warm-gold); color: var(--white); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
.pakej-header { padding: 1.8rem; border-bottom: 1px solid var(--border-beige); background: linear-gradient(135deg, rgba(184,137,62,0.06) 0%, transparent 100%); }
.pakej-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.pakej-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--deep-brown); margin-bottom: 0.25rem; }
.pakej-sub { font-size: 0.78rem; color: var(--muted-brown); letter-spacing: 0.04em; }
.pakej-price-wrap { padding: 1.5rem 1.8rem 0; }
.pakej-price-old { font-size: 0.85rem; color: var(--muted-brown); text-decoration: line-through; }
.pakej-price { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 700; color: var(--warm-gold); display: flex; align-items: baseline; gap: 0.3rem; }
.pakej-price span { font-size: 0.95rem; color: var(--muted-brown); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.pakej-discount { display: inline-block; background: rgba(184,137,62,0.15); color: var(--gold-dark); font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 2px; margin-top: 0.3rem; }
.pakej-body { padding: 1.5rem 1.8rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.pakej-features { flex: 1; }
.pakej-features { list-style: none; margin-bottom: 1.5rem; }
.pakej-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--brown); line-height: 1.5; padding: 0.45rem 0; }
.pakej-features li::before { content: '✓'; color: var(--warm-gold); font-weight: 700; flex-shrink: 0; }
.pakej-card .pakej-features li::before { color: var(--soft-gold); }
.btn-pakej { display: block; text-align: center; margin-top: auto; background: var(--warm-gold); color: var(--white); padding: 0.85rem; border-radius: 14px; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: all 0.2s; border: 2px solid var(--warm-gold); }
.btn-pakej:hover { background: var(--gold-darker); border-color: var(--gold-darker); }
.btn-pakej-outline { display: block; text-align: center; margin-top: auto; background: transparent; color: var(--warm-gold); padding: 0.85rem; border-radius: 14px; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: all 0.2s; border: 2px solid rgba(184,137,62,0.4); }
.btn-pakej-outline:hover { border-color: var(--gold-darker); color: var(--gold-darker); background: rgba(184,137,62,0.06); }
.tier-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; }
.tier-table th { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); padding: 0.4rem 0; text-align: left; border-bottom: 1px solid var(--border-beige); }
.tier-table td { padding: 0.6rem 0; font-size: 0.85rem; color: var(--brown); border-bottom: 1px solid var(--border-beige); }
.tier-table td strong { color: var(--warm-gold); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.tier-table td .strike { text-decoration: line-through; color: var(--muted-brown); font-size: 0.78rem; margin-right: 0.3rem; }

/* ─── HUBUNGI + MAP ─── */
#hubungi { background: var(--cream-bg); }
.hubungi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-cards { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-card { background: var(--white); border: 1px solid var(--border-beige); border-radius: 4px; padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.contact-icon { width: 40px; height: 40px; border-radius: 4px; background: rgba(184,137,62,0.1); border: 1px solid rgba(184,137,62,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); }
.contact-value { font-size: 0.9rem; color: var(--deep-brown); margin-top: 0.15rem; }
.hours-card { background: linear-gradient(135deg, rgba(184,137,62,0.08) 0%, rgba(184,137,62,0.03) 100%); border: 1px solid var(--border-beige); border-radius: 4px; padding: 1.5rem; margin-top: 1rem; }
.hours-card h4 { color: var(--warm-gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.8rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border-beige); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--muted-brown); }
.hours-row span:last-child { color: var(--deep-brown); }
.map-embed { border: 1px solid var(--border-beige); border-radius: 6px; overflow: hidden; height: 320px; margin-top: 1rem; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-address { background: rgba(184,137,62,0.06); border: 1px solid var(--border-beige); border-radius: 4px; padding: 1rem 1.2rem; margin-top: 1rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.map-address-icon { color: var(--warm-gold); flex-shrink: 0; margin-top: 0.1rem; }
.map-address p { font-size: 0.875rem; color: var(--brown); line-height: 1.6; }

/* ─── TESTIMONI (kad reference) ─── */
#testimoni { background: var(--ivory); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testi-card { background: var(--white); border: 1px solid var(--border-beige); border-radius: 8px 28px 28px 28px; padding: 2rem 1.6rem 2.2rem; position: relative; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 18px rgba(61,40,23,0.05); overflow: hidden; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(184,137,62,0.14); }
.testi-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.testi-icon { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--gold-dark), var(--warm-gold)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: 1; box-shadow: 0 4px 12px rgba(184,137,62,0.25); }
.testi-head-info { display: flex; flex-direction: column; }
.testi-name { font-size: 1.05rem; color: var(--deep-brown); font-weight: 600; font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
.testi-loc { font-size: 0.75rem; color: var(--muted-brown); margin-top: 0.1rem; }
.testi-stars { color: var(--warm-gold); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 0.9rem; text-align: center; }
.testi-text { font-size: 0.88rem; line-height: 1.7; color: var(--brown); text-align: center; position: relative; z-index: 1; }
.testi-quote-bg { position: absolute; bottom: 0.8rem; right: 1.2rem; font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: rgba(184,137,62,0.12); line-height: 1; pointer-events: none; }

/* ─── APLIKASI (bg lain) ─── */
#aplikasi { background: var(--paper); }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.app-phone { display: flex; flex-direction: column; align-items: center; gap: 2rem; position: relative; }
.app-phone-mockup { width: 240px; height: 480px; border-radius: 30px; background: linear-gradient(160deg, var(--deep-brown), var(--brown)); border: 8px solid black; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 30px 60px rgba(184,137,62,0.20); animation: floatPhone 4s ease-in-out infinite; }
.app-phone-mockup .screen { position: absolute; inset: 0; border-radius: 22px; overflow: hidden; background: #1a0f06; }
.app-phone-mockup .screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease; }
.app-phone-mockup .screen img.active { opacity: 1; }
.app-dots { display: flex; gap: 0.5rem; justify-content: center; }
.app-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(184,137,62,0.3); border: none; cursor: pointer; padding: 0; transition: all 0.25s; }
.app-dots button.active { background: var(--warm-gold); width: 26px; border-radius: 5px; }
.app-phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90px; height: 20px; background: black; border-radius: 0 0 12px 12px; z-index: 2; }
@keyframes floatPhone { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.app-store-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.store-btn { background: var(--deep-brown); border: none; border-radius: 14px; padding: 0.55rem 1.1rem; font-size: 0.72rem; color: var(--cream-bg); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s; white-space: nowrap; }
.store-btn:hover { background: var(--gold-darker); transform: translateY(-2px); }
.store-btn svg { flex-shrink: 0; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn .store-text small { font-size: 0.6rem; opacity: 0.7; }
.store-btn .store-text strong { font-size: 0.8rem; }
.app-content h2 { margin-bottom: 1rem; }
.app-content p { color: var(--brown); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.app-features { display: grid; gap: 1rem; }
.app-feature { display: flex; gap: 1rem; background: rgba(184,137,62,0.06); border: 1px solid var(--border-beige); border-radius: 4px; padding: 1rem; }
.app-feature-icon { font-size: 1.3rem; flex-shrink: 0; }
.app-feature h4 { font-size: 0.9rem; color: var(--deep-brown); margin-bottom: 0.25rem; }
.app-feature p { font-size: 0.8rem; color: var(--muted-brown); margin: 0; }

/* ─── OUTCOME (kejayaan pelajar) ─── */
#outcome { background: var(--cream-bg); text-align: center; }
.outcome-head { max-width: 640px; margin: 0 auto 1rem; }
.outcome-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem; align-items: start;
}
.outcome-card {
  background: var(--white); border: 1px solid var(--border-beige);
  border-radius: 16px; padding: 4.6rem 1.3rem 1.6rem;
  box-shadow: 0 6px 22px rgba(61,40,23,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: visible;
}
.outcome-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(184,137,62,0.16); }
/* zig-zag: kad genap turun sikit */
.outcome-card { margin-top: 4.5rem; }  /* ruang untuk gambar yang terkeluar di atas */
.outcome-photo-wrap {
  position: absolute; width: 130px; height: 130px;
  left: 50%; top: -65px; transform: translateX(-50%);
}
.outcome-photo {
  width: 130px; height: 130px; border-radius: 50%;
  overflow: hidden; background: var(--cream-bg);
  border: 4px solid var(--warm-gold);
  box-shadow: 0 8px 20px rgba(184,137,62,0.28);
}
.outcome-photo img { width: 100%; height: 100%; object-fit: cover; }
/* badge bulat kanan-atas */
.outcome-badge {
  position: absolute; top: 2px; right: 2px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-light); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 12px rgba(61,40,23,0.25);
}
.outcome-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep-brown); }
.outcome-role { font-size: 0.78rem; color: var(--warm-gold); font-weight: 600; margin-top: 0.2rem; }
.outcome-desc { font-size: 0.8rem; color: var(--muted-brown); line-height: 1.55; margin-top: 0.8rem; }
.outcome-stars { color: var(--soft-gold); font-size: 0.7rem; letter-spacing: 0.1em; margin-top: 0.7rem; }


/* ─── CAROUSEL (testimoni & outcome) ─── */
.carousel { position: relative; margin-top: 2.5rem; }
.carousel-track-wrap { overflow: hidden; }
.carousel-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.carousel-track > * { flex: 0 0 calc((100% - 3rem) / 3); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border-beige);
  color: var(--warm-gold); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(61,40,23,0.12); z-index: 5;
  transition: all 0.2s;
}
.carousel-arrow:hover { background: var(--warm-gold); color: var(--white); border-color: var(--warm-gold); }
.carousel-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-arrow.prev { left: -24px; }
.carousel-arrow.next { right: -24px; }
.carousel-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.8rem; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(184,137,62,0.3); border: none; cursor: pointer; padding: 0; transition: all 0.25s; }
.carousel-dots button.active { background: var(--warm-gold); width: 24px; border-radius: 5px; }


/* ─── ONLINE BANNER (melintang) ─── */
.online-banner {
  background: linear-gradient(165deg, var(--deep-brown) 0%, #2A1B0F 100%);
  border: 1px solid var(--gold-dark);
  border-radius: 8px; padding: 2rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.online-banner-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.online-banner-info .online-sub { font-size: 0.8rem; color: var(--warm-gold); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.8rem; }
.online-banner-info p { color: #D8C9B0; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }
.online-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.online-tier {
  background: var(--white); border: 1px solid var(--border-beige);
  border-radius: 8px; padding: 1.2rem 1rem; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.online-tier:hover { transform: translateY(-3px); border-color: var(--warm-gold); box-shadow: 0 8px 18px rgba(184,137,62,0.12); }
.online-tier .tier-level { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); font-weight: 600; }
.online-tier .tier-age { font-size: 0.78rem; color: var(--brown); margin: 0.3rem 0 0.7rem; }
.online-tier .tier-old { font-size: 0.78rem; color: var(--muted-brown); text-decoration: line-through; }
.online-tier .tier-price { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--warm-gold); line-height: 1; }
.online-tier .tier-discount { display: inline-block; background: rgba(184,137,62,0.15); color: var(--gold-dark); font-size: 0.62rem; font-weight: 600; padding: 0.15rem 0.45rem; border-radius: 2px; margin-top: 0.4rem; }
.online-banner-cta { margin-top: 1.4rem; }


/* ─── FORM PENDAFTARAN ─── */
#formdaftar { background: var(--ivory); }
.form-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.form-head .form-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--deep-brown);
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.form-head .form-divider { width: 60px; height: 3px; background: var(--warm-gold); margin: 1rem auto; border-radius: 2px; }
.form-head p { color: var(--muted-brown); font-size: 0.95rem; line-height: 1.6; }
.form-head p strong { color: var(--warm-gold); }
.form-card {
  background: var(--white); border: 1px solid var(--border-beige);
  border-radius: 16px; padding: 2.8rem; max-width: 860px; margin: 0 auto;
  box-shadow: 0 14px 40px rgba(61,40,23,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.4rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--deep-brown);
  margin-bottom: 0.5rem; letter-spacing: 0.02em;
}
.form-group label .req { color: #C0392B; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  padding: 0.85rem 1rem; border: 1px solid var(--border-beige);
  border-radius: 8px; background: var(--cream-bg); color: var(--deep-brown);
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B0A084; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(184,137,62,0.12); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; margin-top: 0.6rem; padding: 1.1rem;
  background: linear-gradient(135deg, var(--warm-gold), var(--gold-dark));
  color: var(--white); border: none; border-radius: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 8px 22px rgba(184,137,62,0.28);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(184,137,62,0.36); }
.form-foot { text-align: center; margin-top: 1.4rem; font-size: 0.85rem; color: var(--muted-brown); line-height: 1.6; }
.form-foot a { color: var(--warm-gold); font-weight: 600; text-decoration: none; }
.form-foot a:hover { text-decoration: underline; }
.form-error { font-size: 0.75rem; color: #C0392B; margin-top: 0.3rem; display: none; }
.form-group.invalid input, .form-group.invalid select { border-color: #C0392B; }
.form-group.invalid .form-error { display: block; }


/* ─── FOOTER ─── */
footer { background: var(--deep-brown); padding: 2.5rem 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-left { display: flex; align-items: center; gap: 1rem; }
.footer-left img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand { font-family: 'Cormorant Garamond', serif; color: var(--text-light); font-size: 0.9rem; }
.footer-brand span { color: var(--soft-gold); }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 38px; height: 38px; border-radius: 6px; border: 1px solid rgba(212,168,87,0.3); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.social-link:hover { border-color: var(--soft-gold); color: var(--soft-gold); background: rgba(212,168,87,0.08); }



/* ─── MODUL ─── */
#modul { background: var(--ivory); }
.modul-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center; }
.modul-content p { color: var(--brown); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.4rem; }
.modul-features { display: flex; flex-direction: column; gap: 1.1rem; }
.modul-feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.modul-feature-icon { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 9px; background: rgba(184,137,62,0.12); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.modul-feature h4 { font-size: 0.95rem; color: var(--deep-brown); font-weight: 600; }
.modul-feature p { font-size: 0.84rem; color: var(--muted-brown); line-height: 1.5; margin: 0.1rem 0 0; }
.modul-img-col { display: flex; justify-content: center; }
.modul-img { width: 100%; max-width: 420px; height: auto; display: block; filter: drop-shadow(0 20px 36px rgba(61,40,23,0.22)); }



/* ─── MARQUEE (testimoni & pencapaian auto-scroll) ─── */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
/* arah kanan: mula dari posisi shift kiri, gerak ke kanan */
.marquee--right { animation: marquee-right 60s linear infinite; }
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
/* berhenti bila hover */
.marquee:hover .marquee__track { animation-play-state: paused; }
/* kad dalam marquee: lebar tetap supaya konsisten */
.marquee .testi-card { flex: 0 0 360px; }
.marquee .outcome-card { flex: 0 0 300px; }



/* fix: kad outcome dalam marquee — kekal overflow hidden, bagi ruang atas utk gambar terkeluar */
#outcome-marquee { padding-top: 85px; }
#outcome-marquee .outcome-card { margin-top: 0; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; min-height: auto; justify-content: center; margin-top: 0; margin-bottom: 1.8rem; }
  .hero-content { order: 1; }
  .hero-image { width: 100%; max-width: 440px; height: 300px; border-radius: 18px; border-left: none; border: 3px solid var(--warm-gold); box-shadow: 0 14px 32px rgba(61,40,23,0.18); margin: 0 auto; padding: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .hero-features { grid-template-columns: repeat(2, 1fr); }
  .outcome-cards { grid-template-columns: repeat(2, 1fr); }
  .outcome-card:nth-child(even) { margin-top: 0; }
  .carousel-track > * { flex: 0 0 100%; }
  .carousel-arrow.prev { left: 4px; }
  .carousel-arrow.next { right: 4px; }
  .tentang-grid, .pakej-grid, .hubungi-grid { grid-template-columns: 1fr; }
  .online-banner { grid-template-columns: 1fr; padding: 1.6rem 1.3rem; gap: 1.4rem; }
  .online-banner-info, .online-tiers, .online-tier { min-width: 0; }
  .online-banner-info .online-sub { letter-spacing: 0.03em; }
  .online-tiers { grid-template-columns: 1fr; gap: 0.8rem; }
  .online-tier { padding: 1.1rem 1.1rem; }

  /* ── Mobile navigation (hamburger) ── */
  nav { flex-wrap: wrap; padding: 0.7rem 5%; }
  .nav-logo img { width: 52px; height: 52px; }
  .nav-logo-text { font-size: 0.82rem; }
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 8px; background: transparent; border: none; cursor: pointer;
  }
  .nav-toggle span { display: block; width: 100%; height: 2.5px; background: var(--deep-brown); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links { display: none; order: 3; flex-direction: column; gap: 0; width: 100%; margin-top: 0.6rem; border-top: 1px solid var(--border-beige); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0.2rem; font-size: 0.95rem; border-bottom: 1px solid rgba(184,137,62,0.12); }
  .nav-links-cta { display: block; }
  .nav-links-cta a { color: var(--warm-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: none; }
}

/* ═══════════════════════════════════════════════
   SECTION BAHARU: GURU · GALERI · SPEED · CARA
   ═══════════════════════════════════════════════ */

/* ─── PAKEJ: garisan emas (ganti emoji) + tier 2 harga ─── */
.pakej-header::before { content: ''; display: block; width: 34px; height: 2px; background: var(--warm-gold); opacity: 0.7; margin-bottom: 0.7rem; }
.pakej-tiers { padding: 1.2rem 1.8rem 0; }
.pakej-tier { padding: 0.7rem 0; }
.pakej-tier + .pakej-tier { border-top: 1px dashed var(--border-beige); }
.pakej-tier-pill { display: inline-block; background: var(--border-beige); color: var(--gold-dark); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.24rem 0.65rem; border-radius: 20px; margin-bottom: 0.45rem; }
.pakej-tier-main { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.pakej-tier-old { font-size: 0.78rem; color: var(--muted-brown); text-decoration: line-through; line-height: 1.1; }
.pakej-tier-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--warm-gold); display: flex; align-items: baseline; gap: 0.2rem; line-height: 1.1; }
.pakej-tier-price span { font-size: 0.78rem; color: var(--muted-brown); font-weight: 400; font-family: 'DM Sans', sans-serif; }
.pakej-tier-disc { flex-shrink: 0; background: var(--cream-bg); color: var(--gold-dark); font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 3px; }

/* ─── TENAGA PENGAJAR (spotlight carousel) ─── */
.guru-band { background: var(--paper); text-align: center; }
.guru-band .section-label { color: var(--soft-gold); }
.guru-band .section-title { color: var(--deep-brown); }
.guru-band .section-title em { color: var(--soft-gold); }
.guru-head { margin-bottom: 0.4rem; }
.guru-intro { color: var(--brown); font-size: 0.92rem; max-width: 440px; margin: 0.7rem auto 0; }
.guru-stage { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.4rem; }
.guru-nav { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(212,168,87,0.5); background: transparent; color: var(--soft-gold); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.25s, transform 0.2s; }
.guru-nav:hover { background: rgba(212,168,87,0.15); transform: scale(1.08); }
.guru-viewport { flex: 1; overflow: hidden; max-width: 720px; }
.guru-track { position: relative; height: 176px; }
.guru-band.no-anim .guru-slot, .guru-band.no-anim .guru-photo { transition: none !important; }
.guru-slot { position: absolute; left: calc(50% - 36px); top: 48px; width: 72px; display: flex; flex-direction: column; align-items: center; cursor: pointer; will-change: transform; transition: transform 0.58s cubic-bezier(0.22,0.61,0.36,1); }
.guru-photo { width: 72px; height: 94px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(212,168,87,0.25); transform-origin: center bottom; will-change: transform; transition: transform 0.58s cubic-bezier(0.22,0.61,0.36,1), opacity 0.5s ease, border-color 0.4s, box-shadow 0.5s; }
.guru-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guru-pname { color: rgba(245,239,227,0.5); font-size: 0.72rem; margin-top: 0.5rem; font-weight: 500; white-space: nowrap; transition: color 0.4s, font-size 0.4s; }
.guru-slot.on .guru-photo { border: 2px solid var(--soft-gold); box-shadow: 0 0 0 4px rgba(212,168,87,0.12), 0 12px 32px rgba(0,0,0,0.45); }
.guru-slot.on .guru-pname { color: var(--gold-dark); font-size: 0.86rem; font-weight: 600; font-family: 'Cormorant Garamond', serif; }
.guru-bio { max-width: 460px; margin: 1.5rem auto 0; transition: opacity 0.26s ease; }
.guru-bio-role { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-darker); font-weight: 600; margin-bottom: 0.5rem; }
.guru-bio-text { color: var(--brown); font-size: 0.9rem; line-height: 1.65; }
.guru-bio-tags { display: flex; gap: 0.4rem; justify-content: center; margin-top: 0.9rem; }
.guru-tag { font-size: 0.66rem; background: rgba(79, 56, 12, 0.14); color: var(--muted-brown); padding: 0.22rem 0.6rem; border-radius: 20px; font-weight: 500; }
.guru-dots { display: flex; gap: 0.4rem; justify-content: center; margin-top: 1.3rem; }
.guru-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(212,168,87,0.3); cursor: pointer; transition: all 0.3s; }
.guru-dots span.on { background: var(--soft-gold); width: 20px; border-radius: 4px; }

/* ─── GALERI (hover reveal) ─── */
.galeri-head { text-align: center; margin-bottom: 2.2rem; }
.galeri-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.galeri-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; cursor: pointer; border: 1px solid var(--border-beige); }
.galeri-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galeri-item:hover img { transform: scale(1.08); }
.galeri-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(61,40,23,0.92) 0%, rgba(61,40,23,0.5) 45%, rgba(61,40,23,0) 100%); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; }
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-cap { padding: 1rem; transform: translateY(14px); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; }
.galeri-item:hover .galeri-cap { transform: translateY(0); opacity: 1; }
.galeri-tag { display: inline-block; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--deep-brown); background: var(--soft-gold); padding: 0.15rem 0.5rem; border-radius: 4px; font-weight: 600; margin-bottom: 0.4rem; }
.galeri-cap h4 { font-family: 'Cormorant Garamond', serif; color: var(--white); font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.galeri-cap p { color: var(--gold-light); font-size: 0.74rem; margin-top: 0.25rem; line-height: 1.45; }
.galeri-hint { text-align: center; font-size: 0.8rem; color: var(--muted-brown); font-style: italic; margin-top: 1.4rem; }

/* ─── SPEED (mockup desktop) ─── */
#speed { background: var(--ivory); }
.speed-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.speed-mock-col { display: flex; flex-direction: column; align-items: center; }
.speed-device { width: 100%; height: auto; display: block; border-radius: 10px; padding-bottom: 10px; }
.browser { width: 100%; border: 1px solid var(--border-beige); border-radius: 10px; overflow: hidden; box-shadow: 0 18px 40px rgba(61,40,23,0.16); background: var(--white); }
.browser-bar { height: 34px; background: #ECE6D9; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid var(--border-beige); }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.browser-url { flex: 1; background: var(--white); border: 1px solid var(--border-beige); border-radius: 5px; font-size: 0.7rem; color: var(--muted-brown); padding: 3px 10px; text-align: center; margin-left: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser-screen { position: relative; width: 100%; aspect-ratio: 16 / 10; background: #F5F7FB; overflow: hidden; }
.speed-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transition: opacity 0.6s ease; }
.speed-slide.active { opacity: 1; }
.speed-dots { display: flex; gap: 0.5rem; justify-content: center; margin: 1.1rem 0; }
.speed-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(184,137,62,0.3); cursor: pointer; padding: 0; transition: all 0.3s; }
.speed-dots button.active { background: var(--warm-gold); width: 22px; border-radius: 4px; }
.btn-web { display: inline-block; background: var(--warm-gold); color: var(--white); padding: 0.85rem 1.8rem; border-radius: 14px; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--warm-gold); transition: all 0.2s; }
.btn-web:hover { background: var(--gold-darker); border-color: var(--gold-darker); }
.speed-content p { color: var(--brown); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.4rem; }
.speed-features { display: flex; flex-direction: column; gap: 1.1rem; }
.speed-feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.speed-feature-icon { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 9px; background: rgba(184,137,62,0.12); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.speed-feature h4 { font-size: 0.95rem; color: var(--deep-brown); font-weight: 600; }
.speed-feature p { font-size: 0.84rem; color: var(--muted-brown); line-height: 1.5; margin: 0.1rem 0 0; }

/* ─── CARA MENDAFTAR (4 langkah, panah responsif) ─── */
.cara-head { text-align: center; margin-bottom: 2.2rem; }
.cara-flow { display: flex; align-items: stretch; justify-content: center; gap: 0.6rem; }
.cara-step { flex: 1; position: relative; background: var(--white); border: 1px solid var(--border-beige); border-radius: 14px; padding: 1.6rem 1.2rem; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.cara-step:hover { transform: translateY(-5px); border-color: var(--warm-gold); box-shadow: 0 14px 30px rgba(184,137,62,0.14); }
.cara-num { position: absolute; top: -0.4rem; right: 0.3rem; font-family: 'Cormorant Garamond', serif; font-size: 4.2rem; font-weight: 700; color: rgba(184,137,62,0.1); line-height: 1; pointer-events: none; }
.cara-pill { display: inline-block; background: var(--warm-gold); color: var(--white); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 20px; margin-bottom: 0.9rem; }
.cara-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--deep-brown); line-height: 1.2; min-height: 2.6em; }
.cara-divider { width: 34px; height: 2px; background: var(--warm-gold); opacity: 0.5; margin: 0.8rem 0; }
.cara-desc { font-size: 0.8rem; color: var(--muted-brown); line-height: 1.55; }
.cara-arrow { flex: 0 0 auto; align-self: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(184,137,62,0.12); color: var(--warm-gold); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; }

/* ─── RESPONSIF SECTION BAHARU ─── */
@media (max-width: 900px) {
  .speed-grid { grid-template-columns: 1fr; gap: 2rem; }
  .modul-grid { grid-template-columns: 1fr; gap: 2rem; }
  .modul-img-col { order: -1; }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .guru-viewport { max-width: 100%; }
}
@media (max-width: 700px) {
  .cara-flow { flex-direction: column; }
  .cara-arrow { transform: rotate(90deg); }
  .cara-title { min-height: 0; }
}
/* ─── TEAM / STAFF PAGE ─── */
.team-page { background: var(--cream-bg); }
.team-hero { text-align: center; padding: 4rem 5% 2.2rem; max-width: 980px; margin: 0 auto; }
.team-label { color: var(--warm-gold); font-weight: 600; letter-spacing: 0.22em; font-size: 0.8rem; margin-bottom: 1rem; }
.team-h1 { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--deep-brown); font-size: 3.4rem; line-height: 1.08; margin-bottom: 1.3rem; }
.team-h1 em { color: var(--warm-gold); font-style: italic; font-weight: 600; }
.team-sub { color: var(--muted-brown); font-size: 1.05rem; line-height: 1.7; max-width: 620px; margin: 0 auto 2.2rem; }
.team-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.team-tab { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--brown); background: var(--white); border: 1.5px solid rgba(184,137,62,0.3); border-radius: 999px; padding: 0.6rem 1.4rem; cursor: pointer; transition: all 0.25s; }
.team-tab:hover { border-color: var(--warm-gold); color: var(--warm-gold); }
.team-tab.active { background: var(--warm-gold); border-color: var(--warm-gold); color: #fff; }
.team-grid-wrap { padding: 1.5rem 5% 5rem; max-width: 1240px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.team-card { background: linear-gradient(180deg, #FFFFFF 0%, #FBF7ED 100%); border: 1.5px solid rgba(184,137,62,0.25); border-radius: 18px; padding: 2.2rem 1.4rem 1.8rem; text-align: center; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.team-card:hover { transform: translateY(-6px); border-color: var(--warm-gold); box-shadow: 0 16px 34px rgba(184,137,62,0.18); }
.team-photo { width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 2.1rem; color: #fff; letter-spacing: 0.02em; background: linear-gradient(145deg, var(--c1,#B8893E), var(--c2,#6F4E16)); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--warm-gold), 0 8px 18px rgba(61,40,23,0.18); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.22rem; color: var(--deep-brown); line-height: 1.25; margin-bottom: 0.45rem; }
.team-role { color: var(--warm-gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.7rem; }
.team-qual { color: var(--muted-brown); font-size: 0.85rem; line-height: 1.5; }
.team-empty { text-align: center; color: var(--muted-brown); padding: 3rem 1rem; font-size: 1rem; }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
}
@media (max-width: 900px) {
  .team-hero { padding: 2.6rem 5% 1.6rem; }
  .team-h1 { font-size: 2.4rem; }
  .team-sub { font-size: 0.98rem; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .team-h1 { font-size: 2rem; }
  .team-tabs { gap: 0.5rem; }
  .team-tab { font-size: 0.82rem; padding: 0.5rem 1rem; }
}

/* ─── ORG CHART (Carta Organisasi) ─── */
.org-chart { background: linear-gradient(180deg, #FFFFFF 0%, #FBF7ED 100%); border: 1.5px solid rgba(184,137,62,0.25); border-radius: 20px; padding: 2.6rem 2rem 3rem; max-width: 1100px; margin: 0 auto; box-shadow: 0 10px 30px rgba(61,40,23,0.06); }
.org-node { background: var(--white); border: 1.5px solid rgba(184,137,62,0.3); border-radius: 14px; padding: 0.95rem 1.3rem; text-align: center; box-shadow: 0 4px 12px rgba(61,40,23,0.06); }
.org-node .on-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--deep-brown); font-size: 1.05rem; line-height: 1.2; }
.org-node .on-role { color: var(--warm-gold); font-weight: 600; font-size: 0.78rem; margin-top: 0.25rem; letter-spacing: 0.02em; }
.org-node.lead { background: linear-gradient(145deg, rgba(184,137,62,0.16), rgba(184,137,62,0.05)); border-color: var(--warm-gold); min-width: 280px; }
.org-lead { display: flex; justify-content: center; }
.org-trunk { width: 2px; height: 34px; background: rgba(184,137,62,0.55); margin: 0 auto; }
.org-mgmt { display: flex; justify-content: center; gap: 1.2rem; position: relative; padding-top: 18px; }
.org-mgmt::before { content: ''; position: absolute; top: 0; left: 12.5%; right: 12.5%; height: 2px; background: rgba(184,137,62,0.55); }
.org-col { display: flex; flex-direction: column; align-items: center; flex: 1 1 0; min-width: 0; }
.org-col::before { content: ''; width: 2px; height: 18px; background: rgba(184,137,62,0.55); }
.org-col .org-node { width: 100%; }
.org-section-label { text-align: center; color: var(--warm-gold); font-weight: 600; letter-spacing: 0.2em; font-size: 0.78rem; margin: 2.4rem 0 1.3rem; position: relative; }
.org-guru { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.org-node.guru { padding: 0.8rem 0.85rem; }
.org-node.guru .on-name { font-size: 0.92rem; }
.org-node.guru .on-role { font-size: 0.72rem; }

@media (max-width: 860px) {
  .org-chart { padding: 2rem 1.2rem 2.4rem; }
  .org-node.lead { min-width: 0; width: 100%; }
  .org-lead .org-node.lead { width: 100%; }
  .org-mgmt { flex-direction: column; align-items: stretch; gap: 0; padding-top: 0; }
  .org-mgmt::before { display: none; }
  .org-col { width: 100%; }
  .org-col::before { height: 20px; }
  .org-guru { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
}
@media (max-width: 480px) {
  .org-guru { grid-template-columns: 1fr; }
}

/* ─── NAV DROPDOWNS ─── */
.has-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.caret { font-size: 0.62em; transition: transform 0.25s; display: inline-block; margin-left: 0.15rem; }
.dropdown { list-style: none; }

/* Desktop: floating dropdown on hover */
@media (min-width: 901px) {
  .nav-links .dropdown-toggle { display: inline-flex; align-items: center; }
  .dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    min-width: 195px; background: var(--white);
    border: 1px solid var(--border-beige); border-radius: 12px;
    box-shadow: 0 14px 32px rgba(61,40,23,0.15);
    padding: 0.5rem; margin-top: 0.7rem; z-index: 200;
  }
  .dropdown::before { content: ''; position: absolute; top: -0.7rem; left: 0; right: 0; height: 0.7rem; }
  .has-dropdown:hover > .dropdown { display: block; }
  .has-dropdown:hover > .dropdown-toggle .caret { transform: rotate(180deg); }
  .dropdown li a {
    display: block; padding: 0.6rem 0.9rem; border-radius: 7px;
    font-size: 0.9rem; color: var(--brown); white-space: nowrap;
  }
  .dropdown li a:hover { background: rgba(184,137,62,0.1); color: var(--warm-gold); }
  .dropdown li a.active { color: var(--warm-gold); font-weight: 600; }
}

/* Mobile: accordion */
@media (max-width: 900px) {
  .nav-links .dropdown-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; }
  .dropdown { display: none; background: rgba(184,137,62,0.05); border-radius: 8px; margin: 0.1rem 0 0.5rem; }
  .has-dropdown.open > .dropdown { display: block; }
  .has-dropdown.open > .dropdown-toggle .caret { transform: rotate(180deg); }
  .nav-links .dropdown a { padding-left: 1.5rem; font-size: 0.9rem; }
  .nav-links .dropdown li:last-child a { border-bottom: none; }
}

/* =========================================================
   PREMIUM UI/UX TOUCH-UP — 2026
   Kemasan visual sahaja: flow, section id, class dan fungsi dikekalkan.
   ========================================================= */
:root {
  --cream-bg: #F6F0E5;
  --ivory: #FFFCF6;
  --paper: #F0E6D2;
  --warm-gold: #B8893E;
  --soft-gold: #D7AA5C;
  --gold-light: #F0D18B;
  --gold-dark: #8B6420;
  --gold-darker: #624313;
  --deep-brown: #2F2117;
  --brown: #563B25;
  --muted-brown: #7B644A;
  --text-light: #CDBB94;
  --border-beige: #E9DBC0;
  --white: #FFFFFF;
  --shadow-sm: 0 8px 24px rgba(47, 33, 23, 0.08);
  --shadow-md: 0 18px 46px rgba(47, 33, 23, 0.13);
  --shadow-gold: 0 18px 40px rgba(184, 137, 62, 0.20);
  --radius-md: 18px;
  --radius-lg: 28px;
}

html { font-size: 17px; scroll-padding-top: 98px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 4% 8%, rgba(212,168,87,0.16), transparent 28rem),
    radial-gradient(circle at 94% 18%, rgba(184,137,62,0.10), transparent 26rem),
    var(--cream-bg);
  color: var(--deep-brown);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(45deg, var(--deep-brown) 25%, transparent 25%),
    linear-gradient(-45deg, var(--deep-brown) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--deep-brown) 75%),
    linear-gradient(-45deg, transparent 75%, var(--deep-brown) 75%);
  background-size: 34px 34px;
  background-position: 0 0, 0 17px, 17px -17px, -17px 0;
}

a, button { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
section { padding: clamp(3.6rem, 7vw, 6.2rem) 5%; }
.section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em; }
.section-title { letter-spacing: -0.02em; }
.divider { border-radius: 999px; }

.hero-inner,
.tentang-grid,
.pakej-grid,
.online-banner,
.hubungi-grid,
.app-grid,
.speed-grid,
.modul-grid,
.cara-flow,
.galeri-grid,
.form-card,
.outcome-head,
.galeri-head,
.cara-head,
.form-head,
.guru-head {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.pakej-intro { max-width: 680px; }

/* Navigation */
nav {
  top: 0;
  padding: 0.62rem 5%;
  background: rgba(255, 252, 246, 0.84);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid rgba(184,137,62,0.18);
  box-shadow: 0 10px 28px rgba(47,33,23,0.07);
}
.nav-logo { min-width: 0; }
.nav-logo img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 8px 16px rgba(47,33,23,0.13));
}
.nav-logo-text { font-size: 1.02rem; letter-spacing: -0.01em; }
.nav-logo-text span { margin-top: 0.18rem; color: var(--gold-dark); }
.nav-links { align-items: center; gap: clamp(0.55rem, 1.4vw, 1.15rem); }
.nav-links a {
  position: relative;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.52rem 0.1rem;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 0.12rem;
  right: 0.12rem;
  bottom: 0.32rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--warm-gold), var(--soft-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-cta,
.btn-primary,
.btn-outline,
.btn-pakej,
.btn-pakej-outline,
.btn-web,
.form-submit {
  border-radius: 999px;
}
.nav-cta {
  box-shadow: 0 10px 22px rgba(184,137,62,0.25);
  letter-spacing: 0.06em;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(184,137,62,0.32); }
.dropdown {
  transform-origin: top center;
  animation: aqhDrop 0.18s ease both;
}
@keyframes aqhDrop { from { opacity: 0; transform: translateY(6px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (min-width: 901px) {
  .dropdown {
    min-width: 220px;
    border-radius: 16px;
    border: 1px solid rgba(184,137,62,0.22);
    box-shadow: 0 20px 42px rgba(47,33,23,0.16);
  }
  .dropdown li a { border-radius: 12px; font-size: 0.84rem; }
}

/* Hero */
#hero {
  min-height: 88vh;
  padding: clamp(4.2rem, 8vw, 6.8rem) 5%;
  background:
    linear-gradient(115deg, rgba(255,252,246,0.92), rgba(246,240,229,0.75)),
    radial-gradient(circle at 18% 40%, rgba(184,137,62,0.18), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(212,168,87,0.16), transparent 24rem),
    var(--cream-bg);
}
.hero-pattern { opacity: 0.045; }
.hero-inner { grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr); gap: clamp(2rem, 5vw, 5rem); }
.hero-content { max-width: 650px; }
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 5.15rem);
  line-height: 0.98;
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--gold-dark); }
.hero-subtitle { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--muted-brown); max-width: 560px; }
.hero-actions { gap: 0.8rem; }
.btn-primary,
.btn-outline,
.btn-pakej,
.btn-web,
.form-submit {
  box-shadow: 0 12px 28px rgba(184,137,62,0.22);
}
.btn-primary:hover,
.btn-pakej:hover,
.btn-web:hover,
.form-submit:hover { transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,0.48); backdrop-filter: blur(10px); }
.hero-features { max-width: 650px; gap: 0.9rem; }
.hero-feature {
  border: 1px solid rgba(184,137,62,0.22);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.hero-feature:hover { border-color: rgba(184,137,62,0.55); box-shadow: var(--shadow-gold); }
.hf-thumb { height: 78px; }
.hf-body { padding: 0.72rem 0.78rem 0.86rem; }
.hero-feature .hf-title { font-size: 0.76rem; }
.hf-desc { color: var(--muted-brown); }
.hero-image-wrap::before,
.hero-image-wrap::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(184,137,62,0.16), rgba(212,168,87,0.05));
  pointer-events: none;
}
.hero-image-wrap::before { width: 150px; height: 150px; right: 2%; top: 6%; }
.hero-image-wrap::after { width: 92px; height: 92px; left: 10%; bottom: 7%; }
.hero-image {
  width: min(100%, 570px);
  height: clamp(420px, 42vw, 590px);
  border-radius: 36px 150px 36px 150px;
  border: 1px solid rgba(184,137,62,0.22);
  border-left: 0;
  padding: 0;
  box-shadow: -24px 28px 70px rgba(47,33,23,0.20);
}

/* About & guru profile */
#tentang { background: linear-gradient(180deg, var(--ivory), #F8F0E1); }
.tentang-grid { gap: clamp(2rem, 6vw, 5rem); }
.visi-box,
.contact-card,
.hours-card,
.map-address,
.app-feature,
.speed-feature,
.cara-step,
.org-node {
  border-radius: var(--radius-md);
}
.visi-box { border-left: 0; border: 1px solid rgba(184,137,62,0.22); box-shadow: var(--shadow-sm); }
.ustaz-card,
.form-card,
.org-chart,
.team-card,
.outcome-card,
.testi-card,
.pakej-card,
.online-banner {
  border-radius: var(--radius-lg);
}
.ustaz-card { box-shadow: var(--shadow-md); border-color: rgba(184,137,62,0.20); }
.ustaz-top { background: radial-gradient(circle at top, rgba(212,168,87,0.20), rgba(255,252,246,0.9) 68%); }
.ustaz-photo { width: 176px; height: 176px; box-shadow: 0 18px 36px rgba(47,33,23,0.20), 0 0 0 2px var(--warm-gold); }
.achievement { border-bottom-color: rgba(184,137,62,0.14); }
.achievement-icon { width: 18px; height: 18px; border-radius: 50%; background: rgba(184,137,62,0.12); display: inline-flex; align-items: center; justify-content: center; font-size: 0.48rem; margin-top: 0.18rem; }
.guru-band { background: linear-gradient(180deg, #EFE4CE, #F8F0E1); }
.guru-viewport { border-radius: 26px; }
.guru-photo { border-radius: 18px; background: var(--white); }
.guru-bio { background: rgba(255,255,255,0.62); border: 1px solid rgba(184,137,62,0.16); border-radius: 22px; padding: 1.15rem 1.35rem; box-shadow: var(--shadow-sm); }

/* Packages */
#pakej { background: linear-gradient(180deg, #F8F0E1, var(--cream-bg)); }
.online-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,168,87,0.28);
  box-shadow: 0 24px 58px rgba(47,33,23,0.18);
}
.online-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at 10% 10%, rgba(240,209,139,0.22), transparent 20rem), radial-gradient(circle at 90% 85%, rgba(184,137,62,0.18), transparent 18rem);
}
.online-banner > * { position: relative; z-index: 1; }
.online-tier,
.pakej-tier {
  border-radius: 18px;
}
.online-tier { background: rgba(255,252,246,0.08); border: 1px solid rgba(240,209,139,0.18); }
.pakej-grid { gap: 1.4rem; }
.pakej-card {
  border: 1px solid rgba(212,168,87,0.30);
  background:
    linear-gradient(145deg, rgba(61,40,23,0.94), rgba(36,24,15,0.98)),
    radial-gradient(circle at 15% 0%, rgba(212,168,87,0.22), transparent 20rem);
  box-shadow: 0 18px 44px rgba(47,33,23,0.20);
}
.pakej-card.featured { transform: translateY(-10px); }
.pakej-card.featured:hover { transform: translateY(-16px); }
.featured-badge { border-radius: 999px; top: 1.15rem; right: 1.15rem; }
.pakej-header { padding-top: 2rem; }
.pakej-features li { border-bottom: 1px solid rgba(240,209,139,0.08); }
.pakej-features li:last-child { border-bottom: 0; }

/* Testimonial, outcome & gallery */
#testimoni,
#outcome { background: linear-gradient(180deg, var(--ivory), #F8F0E1); }
.marquee { padding: 1.8rem 0; }
.testi-card,
.outcome-card {
  border: 1px solid rgba(184,137,62,0.18);
  box-shadow: var(--shadow-sm);
}
.testi-card { border-radius: 12px 32px 32px 32px; }
.testi-icon,
.outcome-badge { box-shadow: 0 10px 22px rgba(184,137,62,0.26); }
.outcome-photo { border-color: rgba(184,137,62,0.55); }
.galeri-grid { gap: 1.05rem; }
.galeri-item { border-radius: 22px; box-shadow: var(--shadow-sm); border-color: rgba(184,137,62,0.18); }
.galeri-overlay { opacity: 1; background: linear-gradient(to top, rgba(47,33,23,0.86) 0%, rgba(47,33,23,0.28) 48%, rgba(47,33,23,0) 100%); }
.galeri-cap { opacity: 1; transform: translateY(0); }

/* Modul, app, speed */
#modul { background: var(--cream-bg); }
.modul-grid {
  background: rgba(255,252,246,0.58);
  border: 1px solid rgba(184,137,62,0.14);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.2rem, 3vw, 2rem);
}
#aplikasi { background: linear-gradient(180deg, #EFE4CE, #F8F0E1); }
.app-phone-mockup { box-shadow: 0 30px 70px rgba(47,33,23,0.28); }
.app-feature { background: rgba(255,255,255,0.58); box-shadow: var(--shadow-sm); }
.app-feature-icon,
.speed-feature-icon,
.contact-icon {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(184,137,62,0.18), rgba(212,168,87,0.10));
  color: var(--gold-dark);
}
.store-btn { border-radius: 16px; box-shadow: 0 12px 24px rgba(47,33,23,0.15); }
#speed { background: var(--ivory); }
.speed-device { filter: drop-shadow(0 26px 36px rgba(47,33,23,0.18)); }
.speed-feature { background: rgba(255,255,255,0.56); border: 1px solid rgba(184,137,62,0.14); padding: 1rem; box-shadow: var(--shadow-sm); }

/* Cara & form */
#cara { background: linear-gradient(180deg, var(--cream-bg), var(--ivory)); }
.cara-flow { gap: 0.85rem; }
.cara-step { box-shadow: var(--shadow-sm); }
.cara-pill { background: linear-gradient(135deg, var(--gold-dark), var(--warm-gold)); }
#formdaftar {
  background:
    radial-gradient(circle at 20% 20%, rgba(240,209,139,0.18), transparent 26rem),
    linear-gradient(180deg, #F8F0E1, #EFE4CE);
}
.form-card {
  border: 1px solid rgba(184,137,62,0.18);
  box-shadow: 0 28px 68px rgba(47,33,23,0.15);
}
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 16px;
  background: #FFFCF7;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: rgba(184,137,62,0.48); }
.form-submit { background: linear-gradient(135deg, var(--gold-dark), var(--warm-gold) 55%, var(--soft-gold)); }

/* Contact & footer */
#hubungi { background: var(--cream-bg); }
.contact-card,
.hours-card,
.map-address,
.map-embed { box-shadow: var(--shadow-sm); }
.map-embed { border-radius: 24px; }
footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(212,168,87,0.16), transparent 20rem),
    linear-gradient(135deg, #2F2117, #1E140D);
}
.social-link { border-radius: 50%; }

/* Team page premium polish */
.team-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(212,168,87,0.18), transparent 22rem),
    radial-gradient(circle at 92% 18%, rgba(184,137,62,0.10), transparent 26rem),
    var(--cream-bg);
}
.team-hero {
  position: relative;
  max-width: 1120px;
  padding-top: clamp(3rem, 7vw, 5.6rem);
}
.team-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.86rem;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(184,137,62,0.18);
  border-radius: 999px;
}
.team-h1 { font-size: clamp(2.45rem, 6vw, 4.35rem); letter-spacing: -0.03em; }
.team-sub { max-width: 720px; }
.team-tab { box-shadow: var(--shadow-sm); border-color: rgba(184,137,62,0.22); }
.team-tab.active { background: linear-gradient(135deg, var(--gold-dark), var(--warm-gold)); box-shadow: var(--shadow-gold); }
.team-grid-wrap { max-width: 1260px; }
.team-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  border: 1px solid rgba(184,137,62,0.18);
  box-shadow: var(--shadow-sm);
}
.team-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 86px;
  background: linear-gradient(135deg, rgba(184,137,62,0.16), rgba(212,168,87,0.06));
  pointer-events: none;
}
.team-card > * { position: relative; z-index: 1; }
.team-photo { width: 118px; height: 118px; box-shadow: 0 0 0 4px rgba(255,255,255,0.96), 0 0 0 6px rgba(184,137,62,0.46), 0 16px 32px rgba(47,33,23,0.20); }
.team-name { font-size: 1.28rem; }
.team-role {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: rgba(184,137,62,0.10);
  color: var(--gold-dark);
}
.team-qual { max-width: 94%; margin: 0 auto; }
.org-chart { box-shadow: var(--shadow-md); border-color: rgba(184,137,62,0.18); }
.org-section-label::before,
.org-section-label::after {
  content: '';
  display: inline-block;
  width: min(96px, 18vw);
  height: 1px;
  background: rgba(184,137,62,0.38);
  vertical-align: middle;
  margin: 0 0.9rem;
}

/* Responsive refinement */
@media (max-width: 1100px) {
  .nav-links { gap: 0.55rem; }
  .nav-logo-text { font-size: 0.9rem; }
  .nav-logo-text span { font-size: 0.5rem; letter-spacing: 0.09em; }
  .nav-cta { padding: 0.55rem 1.05rem; }
  .hero-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pakej-card.featured { transform: none; }
  .pakej-card.featured:hover { transform: translateY(-6px); }
}
@media (max-width: 900px) {
  html { scroll-padding-top: 80px; }
  nav { padding: 0.68rem 5%; }
  .nav-logo img { width: 50px; height: 50px; }
  .nav-logo-text { font-size: 0.86rem; max-width: 220px; white-space: normal; }
  .nav-logo-text span { white-space: normal; line-height: 1.25; }
  .nav-toggle {
    border: 1px solid rgba(184,137,62,0.22);
    border-radius: 14px;
    background: rgba(255,255,255,0.62);
  }
  .nav-links {
    display: flex;
    position: absolute;
    left: 5%;
    right: 5%;
    top: calc(100% + 0.6rem);
    width: auto;
    max-height: min(76vh, 620px);
    overflow: auto;
    margin-top: 0;
    padding: 0.75rem;
    border: 1px solid rgba(184,137,62,0.18);
    border-radius: 22px;
    background: rgba(255,252,246,0.98);
    box-shadow: 0 24px 54px rgba(47,33,23,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { padding: 0.82rem 0.9rem; border-radius: 14px; border-bottom: 0; }
  .nav-links a:hover { background: rgba(184,137,62,0.08); }
  .nav-links > li > a::after { display: none; }
  .nav-links .dropdown { margin: 0.15rem 0 0.5rem; border: 1px solid rgba(184,137,62,0.12); }
  .nav-links .dropdown a { padding-left: 1rem; }
  #hero { min-height: auto; padding-top: 2.5rem; text-align: center; }
  .hero-inner { gap: 1.7rem; }
  .hero-content { padding-right: 0; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image { height: min(62vw, 350px); border-radius: 26px; border: 1px solid rgba(184,137,62,0.25); }
  .hero-image-wrap::before,
  .hero-image-wrap::after { display: none; }
  .tentang-grid,
  .hubungi-grid,
  .app-grid,
  .speed-grid { gap: 2.2rem; }
  .pakej-grid { gap: 1.1rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
  .cara-flow { align-items: stretch; }
}
@media (max-width: 700px) {
  section { padding: 3.2rem 5%; }
  .hero-title { font-size: clamp(2.35rem, 13vw, 3.35rem); }
  .hero-features { grid-template-columns: 1fr 1fr; gap: 0.72rem; }
  .hf-thumb { height: 68px; }
  .hero-actions a { width: 100%; text-align: center; }
  .online-banner { border-radius: 24px; }
  .pakej-card,
  .team-card,
  .form-card,
  .org-chart { border-radius: 24px; }
  .marquee .testi-card { flex-basis: 82vw; }
  .marquee .outcome-card { flex-basis: 78vw; }
  .galeri-grid { grid-template-columns: 1fr 1fr; gap: 0.72rem; }
  .galeri-item { border-radius: 18px; }
  .app-phone-mockup { width: min(230px, 74vw); height: min(460px, 148vw); }
  .team-card { min-height: 0; }
  .org-section-label::before,
  .org-section-label::after { width: 36px; margin: 0 0.45rem; }
}
@media (max-width: 480px) {
  html { font-size: 16px; }
  .nav-logo { gap: 0.62rem; }
  .nav-logo img { width: 46px; height: 46px; }
  .nav-logo-text { font-size: 0.78rem; max-width: 180px; }
  .nav-logo-text span { font-size: 0.47rem; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-feature { flex-direction: row; align-items: center; text-align: left; }
  .hf-thumb { width: 38%; height: 96px; flex: 0 0 auto; }
  .hf-body { flex: 1; }
  .online-tiers { grid-template-columns: 1fr; }
  .galeri-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.15rem; }
  .form-submit { font-size: 0.82rem; line-height: 1.35; }
  .team-h1 { font-size: 2.15rem; }
  .team-photo { width: 108px; height: 108px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   AQH FINAL TOUCH-UP — Screenshot refinement
   Fokus: hero mobile lebih kemas + galeri tanpa background checker
   ========================================================= */

/* Buang corak checker global yang nampak seperti background transparent */
body::before {
  display: none !important;
  background-image: none !important;
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(212,168,87,0.14), transparent 28rem),
    radial-gradient(circle at 92% 20%, rgba(184,137,62,0.08), transparent 26rem),
    linear-gradient(180deg, #FFFCF6 0%, #F6F0E5 42%, #F8F0E1 100%) !important;
}

/* HERO — mobile/tablet: elak gambar tepi jadi pelik, fokuskan headline + kad */
@media (max-width: 900px) {
  #hero {
    min-height: auto !important;
    padding: 3.4rem 5% 3.8rem !important;
    text-align: center !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(212,168,87,0.20), transparent 19rem),
      linear-gradient(180deg, #FFFCF6 0%, #F6F0E5 100%) !important;
  }

  .hero-pattern {
    opacity: 0.025 !important;
  }

  .hero-inner {
    display: block !important;
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
  }

  .hero-image-wrap {
    display: none !important;
  }

  .hero-content {
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .hero-title {
    font-size: clamp(2.25rem, 9vw, 3.25rem) !important;
    line-height: 1.03 !important;
    margin-bottom: 0.95rem !important;
  }

  .hero-subtitle {
    max-width: 560px !important;
    margin: 0 auto 1.6rem !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
  }

  .hero-features {
    max-width: 560px !important;
    margin: 0 auto 1.9rem !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.9rem !important;
  }

  .hero-feature {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(184,137,62,0.20) !important;
    box-shadow: 0 10px 26px rgba(47,33,23,0.08) !important;
  }

  .hf-thumb {
    width: 100% !important;
    height: 84px !important;
    flex: 0 0 auto !important;
  }

  .hf-body {
    padding: 0.78rem 0.72rem 0.9rem !important;
  }

  .hero-feature .hf-title {
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
  }

  .hf-desc {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  .hero-actions {
    max-width: 560px !important;
    margin: 0 auto !important;
    gap: 0.85rem !important;
  }

  .hero-actions a {
    min-height: 58px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  #hero {
    padding-top: 2.6rem !important;
  }

  .hero-title {
    font-size: clamp(2rem, 10.5vw, 2.85rem) !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.68rem !important;
  }

  .hf-thumb {
    height: 72px !important;
  }

  .hf-body {
    padding: 0.68rem 0.55rem 0.78rem !important;
  }

  .hero-feature .hf-title {
    font-size: 0.82rem !important;
  }

  .hf-desc {
    font-size: 0.68rem !important;
  }
}

/* GALERI — tukar kepada section bersih, premium dan tidak bersilang/checker */
#galeri {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(212,168,87,0.18), transparent 24rem),
    radial-gradient(circle at 86% 72%, rgba(184,137,62,0.11), transparent 24rem),
    linear-gradient(180deg, #FFFCF6 0%, #F6EFE1 100%) !important;
}

#galeri::before {
  content: '';
  position: absolute;
  inset: 1.2rem 5%;
  border: 1px solid rgba(184,137,62,0.10);
  border-radius: 36px;
  pointer-events: none;
}

#galeri::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -80px;
  border-radius: 50%;
  background: rgba(212,168,87,0.10);
  pointer-events: none;
}

.galeri-head,
.galeri-grid,
.galeri-hint {
  position: relative;
  z-index: 1;
}

.galeri-head {
  max-width: 720px !important;
  margin: 0 auto 2.3rem !important;
}

.galeri-head .section-label {
  justify-content: center !important;
}

.galeri-head .section-title {
  margin-bottom: 0.75rem !important;
}

.galeri-grid {
  max-width: 1180px !important;
  margin: 0 auto !important;
  gap: 1.15rem !important;
}

.galeri-item {
  aspect-ratio: 4 / 3 !important;
  border-radius: 26px !important;
  border: 1px solid rgba(184,137,62,0.18) !important;
  box-shadow: 0 14px 34px rgba(47,33,23,0.12) !important;
  background: #fff !important;
}

.galeri-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(47,33,23,0.08) 0%, rgba(47,33,23,0.76) 100%);
  pointer-events: none;
}

.galeri-item img {
  z-index: 0;
  filter: saturate(1.04) contrast(1.02) !important;
}

.galeri-overlay {
  z-index: 2;
  opacity: 1 !important;
  background: linear-gradient(to top, rgba(38,27,20,0.82) 0%, rgba(38,27,20,0.22) 56%, rgba(38,27,20,0.02) 100%) !important;
}

.galeri-cap {
  width: 100%;
  padding: 1.1rem 1.05rem 1.15rem !important;
  opacity: 1 !important;
  transform: none !important;
}

.galeri-tag {
  border-radius: 999px !important;
  background: rgba(215,170,92,0.94) !important;
  color: #2F2117 !important;
  padding: 0.23rem 0.68rem !important;
  font-size: 0.56rem !important;
}

.galeri-cap h4 {
  color: #fff !important;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28) !important;
}

.galeri-cap p {
  color: rgba(255,252,246,0.88) !important;
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.24) !important;
}

.galeri-hint {
  margin-top: 1.5rem !important;
  color: var(--muted-brown) !important;
}

@media (max-width: 700px) {
  #galeri::before {
    inset: 0.85rem 3.5%;
    border-radius: 28px;
  }

  .galeri-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.82rem !important;
  }

  .galeri-item {
    aspect-ratio: 0.92 / 1 !important;
    border-radius: 20px !important;
  }

  .galeri-cap {
    padding: 0.85rem !important;
  }

  .galeri-cap h4 {
    font-size: 1.02rem !important;
  }

  .galeri-cap p {
    font-size: 0.72rem !important;
  }
}

@media (max-width: 420px) {
  .galeri-grid {
    grid-template-columns: 1fr !important;
  }

  .galeri-item {
    aspect-ratio: 4 / 3 !important;
  }
}


/* =========================================================
   AQH FINAL TOUCH-UP V3 — Hero mobile ikut contoh user
   Fokus: paparan phone tunjuk gambar penuh di atas, tajuk bawah
   ========================================================= */
@media (max-width: 900px) {
  nav {
    padding: 0.82rem 4.8% !important;
  }

  #hero {
    min-height: auto !important;
    padding: 1.55rem 4.8% 3.2rem !important;
    text-align: left !important;
    background:
      linear-gradient(180deg, #FFFDF7 0%, #F7F1E6 100%) !important;
  }

  .hero-pattern {
    opacity: 0.04 !important;
  }

  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
    max-width: 760px !important;
    margin: 0 auto !important;
  }

  .hero-image-wrap {
    display: block !important;
    order: -1 !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-image-wrap::before,
  .hero-image-wrap::after {
    display: none !important;
  }

  .hero-image {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 1.42 / 1 !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 30px !important;
    border: 1.5px solid rgba(184,137,62,0.42) !important;
    box-shadow: 0 16px 38px rgba(47,33,23,0.12) !important;
    padding-right: 0 !important;
  }

  .hero-content {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.3rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 0.9rem !important;
  }

  .hero-title em {
    display: block !important;
  }

  .hero-subtitle {
    max-width: 100% !important;
    margin: 0 0 1.65rem !important;
    font-size: 1rem !important;
    line-height: 1.72 !important;
    text-align: left !important;
  }

  .hero-features {
    max-width: 100% !important;
    margin: 0 0 1.8rem !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.88rem !important;
  }

  .hero-feature {
    border-radius: 24px !important;
    min-height: 0 !important;
    background: rgba(255,255,255,0.94) !important;
    box-shadow: 0 10px 28px rgba(47,33,23,0.08) !important;
  }

  .hf-thumb {
    width: 100% !important;
    height: 86px !important;
  }

  .hf-body {
    padding: 0.9rem 0.8rem 0.95rem !important;
  }

  .hero-feature .hf-title,
  .hf-desc {
    text-align: center !important;
  }

  .hero-feature .hf-title {
    font-size: 0.98rem !important;
    line-height: 1.24 !important;
    margin-bottom: 0.28rem !important;
  }

  .hf-desc {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    margin: 0 !important;
    justify-content: stretch !important;
  }

  .hero-actions a {
    width: 100% !important;
    min-height: 58px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.76rem 4.6% !important;
  }

  .nav-logo img {
    width: 48px !important;
    height: 48px !important;
  }

  .nav-logo-text {
    font-size: 0.76rem !important;
    max-width: 185px !important;
  }

  .nav-logo-text span {
    font-size: 0.46rem !important;
    letter-spacing: 0.11em !important;
  }

  #hero {
    padding: 1.35rem 4.8% 2.9rem !important;
  }

  .hero-inner {
    gap: 1.5rem !important;
  }

  .hero-image {
    border-radius: 24px !important;
    aspect-ratio: 1.38 / 1 !important;
  }

  .hero-title {
    font-size: clamp(2.05rem, 8.9vw, 2.85rem) !important;
    margin-bottom: 0.8rem !important;
  }

  .hero-subtitle {
    font-size: 0.96rem !important;
    margin-bottom: 1.45rem !important;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
    margin-bottom: 1.55rem !important;
  }

  .hf-thumb {
    height: 78px !important;
  }

  .hf-body {
    padding: 0.75rem 0.65rem 0.85rem !important;
  }

  .hero-feature .hf-title {
    font-size: 0.86rem !important;
  }

  .hf-desc {
    font-size: 0.71rem !important;
  }
}
