/* Combined stylesheet for all pages */

/* --- Home Page Styles (index.css) --- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #FDF8F2; --warm-white: #FFFBF7;
    /*--blue-deep: #0C5F56; --blue-mid: #1A8C7F; --blue-light: #E1F5EE; --blue-accent: #2EC4B6;*/
    --blue-deep: #3490ef;
    --blue-mid: #03a9f4;
    --blue-light: #c2f0ff;
    --blue-accent: #61afff;
    --amber: #F4A228; --amber-light: #FEF5E4;
    --ink: #1C1C1A; --ink-muted: #5A5A55;
    --border: rgba(12,95,86,0.12);
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--cream); color: var(--ink); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(253,248,242,0.90);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; color: var(--blue-deep); text-decoration: none; }
  .nav-logo .dot { width: 10px; height: 10px; background: var(--blue-accent); border-radius: 50%; display: inline-block; }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a { font-size: 14px; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--blue-deep); }
  .btn-nav { background: var(--blue-deep); color: #fff !important; border: none; border-radius: 100px; padding: 0.5rem 1.4rem; font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; }
  .btn-nav:hover { background: var(--blue-mid) !important; transform: translateY(-1px); }

  /* HERO */
  .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem 5rem; position: relative; overflow: hidden; }
  .hero-bg { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(46,196,182,0.12) 0%, transparent 70%); pointer-events: none; }
  .hero-bg.c1 { width: 600px; height: 600px; top: -100px; left: -100px; }
  .hero-bg.c2 { width: 400px; height: 400px; bottom: 0; right: -80px; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); color: var(--blue-deep); border-radius: 100px; padding: 0.4rem 1rem; font-size: 13px; font-weight: 500; margin-bottom: 1.5rem; border: 1px solid rgba(12,95,86,0.15); }
  .ping { width: 8px; height: 8px; background: var(--blue-accent); border-radius: 50%; animation: ping 1.5s ease-in-out infinite; }
  @keyframes ping { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
  .hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem,7vw,5.5rem); line-height: 1.1; max-width: 780px; margin-bottom: 1.25rem; }
  .hero h1 em { color: var(--blue-deep); font-style: italic; }
  .hero p { font-size: 1.15rem; color: var(--ink-muted); line-height: 1.7; max-width: 520px; margin-bottom: 2.5rem; }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .btn-primary { background: var(--blue-deep); color: #fff; border: none; border-radius: 100px; padding: 0.85rem 2.2rem; font-family: var(--font-body); font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
  .btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,95,86,0.22); }
  .btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid rgba(28,28,26,0.2); border-radius: 100px; padding: 0.85rem 2.2rem; font-family: var(--font-body); font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.2s; }
  .btn-secondary:hover { border-color: var(--blue-mid); color: var(--blue-deep); }

  /* RECEIPT MOCKUP */
  .hero-mockup { margin-top: 3.5rem; width: 100%; max-width: 680px; }
  .receipt-container { background: var(--warm-white); border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 40px 80px rgba(12,95,86,0.1), 0 8px 24px rgba(0,0,0,0.05); overflow: hidden; }
  .receipt-header { background: var(--blue-deep); padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; }
  .receipt-header-title { color: #fff; font-family: var(--font-display); font-size: 18px; }
  .receipt-header-sub { color: rgba(255,255,255,0.65); font-size: 12px; margin-top: 2px; }
  .receipt-badge { background: var(--blue-accent); color: #fff; border-radius: 100px; padding: 0.3rem 0.9rem; font-size: 12px; font-weight: 500; }
  .receipt-body { padding: 1.5rem 2rem; }
  .r-row { display: flex; justify-content: space-between; font-size: 13px; padding: 0.4rem 0; border-bottom: 0.5px solid var(--border); }
  .r-row:last-child { border-bottom: none; }
  .r-label { color: var(--ink-muted); }
  .r-val { font-weight: 500; }
  .r-items { margin: 1rem 0; }
  .r-item { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 0.5px dashed rgba(12,95,86,0.15); font-size: 13px; }
  .r-item-name { font-weight: 500; }
  .r-item-sub { font-size: 12px; color: var(--ink-muted); }
  .r-item-price { font-weight: 600; color: var(--blue-deep); }
  .r-total { margin-top: 1rem; padding-top: 1rem; border-top: 2px dashed var(--blue-light); display: flex; justify-content: space-between; align-items: center; }
  .r-total-label { font-size: 14px; color: var(--ink-muted); }
  .r-total-note { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
  .r-total-val { font-family: var(--font-display); font-size: 24px; color: var(--blue-deep); }
  .receipt-footer { background: var(--blue-light); padding: 0.8rem 2rem; text-align: center; font-size: 12px; color: var(--blue-deep); }

  /* STATS */
  .stats-bar { display: flex; background: var(--warm-white); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
  .stat-item { flex: 1; text-align: center; padding: 2rem 1rem; border-right: 0.5px solid var(--border); }
  .stat-item:last-child { border-right: none; }
  .stat-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--blue-deep); }
  .stat-label { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }

  /* SECTIONS */
  .section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
  .section-no-top { padding-top: 0; }
  .section-label { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-mid); margin-bottom: 0.75rem; }
  .section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); line-height: 1.2; max-width: 540px; margin-bottom: 3rem; }

  /* FEATURES */
  .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
  .feature-card { background: var(--warm-white); border: 0.5px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: transform 0.2s, box-shadow 0.2s; }
  .feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(12,95,86,0.1); }
  .feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
  .feature-icon svg { width: 24px; height: 24px; stroke: var(--blue-deep); fill: none; stroke-width: 1.8; }
  .feature-title { font-weight: 600; font-size: 16px; margin-bottom: 0.5rem; }
  .feature-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

  /* HOW IT WORKS */
  .how-section { background: var(--blue-deep); padding: 6rem 2rem; text-align: center; }
  .how-inner { max-width: 900px; margin: 0 auto; }
  .how-section .section-label { color: var(--blue-accent); }
  .how-section .section-title { color: #fff; max-width: 600px; margin: 0 auto 3.5rem; }
  .steps-grid { display: flex; justify-content: center; align-items: flex-start; }
  .step-item { flex: 1; padding: 0 1.5rem; position: relative; }
  .step-num { width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; font-family: var(--font-display); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
  .step-title { color: #fff; font-weight: 500; font-size: 15px; margin-bottom: 0.5rem; }
  .step-desc { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }
  .step-line { position: absolute; top: 26px; left: calc(50% + 26px); width: calc(100% - 52px); height: 1px; background: rgba(255,255,255,0.15); }
  .step-item:last-child .step-line { display: none; }

  /* PRICING */
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
  .pricing-card { background: var(--warm-white); border: 0.5px solid var(--border); border-radius: 20px; padding: 2rem; position: relative; }
  .pricing-card.featured { border: 2px solid var(--blue-deep); }
  .pricing-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue-deep); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
  .pricing-plan { font-size: 13px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
  .pricing-price { font-family: var(--font-display); font-size: 2.5rem; color: var(--ink); line-height: 1; }
  .pricing-price span { font-size: 14px; font-family: var(--font-body); color: var(--ink-muted); font-weight: 400; }
  .pricing-desc { font-size: 13px; color: var(--ink-muted); margin: 0.75rem 0 1.25rem; }
  .pricing-features { list-style: none; margin-bottom: 1.75rem; }
  .pricing-features li { font-size: 13px; padding: 0.4rem 0; display: flex; align-items: center; gap: 8px; border-bottom: 0.5px solid var(--border); }
  .pricing-features li:last-child { border-bottom: none; }
  .check { width: 16px; height: 16px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .check::after { content: ''; width: 6px; height: 4px; border-left: 1.5px solid var(--blue-deep); border-bottom: 1.5px solid var(--blue-deep); transform: rotate(-45deg) translateY(-1px); display: block; }
  .btn-plan { display: block; width: 100%; text-align: center; padding: 0.75rem; border-radius: 100px; font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; }
  .btn-outline { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
  .btn-outline:hover { background: var(--blue-light); }
  .btn-filled { background: var(--blue-deep); color: #fff; }
  .btn-filled:hover { background: var(--blue-mid); }

  /* TESTIMONIALS */
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
  .testi-card { background: var(--warm-white); border: 0.5px solid var(--border); border-radius: 16px; padding: 1.5rem; }
  .testi-stars { color: var(--amber); font-size: 14px; margin-bottom: 0.75rem; }
  .testi-text { font-size: 14px; color: var(--ink); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 10px; }
  .testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--blue-deep); }
  .testi-name { font-size: 13px; font-weight: 500; }
  .testi-shop { font-size: 12px; color: var(--ink-muted); }

  /* CTA */
  .cta-section { background: var(--amber-light); border-top: 0.5px solid rgba(244,162,40,0.2); border-bottom: 0.5px solid rgba(244,162,40,0.2); padding: 5rem 2rem; text-align: center; }
  .cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); margin-bottom: 1rem; }
  .cta-section p { font-size: 1rem; color: var(--ink-muted); margin-bottom: 2rem; }

  /* FOOTER */
  footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 3rem 2.5rem 2rem; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
  .footer-brand { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 0.5rem; }
  .footer-sub { font-size: 13px; line-height: 1.6; max-width: 240px; }
  .footer-links h4 { color: #fff; font-size: 13px; font-weight: 500; margin-bottom: 0.75rem; }
  .footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--blue-accent); }
  .footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 0.5px solid rgba(255,255,255,0.1); text-align: center; font-size: 12px; width: 100%; }

  @media (max-width: 600px) {
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .stats-bar { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 0.5px solid var(--border); }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-line { display: none; }
    .step-item { padding: 0.75rem 0; }
    .receipt-body, .receipt-header { padding: 1.25rem; }
  }

