/*
Theme Name: Mahing Studio
Theme URI: https://mahingstudio.com
Author: Mahing Studio
Author URI: https://mahingstudio.com
Description: Landing page produk digital arsitektur
Version: 2.0
*/

/* ============================================================
   DESIGN SYSTEM — nrhouse.id inspired
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

/* Light mode (default) */
:root {
  --btn-buy-bg: #00C853;
  --gold:      #C8973A;
  --gold-lt:   #F0D9A8;
  --red:       #E53935;
  --green:     #25D366;

  --bg-body:   #FFFFFF;
  --bg-page:   #EFEFEF;
  --bg-card:   #FFFFFF;
  --bg-alt:    #F4F4F4;

  --text-main: #111111;
  --text-sub:  #444444;
  --text-mute: #999999;
  --text-xmute:#CCCCCC;

  --border:    #EBEBEB;
  --shadow:    0 2px 16px rgba(0,0,0,.07);
  --shadow-md: 0 4px 28px rgba(0,0,0,.11);

  --radius:    12px;
  --radius-sm: 8px;
  --font:      'Plus Jakarta Sans', sans-serif;

  /* Alias — semua CSS lama otomatis ikut dark mode */
  --dark:   var(--text-main);
  --white:  var(--bg-body);
  --gray1:  var(--text-sub);
  --gray2:  var(--text-sub);
  --gray3:  var(--text-mute);
  --gray4:  var(--text-xmute);
  --gray5:  var(--bg-alt);
}

/* Dark mode */
[data-theme="dark"] {
  --btn-buy-bg: #C8973A;
  --bg-body:   #141414;
  --bg-page:   #0A0A0A;
  --bg-card:   #1E1E1E;
  --bg-alt:    #1A1A1A;
  --bg-input:  #252525;

  --text-main: #F0F0F0;
  --text-sub:  #BBBBBB;
  --text-mute: #777777;
  --text-xmute:#444444;

  --border:    #2C2C2C;
  --shadow:    0 2px 16px rgba(0,0,0,.4);
  --shadow-md: 0 4px 28px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; font-size: 16px; background: var(--bg-page); }
body {
  font-family: var(--font); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased;
  background: var(--bg-body);
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0,0,0,.15);
  transition: background .3s, color .3s;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; padding: 0 18px; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #EBEBEB;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.site-logo { font-size: 18px; font-weight: 800; letter-spacing: -.5px; color: var(--dark); }
.site-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray2); transition: color .2s; }
.nav-links a:hover { color: var(--dark); }
.nav-links .nav-cta {
  background: var(--dark); color: var(--white);
  padding: 8px 18px; border-radius: 99px;
  font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.nav-links .nav-cta:hover { background: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid #EBEBEB;
  z-index: 99; padding: 16px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 15px; font-weight: 500; color: var(--dark);
}

/* ── SEO BIO ── */
.seo-bio {
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-body);
}
.seo-bio-h1 {
  display: none; /* Tersembunyi visual, tetap terbaca mesin pencari */
}
.seo-bio-desc {
  font-size: 13px; color: var(--text-mute);
  line-height: 1.7; text-align: center;
}
.seo-bio-desc strong { color: var(--text-sub); font-weight: 600; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  position: absolute; top: 16px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px;
  transition: background .3s, border-color .3s;
  z-index: 10;
}
.theme-toggle:hover { border-color: var(--gold); }

/* ── PROFILE HERO ── */
.profile-hero {
  position: relative;
  padding: 40px 18px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-body);
}
.profile-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, #C8973A, #F0D9A8);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; margin: 0 auto 14px;
  border: 3px solid var(--bg-body);
  box-shadow: 0 0 0 2px var(--gold);
  overflow: hidden;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-handle {
  font-size: 16px; font-weight: 700;
  color: var(--text-main); margin-bottom: 10px;
}
.profile-tags {
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.profile-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-alt);
  color: var(--text-sub);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 99px;
  border: 1px solid var(--border);
}
.profile-actions {
  display: flex; gap: 10px; margin-top: 16px;
  justify-content: center;
}
.btn-ig {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  transition: opacity .2s;
}
.btn-ig:hover { opacity: .88; }
.btn-wa-profile {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--green);
  color: #fff;
  padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  transition: opacity .2s;
}
.btn-wa-profile:hover { opacity: .88; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gray5); padding: 12px 0;
  border-bottom: 1px solid #EBEBEB;
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--gray2); }
.trust-item .icon { font-size: 14px; }

/* ── SECTION COMMONS ── */
.section { padding: 36px 0; }
.section-alt { background: var(--gray5); }
.section-header { text-align: center; margin-bottom: 24px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.section-title { font-size: 22px; font-weight: 800; letter-spacing: -.4px; line-height: 1.25; }
.section-desc { font-size: 13px; color: var(--gray2); margin-top: 8px; }

/* ── PRODUCT FILTER ── */
.products-filter { display: flex; justify-content: flex-start; gap: 6px; margin-bottom: 16px; overflow-x: auto; padding-bottom: 4px; }
.products-filter::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 6px 14px; border-radius: 99px; border: 1.5px solid #E0E0E0;
  background: var(--white); font-size: 12px; font-weight: 600;
  color: var(--gray2); cursor: pointer; transition: all .2s;
  font-family: var(--font); white-space: nowrap; flex-shrink: 0;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.product-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow .2s, background .3s;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); }

