/* ============================================================
   PAGES — kantongtehcelup.com
   Layout dan styles khusus per section/halaman
   ============================================================ */

/* ─── Hero Section ─── */
.hero-section {
  background: var(--forest-deep);
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--tea-green);
  opacity: 0.28;
  right: -80px;
  top: -120px;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--honey-gold);
  opacity: 0.1;
  right: 80px;
  bottom: -100px;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-16) var(--space-12);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--honey-gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title .accent { color: var(--honey-gold); }

.hero-sub {
  font-size: 15px;
  color: var(--mist-green);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge-wrap {
  flex-shrink: 0;
}

.hero-badge {
  background: rgba(251,249,245,0.06);
  border: 0.5px solid rgba(169,205,182,0.3);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  text-align: center;
  backdrop-filter: blur(4px);
  min-width: 160px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  color: var(--mist-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 40px;
  height: 0.5px;
  background: rgba(169,205,182,0.3);
  margin: 14px auto;
}

@media (max-width: 900px) {
  .hero-inner { padding: 48px 24px; }
  .hero-badge-wrap { display: none; }
}

@media (max-width: 600px) {
  .hero-section { min-height: auto; }
  .hero-inner { padding: 52px 20px; }
}

/* ─── Section: Produk ─── */
.section-produk {
  background: var(--cream-white);
}

.section-produk .section-header {
  margin-bottom: 0;
}

/* ─── Section: Keunggulan ─── */
.section-keunggulan {
  background: var(--cream-white);
}

/* ─── Section: Edukasi ─── */
.section-edukasi {
  background: #F5F2ED;
}

.edukasi-footer {
  text-align: center;
  margin-top: 32px;
}

/* ─── Section: Cara Order ─── */
.section-cara-order {
  background: var(--cream-white);
}

.cara-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cara-order-cta {
  background: var(--tea-mist);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 0.5px solid var(--divider);
}

.cara-order-cta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.cara-order-cta p {
  font-size: 13px;
  color: var(--mist-green);
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .cara-order-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Section: Testimoni ─── */
.section-testimoni {
  background: var(--tea-mist);
}

/* ─── Section: FAQ ─── */
.section-faq {
  background: var(--cream-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-grid-aside { display: none; }
}

.faq-cta-card {
  background: var(--forest-deep);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
}

.faq-cta-card p {
  font-size: 13px;
  color: var(--mist-green);
  margin-bottom: 16px;
  line-height: 1.65;
}

.faq-cta-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream-white);
  display: block;
  margin-bottom: 8px;
}

/* ─── Section: Alamat ─── */
.section-alamat {
  background: #F5F2ED;
}

/* ─── Section: CTA Banner ─── */
.section-cta {
  background: var(--cream-white);
  padding: var(--space-16) 0;
}

/* ─── Halaman Produk ─── */
.product-page-intro {
  background: var(--tea-mist);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-bottom: 32px;
  border: 0.5px solid var(--divider);
}

.product-page-intro p {
  font-size: 14px;
  color: var(--dark-bark);
  line-height: 1.7;
  margin-bottom: 8px;
}

.product-page-intro strong { color: var(--tea-green); }

.compare-section { margin-top: 64px; }
.compare-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 20px;
}

/* ─── Halaman Tentang ─── */
.about-hero {
  background: var(--forest-deep);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--tea-green);
  opacity: 0.2;
  right: -100px;
  top: -80px;
  pointer-events: none;
}

.about-hero-inner { position: relative; z-index: 1; }

.about-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--honey-gold);
  margin-bottom: 12px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--cream-white);
  line-height: 1.15;
  margin-bottom: 0;
  max-width: 600px;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .about-content-grid { grid-template-columns: 1fr; }
}

.about-stat-card {
  background: var(--tea-mist);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  border: 0.5px solid var(--divider);
}

.about-stat-card + .about-stat-card { margin-top: 16px; }

.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tea-green);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 12px;
  color: var(--mist-green);
  font-weight: 500;
}

.about-parent-note {
  background: var(--amber-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 0.5px solid rgba(199,145,60,0.2);
  margin-top: 32px;
}

.about-parent-note p {
  font-size: 13px;
  color: var(--dark-bark);
  line-height: 1.7;
}

/* ─── Single Article ─── */
.single-header {
  background: var(--forest-deep);
  padding: 52px 0;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.article-meta-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--honey-gold);
}

.article-meta-date {
  font-size: 12px;
  color: var(--mist-green);
}

.single-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--cream-white);
  line-height: 1.15;
  max-width: 720px;
}

.single-content {
  padding: 52px 0;
}

.related-articles {
  background: var(--tea-mist);
  padding: var(--space-16) 0;
  border-top: 0.5px solid var(--divider);
}

.related-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 24px;
}