/* --- Privacy Page Styles (kebijakanprivasi.css) --- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #FDF8F2; --warm-white: #FFFBF7;
    /*--blue-deep: #0C5F56; --blue-mid: #1A8C7F; --blue-light: #E1F5EE; --blue-accent: #2EC4B6;*/
    --blue-deep: #3490ef;
    --blue-mid: #03a9f4;
    --blue-light: #c2f0ff;
    --blue-accent: #61afff;
    --ink: #1C1C1A; --ink-muted: #5A5A55;
    --border: rgba(12,95,86,0.12);
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--cream); color: var(--ink); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(253,248,242,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; color: var(--blue-deep); text-decoration: none; }
  .nav-logo .dot { width: 10px; height: 10px; background: var(--blue-accent); border-radius: 50%; }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a { font-size: 14px; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--blue-deep); }
  .btn-nav { background: var(--blue-deep); color: #fff !important; border-radius: 100px; padding: 0.5rem 1.4rem; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s; }
  .btn-nav:hover { background: var(--blue-mid) !important; }

  /* PAGE HEADER */
  .page-header {
    padding: 8rem 2rem 3rem;
    background: var(--warm-white);
    border-bottom: 0.5px solid var(--border);
  }
  .page-header-inner { max-width: 900px; margin: 0 auto; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-muted); margin-bottom: 1.25rem; }
  .breadcrumb a { color: var(--ink-muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--blue-deep); }
  .breadcrumb span { opacity: 0.4; }
  .page-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); color: var(--blue-deep); border-radius: 100px; padding: 0.3rem 0.9rem; font-size: 12px; font-weight: 500; margin-bottom: 1rem; border: 1px solid rgba(12,95,86,0.15); }
  .page-badge .dot-sm { width: 6px; height: 6px; background: var(--blue-accent); border-radius: 50%; }
  .page-header h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); line-height: 1.15; margin-bottom: 0.75rem; }
  .page-header p { font-size: 15px; color: var(--ink-muted); line-height: 1.7; max-width: 100%; }

  /* CONTENT LAYOUT */
  .content-wrap { max-width: 100%; margin: 0 auto; padding: 3rem 2rem 5rem; align-items: start; }

  /* SIDEBAR TOC */
  .toc { position: sticky; top: 80px; }
  .toc-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); margin-bottom: 0.75rem; }
  .toc a { display: block; font-size: 13px; color: var(--ink-muted); text-decoration: none; padding: 0.35rem 0 0.35rem 0.75rem; border-left: 2px solid transparent; transition: all 0.15s; line-height: 1.4; }
  .toc a:hover, .toc a.active { color: var(--blue-deep); border-left-color: var(--blue-deep); }

  /* ARTICLE */
  article section { margin-bottom: 2.75rem; scroll-margin-top: 90px; }
  article h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--blue-deep); margin-bottom: 0.85rem; line-height: 1.25; }
  article h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; margin-top: 1rem; }
  article p { font-size: 15px; line-height: 1.8; color: var(--ink); margin-bottom: 0.75rem; }
  article p:last-child { margin-bottom: 0; }
  article ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
  article ul li { font-size: 15px; line-height: 1.75; color: var(--ink); margin-bottom: 0.5rem; }
  article ul li strong { font-weight: 600; }
  article a { color: var(--blue-deep); text-decoration: none; }
  article a:hover { text-decoration: underline; }
  .callout { background: var(--blue-light); border-left: 3px solid var(--blue-deep); padding: 1rem 1.25rem; margin-top: 1rem; border-radius: 0 10px 10px 0; font-size: 14px; color: #085041; line-height: 1.65; }

  /* SECURITY CARDS */
  .security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
  .security-card { background: var(--blue-light); border-radius: 12px; padding: 1rem; }
  .security-card-title { font-size: 13px; font-weight: 600; color: #085041; margin-bottom: 0.3rem; }
  .security-card-desc { font-size: 12px; color: #0F6E56; line-height: 1.5; }

  /* RIGHTS GRID */
  .rights-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
  .right-item { display: flex; gap: 12px; align-items: flex-start; padding: 0.75rem 1rem; background: var(--warm-white); border: 0.5px solid var(--border); border-radius: 10px; }
  .right-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--blue-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .right-icon svg { width: 16px; height: 16px; stroke: var(--blue-deep); fill: none; stroke-width: 2; }
  .right-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
  .right-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }
  .rights-note { margin-top: 1rem; font-size: 14px; color: var(--ink-muted); }

  /* CONTACT CARD */
  .contact-card { background: var(--warm-white); border: 0.5px solid var(--border); border-radius: 14px; padding: 1.25rem 1.5rem; margin-top: 0.75rem; }
  .contact-card-name { font-weight: 600; font-size: 15px; margin-bottom: 0.25rem; }
  .contact-card-row { font-size: 14px; color: var(--ink-muted); margin-bottom: 0.2rem; }
  .contact-card-row a { color: var(--blue-deep); }

  .article-footer { border-top: 0.5px solid var(--border); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
  .article-footer p { font-size: 13px; color: var(--ink-muted); }
  .btn-contact { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-deep); color: #fff; text-decoration: none; border-radius: 100px; padding: 0.55rem 1.25rem; font-size: 13px; font-weight: 500; transition: background 0.2s; }
  .btn-contact:hover { background: var(--blue-mid); text-decoration: none; }

  /* RELATED */
  .related { background: var(--warm-white); border-top: 0.5px solid var(--border); padding: 3rem 2rem; }
  .related-inner { max-width: 900px; margin: 0 auto; }
  .related h3 { font-size: 14px; font-weight: 500; color: var(--ink-muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.07em; }
  .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
  .related-card { background: var(--cream); border: 0.5px solid var(--border); border-radius: 14px; padding: 1.25rem 1.5rem; text-decoration: none; display: block; transition: all 0.2s; }
  .related-card:hover { border-color: var(--blue-mid); transform: translateY(-2px); }
  .related-card-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue-mid); margin-bottom: 0.35rem; }
  .related-card-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.25rem; }
  .related-card-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

  /* FOOTER */
  footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 3rem 2.5rem 2rem; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
  .footer-brand { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 0.5rem; }
  .footer-sub { font-size: 13px; line-height: 1.6; max-width: 240px; }
  .footer-links h4 { color: #fff; font-size: 13px; font-weight: 500; margin-bottom: 0.75rem; }
  .footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--blue-accent); }
  .footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 0.5px solid rgba(255,255,255,0.1); text-align: center; font-size: 12px; width: 100%; }

  @media (max-width: 700px) {
    .content-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .toc { position: static; }
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .security-grid { grid-template-columns: 1fr; }
  }