.product-image {
  position: relative; background: var(--bg-alt);
  width: 100%; height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 99px;
}
.badge-bestseller { background: #FFF3E0; color: #E65100; }
.badge-new        { background: #E8F5E9; color: #2E7D32; }
.badge-sale       { background: #FFEBEE; color: #C62828; }
.badge-fav        { background: #EDE7F6; color: #4527A0; }

.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.product-category { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.product-name { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--dark); }
.product-desc { font-size: 13px; color: var(--gray2); line-height: 1.6; flex: 1; }
.product-pricing { display: flex; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.price-current { font-size: 18px; font-weight: 800; color: var(--dark); }
.price-original { font-size: 13px; color: var(--gray4); text-decoration: line-through; }
.price-discount { font-size: 11px; font-weight: 700; background: #FFEBEE; color: var(--red); padding: 2px 7px; border-radius: 4px; }
.btn-buy {
  display: block; text-align: center; margin-top: 12px;
  background: var(--btn-buy-bg); color: #fff;
  padding: 11px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  letter-spacing: .2px;
  transition: background .3s;
}

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; border: 1px solid #EBEBEB;
}
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--gray2); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid #EBEBEB; position: relative;
}
.testimonial-quote {
  font-size: 48px; font-family: Georgia, serif; color: var(--gold-lt);
  line-height: 1; position: absolute; top: 12px; left: 20px;
}
.testimonial-stars { font-size: 13px; margin-bottom: 10px; margin-top: 24px; }
.testimonial-text { font-size: 14px; color: var(--gray1); line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.author-avatar { font-size: 28px; }
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--gray3); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--dark); color: var(--white);
  padding: 64px 0; text-align: center;
}
.cta-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.cta-title { font-size: 30px; font-weight: 800; letter-spacing: -.5px; }
.cta-desc { font-size: 15px; color: rgba(255,255,255,.6); margin-top: 10px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: var(--white);
  padding: 14px 28px; border-radius: 99px;
  font-size: 15px; font-weight: 700;
  transition: opacity .2s;
}
.btn-wa:hover { opacity: .88; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(255,255,255,.25); color: var(--white);
  padding: 14px 28px; border-radius: 99px;
  font-size: 15px; font-weight: 700;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: var(--white); }

/* ── FOOTER SIMPLE ── */
.simple-footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-body);
}
.btn-wa-footer {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; background: var(--green); color: var(--white);
  padding: 15px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  transition: opacity .2s;
}
.btn-wa-footer:hover { opacity: .88; }
.simple-footer-copy { font-size: 12px; color: var(--gray4); margin-top: 14px; }

/* ================================================================
   PRODUCT LANDING PAGE
   ================================================================ */

.lp-hero {
  background: var(--dark); color: var(--white);
  padding: 64px 0 56px; text-align: center;
}
.lp-hero-badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px; margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: 32px; font-weight: 800; letter-spacing: -.7px;
  line-height: 1.2; max-width: 680px; margin: 0 auto 16px;
}
.lp-hero h1 em { color: var(--gold); font-style: normal; }
.lp-hero p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 28px; }
.lp-hero-bullets {
  display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 32px;
}
.lp-hero-bullets li { font-size: 14px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 8px; }
.lp-price-box {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 20px 40px; margin-bottom: 24px;
}
.lp-price-old { font-size: 14px; color: rgba(255,255,255,.4); text-decoration: line-through; }
.lp-price-new { font-size: 36px; font-weight: 800; color: var(--gold); }
.lp-price-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; }
.btn-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white);
  padding: 16px 36px; border-radius: 99px;
  font-size: 16px; font-weight: 800;
  transition: opacity .2s; box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-hero-cta:hover { opacity: .88; }
.lp-payment-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 12px; }

.lp-pain { padding: 52px 0; background: #FAFAFA; }
.lp-pain-list { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-pain-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1px solid #EBEBEB;
  border-radius: var(--radius-sm); padding: 16px;
}
.lp-pain-item .pain-icon { font-size: 20px; flex-shrink: 0; }
.lp-pain-item p { font-size: 14px; color: var(--gray1); line-height: 1.5; }

.lp-contents { padding: 52px 0; }
.lp-contents-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.lp-content-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--radius-sm);
  border: 1px solid #EBEBEB; background: var(--white);
}
.lp-content-item.bonus { border-color: #FFF3E0; background: #FFFBF5; }
.content-icon { font-size: 22px; flex-shrink: 0; }
.content-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.content-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.content-desc { font-size: 12px; color: var(--gray2); margin-top: 2px; }

.lp-stats-bar {
  background: var(--dark); color: var(--white);
  padding: 28px 0; text-align: center;
}
.lp-stats-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.lp-stat { display: flex; flex-direction: column; }
.lp-stat-num { font-size: 28px; font-weight: 800; color: var(--gold); }
.lp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

.lp-testi { padding: 52px 0; background: #FAFAFA; }
.lp-testi-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.lp-cta-bottom { padding: 64px 0; text-align: center; }
.lp-cta-bottom .lp-price-box { margin: 28px auto; }
.btn-cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white);
  padding: 18px 44px; border-radius: 99px;
  font-size: 17px; font-weight: 800;
  transition: opacity .2s; box-shadow: 0 4px 24px rgba(37,211,102,.35);
}
.btn-cta-big:hover { opacity: .88; }

.lp-faq { padding: 48px 0; }
.faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #EBEBEB; border-radius: var(--radius-sm);
  background: var(--white); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--dark);
}
.faq-q .faq-toggle { font-size: 18px; color: var(--gray3); transition: transform .3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 18px; max-height: 0; overflow: hidden;
  font-size: 13px; color: var(--gray2); line-height: 1.7;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 18px 16px; }

/* Layout dikunci mobile-first — tidak ada breakpoint desktop */
.nav-links { display: none; }
.hamburger { display: flex; }

.cta-buttons { flex-direction: column; align-items: center; }
.lp-stats-inner { gap: 20px; }
.trust-inner { gap: 10px; flex-wrap: wrap; }
.lp-hero h1 { font-size: 24px; }
.lp-price-box { padding: 16px 28px; }
