/* ============================================================
   Clean.co.id — Pages Stylesheet v2.0
   Digunakan oleh: privacy-policy, terms-conditions,
                   disclaimer, 404
   ============================================================ */

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

:root {
  --cyan: #06B6D4;
  --navy: #0F172A;
  --gray-100: #F1F5F9;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-700: #334155;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #F8FAFC;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar__back {
  color: var(--cyan);
  font-size: 22px;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.topbar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 28px 20px 32px;
}

.page-hero--blue   { background: linear-gradient(135deg, #0F172A, #1E3A5F); }
.page-hero--amber  { background: linear-gradient(135deg, #1E3A5F, #0F172A); }
.page-hero--purple { background: linear-gradient(135deg, #2D1B69, #0F172A); }

.page-hero__label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.page-hero__date {
  font-size: 12px;
  color: var(--gray-400);
}

/* ---- CONTENT ---- */
.content {
  padding: 24px 20px 40px;
  max-width: 680px;
  margin: 0 auto;
}

.content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin: 28px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--cyan);
}

.content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.content p strong {
  color: var(--navy);
  font-weight: 600;
}

.content ul {
  margin: 0 0 14px 20px;
}

.content ul li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 5px;
}

.content a {
  color: var(--cyan);
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

/* ---- NOTICE BOXES ---- */
.notice {
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid transparent;
}

.notice--blue   { background: #EFF6FF; color: #1E40AF; border-color: #BFDBFE; }
.notice--amber  { background: #FFF7ED; color: #92400E; border-color: #FED7AA; }
.notice--purple { background: #FDF4FF; color: #6B21A8; border-color: #E9D5FF; }

/* ---- PAGE FOOTER ---- */
.page-footer {
  background: var(--navy);
  padding: 24px 20px;
  text-align: center;
  margin-top: 8px;
}

.page-footer a {
  color: var(--cyan);
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-display);
}

.page-footer p {
  color: var(--gray-700);
  font-size: 11px;
  margin-top: 10px;
}

/* ---- 404 PAGE ---- */
.page-404 {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.err-wrap {
  text-align: center;
  max-width: 320px;
}

.err-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 88px;
  line-height: 1;
  background: linear-gradient(90deg, var(--cyan), #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.err-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.err-sub {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 28px;
}

.err-btn {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  padding: 12px 28px;
  border-radius: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.err-btn:hover {
  background: #0284C7;
}