/* --- Terms Page Styles (syaratketentuan.css) --- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #FDF8F2; --warm-white: #FFFBF7;
    /*--blue-deep: #0C5F56; --blue-mid: #1A8C7F; --blue-light: #E1F5EE; --blue-accent: #2EC4B6;*/
    --blue-deep: #3490ef;
    --blue-mid: #03a9f4;
    --blue-light: #c2f0ff;
    --blue-accent: #61afff;
    --ink: #1C1C1A; --ink-muted: #5A5A55;
    --border: rgba(12,95,86,0.12);
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--cream); color: var(--ink); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(253,248,242,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; color: var(--blue-deep); text-decoration: none; }
  .nav-logo .dot { width: 10px; height: 10px; background: var(--blue-accent); border-radius: 50%; }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a { font-size: 14px; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--blue-deep); }
  .btn-nav { background: var(--blue-deep); color: #fff !important; border-radius: 100px; padding: 0.5rem 1.4rem; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s; }
  .btn-nav:hover { background: var(--blue-mid) !important; }

  /* PAGE HEADER */
  .page-header {
    padding: 8rem 2rem 3rem;
    background: var(--warm-white);
    border-bottom: 0.5px solid var(--border);
  }
  .page-header-inner { max-width: 900px; margin: 0 auto; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-muted); margin-bottom: 1.25rem; }
  .breadcrumb a { color: var(--ink-muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--blue-deep); }
  .breadcrumb span { opacity: 0.4; }
  .page-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); color: var(--blue-deep); border-radius: 100px; padding: 0.3rem 0.9rem; font-size: 12px; font-weight: 500; margin-bottom: 1rem; border: 1px solid rgba(12,95,86,0.15); }
  .page-badge .dot-sm { width: 6px; height: 6px; background: var(--blue-accent); border-radius: 50%; }
  .page-header h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); line-height: 1.15; margin-bottom: 0.75rem; }
  .page-header p { font-size: 15px; color: var(--ink-muted); line-height: 1.7; max-width: 100%; }

  /* CONTENT LAYOUT */
  /*.content-wrap { max-width: 900px; margin: 0 auto; padding: 3rem 2rem 5rem; display: grid; grid-template-columns: 200px 1fr; gap: 3.5rem; align-items: start; }*/
  .content-wrap { max-width: 900px; margin: 0 auto; padding: 3rem 2rem 5rem; align-items: start; }

  /* SIDEBAR TOC */
