*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #01875f;
--green-dark: #056449;
--green-light: #e6f4ea;
--blue: #1a73e8;
  --surface: #f8f9fa;
  --card: #ffffff;
  --text: #202124;
  --text2: #3c4043;
  --muted: #5f6368;
  --border: #dadce0;
  --star: #fbbc04;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ─── TOPBAR ─── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: 1080px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Google Sans', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--text);
  text-decoration: none;
}
.brand-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(145deg, #0b5e38, var(--green) 60%, #2ed68a);
  display: grid; place-items: center;
  color: #fff; font-size: 13px; font-weight: 900;
  letter-spacing: -.5px;
}
.lang-switch {
  display: flex; align-items: center;
  background: var(--surface); border-radius: 999px;
  border: 1px solid var(--border); padding: 4px; gap: 2px;
}
.lang-switch button {
  border: none; background: transparent; cursor: pointer;
  padding: 6px 16px; border-radius: 999px;
  font-family: 'Google Sans', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--muted);
  transition: all .2s;
}
.lang-switch button.active {
  background: var(--green); color: #fff;
}

/* ─── LAYOUT ─── */
.page { max-width: 1080px; margin: auto; padding: 24px 24px 48px; }

/* ─── HERO CARD ─── */
.hero-card {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 20px;
}

.hero-banner {
  position: relative;
  min-height: 220px;
  padding: 32px;
  border-radius: 24px;
  overflow: hidden;

  background-image:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25)),
    url("../myAssets/banner.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}
.banner-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 28px 32px; color: #fff;
}
.banner-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 4px 12px; margin-bottom: 12px;
  font-size: 12px; font-weight: 500; width: fit-content;
}
.banner-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1.2;
  margin-bottom: 8px;
}
.banner-sub {
  font-size: 14px; opacity: .8; max-width: 400px;
}
.banner-phone {
  position: absolute;
  right: 32px;
  bottom: 0;
  width: 130px;
  height: 200px;
  background: #111;
  border-radius: 24px 24px 0 0;
  padding: 10px;
  box-shadow: -10px 10px 40px rgba(0,0,0,.4);
  overflow: hidden;
}

.phone-screen {
  height: 100%;
  border-radius: 16px 16px 0 0;
  background: #111;
  overflow: hidden;
  padding: 0;
}

.phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.25); margin: 8px 0; }
.phone-bar.w60 { width: 60%; }
.phone-bar.w80 { width: 80%; }
.phone-bar.w45 { width: 45%; }
.phone-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px;
}
.phone-cell {
  height: 40px; border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.playstore-card {
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 24px;
  margin: 24px 20px 28px;
  padding: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 10px 30px rgba(0,0,0,.06);
}
.playstore-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 14px 16px;

  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.playstore-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.playstore-text {
  font-family: 'Google Sans', Arial, sans-serif;
  font-size: 15px;
  color: var(--text, #202124);
  line-height: 1.4;
}

.playstore-text strong {
  font-weight: 800;
}

.playstore-text em {
  font-style: italic;
  font-weight: 700;
  color: var(--green, #01875f);
}
/* ─── APP INFO ROW ─── */
.app-info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 24px 16px;
}
.app-icon {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f3f4;
  box-shadow:
    0 1px 2px rgba(0,0,0,.14),
    0 8px 22px rgba(0,0,0,.08);
}
.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Meta */
.app-meta {
  flex: 1;
  min-width: 0;
}
.app-name {
  font-family: 'Google Sans', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text, #202124);
  margin-bottom: 7px;
}
.app-dev {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--green, #01875f);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-light, #e6f4ea);
  color: var(--green, #01875f);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.verified-badge .material-symbols-rounded {
  font-size: 14px;
  line-height: 1;
  font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 0,
    'opsz' 20;
}
/* Tags */
.app-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #5f6368;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 480px) {
  .stats-row {
    margin: 0 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 28px;
   margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card, #fff);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.stat-item {
  min-width: 90px;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--border);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-item:last-child {
  border-right: none;
}
.age-rating-box {
  width: 28px;
  height: 28px;
  border: 2px solid var(--text);
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-icon {
  font-size: 21px;
  color: var(--green);
  margin-bottom: 2px;
  font-variation-settings:
    'FILL' 1,
    'wght' 600,
    'GRAD' 0,
    'opsz' 24;
}

.stat-num {
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}

.stars-inline {
  color: var(--star);
  font-size: 12px;
  line-height: 1;
  letter-spacing: -1px;
}


/* ─── CTA BUTTONS ─── */
.cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 0 24px 24px;
}
.btn-download {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff;
  border: none; border-radius: 999px; padding: 14px 32px;
  font-family: 'Google Sans', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 16px rgba(15,157,88,.35);
}
.btn-download:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(15,157,88,.45); transform: translateY(-1px); }
.btn-secondary {
  height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Google Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: .2s ease;
}
.btn-secondary:hover { background: var(--green-light); }
.btn-secondary {
  min-width: 145px;
  background: #fff;
  color: var(--green, #01875f);
  border: 1px solid #dadce0;
}
.btn-icon { width: 20px; height: 20px; }

/* ─── SECTION BLOCK ─── */
.section-block {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px 28px; margin-bottom: 20px;
}
.preview-slider {
  position: relative;
}

.shots-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 6px 12px;
}

.shots-scroll::-webkit-scrollbar {
  display: none;
}

.shot-frame {
  flex: 0 0 auto;
}

.shot-screen {
  overflow: hidden;
}

.shot-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* tombol geser */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;

  background: var(--green);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.slider-btn.prev {
  left: -8px;
}

.slider-btn.next {
  right: -8px;
}

.slider-btn:hover {
  opacity: .85;
}

/* ─── FEATURE CHIPS ─── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.feature-chip {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px;
  border-top: 3px solid transparent; transition: all .2s;
}
.feature-chip:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.feature-chip:nth-child(1) { border-top-color: var(--green); }
.feature-chip:nth-child(2) { border-top-color: #1a73e8; }
.feature-chip:nth-child(3) { border-top-color: #ea4335; }
.chip-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 12px; font-size: 20px;
}
.chip-icon.green { background: #e6f4ee; }
.chip-icon.blue { background: #e8f0fe; }
.chip-icon.red { background: #fce8e6; }
.chip-label { font-family: 'Google Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.chip-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ─── SCREENSHOTS ─── */
.shots-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory;
}
.shots-scroll::-webkit-scrollbar { height: 4px; }
.shots-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.shots-scroll::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }
.shot-frame {
  flex: 0 0 160px; height: 280px; border-radius: 20px;
  border: 8px solid #1a1a1a; background: #1a1a1a;
  overflow: hidden; scroll-snap-align: start; position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.shot-screen {
  height: 100%; border-radius: 14px; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Google Sans', sans-serif; font-size: 13px; font-weight: 700;
  gap: 6px;
}
.shot-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot-screen.s1 { background: linear-gradient(160deg, #042b1b, #0f5f36); color: #2ed68a; }
.shot-screen.s2 { background: linear-gradient(160deg, #041f36, #0d4a7a); color: #63b3ed; }
.shot-screen.s3 { background: linear-gradient(160deg, #1f0429, #5a1580); color: #d6a3f5; }
.shot-screen.s4 { background: linear-gradient(160deg, #291407, #7a3a0d); color: #f5b863; }
.shot-screen.s5 { background: linear-gradient(160deg, #071f1f, #0d5a5a); color: #4fd1c5; }
.shot-label { font-size: 10px; opacity: .6; }

/* ─── RATING SECTION ─── */
.rating-layout {
  display: grid; grid-template-columns: 160px 1fr; gap: 32px; align-items: center;
}
.big-score {
  text-align: center;
  font-family: 'Google Sans', sans-serif;
}
.big-num { font-size: 64px; font-weight: 700; line-height: 1; color: var(--text); }
.big-stars { color: var(--star); font-size: 20px; margin: 6px 0 4px; }
.big-count { font-size: 13px; color: var(--muted); }
.bars-col { display: flex; flex-direction: column; gap: 6px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-num { font-size: 12px; color: var(--muted); width: 8px; text-align: right; }
.bar-stars { color: var(--star); font-size: 12px; }
.bar-track { flex: 1; height: 6px; background: #e8eaed; border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; background: var(--green); }
.bar-pct { font-size: 12px; color: var(--muted); width: 32px; }

/* ─── REVIEWS ─── */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-card {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 16px; border: 1px solid var(--border);
}
.reviewer-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Google Sans', sans-serif; font-size: 14px; font-weight: 700; color: #fff;
}
.avatar.a1 { background: #ea4335; }
.avatar.a2 { background: #1a73e8; }
.avatar.a3 { background: #fbbc04; }
.avatar.a4 { background: #34a853; }
.reviewer-info { flex: 1; }
.reviewer-name { font-weight: 500; font-size: 14px; }
.reviewer-date { font-size: 12px; color: var(--muted); }
.review-stars { color: var(--star); font-size: 14px; margin-bottom: 6px; }
.review-text { font-size: 14px; color: var(--text2); line-height: 1.5; }

/* ─── APP INFO TABLE ─── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.info-item {
  padding: 14px 16px; background: var(--surface);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.info-key { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 4px; }
.info-val { font-size: 15px; font-weight: 500; color: var(--text); }

/* ─── FAQ ─── */
.faq-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid var(--border, #e5e7eb);
}

.faq-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text, #111827);
  margin: 0 0 16px;

  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-title .material-symbols-rounded {
  font-size: 22px;
  color: var(--green, #0f9d58);
  font-variation-settings:
    'FILL' 1,
    'wght' 600,
    'GRAD' 0,
    'opsz' 24;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  width: 100%;
  text-align: left;
  padding: 16px;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: .25s ease;
}

.faq-item:hover {
  background: #f9fafb;
  border-color: rgba(15,157,88,.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-size: 15px;
  font-weight: 700;
  color: var(--text, #111827);
}

.faq-arrow {
  font-size: 22px;
  color: var(--muted, #6b7280);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted, #6b7280);
}

.faq-item.active {
  background: #f8fffb;
  border-color: rgba(15,157,88,.45);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--green, #0f9d58);
}

/* ─── SECURITY BADGE ─── */
.security-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--green-light);
  border-radius: var(--radius-sm); border: 1px solid rgba(15,157,88,.2);
}
.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);

  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon .material-symbols-rounded {
  font-size: 28px;
  font-variation-settings:
    'FILL' 1,
    'wght' 600,
    'GRAD' 0,
    'opsz' 24;
}

/* ─── FOOTER ─── */
.footer {
  max-width: 1080px; margin: 0 auto; padding: 0 24px 40px;
  text-align: center; font-size: 13px; color: var(--muted);
}
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--green); }

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
  .page { padding: 16px 16px 40px; }
  .topbar-inner { padding: 0 16px; }
  .hero-banner { height: 180px; }
  .banner-phone { display: none; }
  .banner-title { font-size: 20px; }
  .app-info-row { padding: 18px 20px; }
  .app-icon { width: 76px; height: 76px; font-size: 24px; }
  .app-name { font-size: 20px; }
  .stats-row, .feature-grid, .rating-layout, .review-grid, .info-grid { grid-template-columns: 1fr 1fr; }
  .rating-layout { grid-template-columns: 1fr; gap: 20px; }
  .section-block, .cta-row { padding: 20px; }
  .stat-item { padding: 12px 8px; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}

/* ─── ANIMATION ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-card, .feature-grid, .section-block { animation: fadeUp .4s ease both; }
.section-block:nth-child(2) { animation-delay: .05s; }
.section-block:nth-child(3) { animation-delay: .1s; }
.section-block:nth-child(4) { animation-delay: .15s; }

.hide { display: none; }
.pill-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-light); color: var(--green);
  border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 500;
  margin-right: 6px; margin-bottom: 6px;
}

/* ─── ABOUT TEXT ─── */
.about-text { font-size: 14px; color: var(--text2); line-height: 1.7; }