/*  .toc { position: sticky; top: 80px; }
  .toc-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); margin-bottom: 0.75rem; }
  .toc a { display: block; font-size: 13px; color: var(--ink-muted); text-decoration: none; padding: 0.35rem 0 0.35rem 0.75rem; border-left: 2px solid transparent; transition: all 0.15s; line-height: 1.4; }
  .toc a:hover, .toc a.active { color: var(--blue-deep); border-left-color: var(--blue-deep); }
*/
  /* ARTICLE */
  article section { margin-bottom: 2.75rem; scroll-margin-top: 90px; }
  article h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--blue-deep); margin-bottom: 0.85rem; line-height: 1.25; }
  article p { font-size: 15px; line-height: 1.8; color: var(--ink); margin-bottom: 0.75rem; }
  article p:last-child { margin-bottom: 0; }
  article ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
  article ul li { font-size: 15px; line-height: 1.75; color: var(--ink); margin-bottom: 0.5rem; }
  article ul li strong { font-weight: 600; }
  article a { color: var(--blue-deep); text-decoration: none; }
  article a:hover { text-decoration: underline; }
  .callout { background: var(--blue-light); border-left: 3px solid var(--blue-deep); padding: 1rem 1.25rem; margin-top: 1rem; border-radius: 0 10px 10px 0; font-size: 14px; color: #085041; line-height: 1.65; }
  .article-footer { border-top: 0.5px solid var(--border); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
  .article-footer p { font-size: 13px; color: var(--ink-muted); }
  .btn-contact { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-deep); color: #fff; text-decoration: none; border-radius: 100px; padding: 0.55rem 1.25rem; font-size: 13px; font-weight: 500; transition: background 0.2s; }
  .btn-contact:hover { background: var(--blue-mid); text-decoration: none; }

  /* RELATED PAGES */
  .related { background: var(--warm-white); border-top: 0.5px solid var(--border); padding: 3rem 2rem; }
  .related-inner { max-width: 900px; margin: 0 auto; }
  .related h3 { font-size: 14px; font-weight: 500; color: var(--ink-muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.07em; }
  .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
  .related-card { background: var(--cream); border: 0.5px solid var(--border); border-radius: 14px; padding: 1.25rem 1.5rem; text-decoration: none; display: block; transition: all 0.2s; }
  .related-card:hover { border-color: var(--blue-mid); transform: translateY(-2px); }
  .related-card-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue-mid); margin-bottom: 0.35rem; }
  .related-card-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.25rem; }
  .related-card-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

  /* FOOTER */
  footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 3rem 2.5rem 2rem; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
  .footer-brand { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 0.5rem; }
  .footer-sub { font-size: 13px; line-height: 1.6; max-width: 240px; }
  .footer-links h4 { color: #fff; font-size: 13px; font-weight: 500; margin-bottom: 0.75rem; }
  .footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--blue-accent); }
  .footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 0.5px solid rgba(255,255,255,0.1); text-align: center; font-size: 12px; width: 100%; }

  @media (max-width: 700px) {
    .content-wrap { grid-template-columns: 1fr; gap: 2rem; }
    /*.toc { position: static; }*/
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
  }
/* --- Page-specific overrides to keep each page behavior --- */
body.page-home { overflow-x: hidden; }
body.page-home nav { background: rgba(253,248,242,0.90); }
body.page-home .btn-nav {
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
body.page-home .btn-nav:hover { transform: translateY(-1px); }
body.page-privacy .content-wrap { max-width: 900px; }
body.page-terms .content-wrap { max-width: 900px; }
