/* ============================================================
   KREANANTA — style.css
   Font display : Spectral (serif)
   Font body    : Hanken Grotesk (sans)
   Font label   : JetBrains Mono (mono)
   Tema         : Warm dark + champagne gold accent
   ============================================================ */

/* ============================================================
   SECTION: CSS Variables (Design Tokens)
   Untuk mengubah warna aksen → edit --accent dan turunannya
   ============================================================ */
:root {
  /* Latar */
  --bg:          #14120E;
  --bg-2:        #1B1812;
  --bg-3:        #221E17;
  --bg-card:     #1C1913;
  --line:        rgba(238,224,196,0.10);
  --line-2:      rgba(238,224,196,0.18);
  /* Teks */
  --text:        #F3EEE3;
  --text-2:      #C8C0AF;
  --muted:       #948C79;
  --muted-2:     #6A6354;
  /* Aksen — gold champagne */
  --accent:        #C9A35C;
  --accent-bright: #E4C588;
  --accent-deep:   #9B7B3E;
  --accent-ink:    #1A1408;
  --accent-glow:   rgba(201,163,92,0.16);
  /* Tipografi */
  --font-head: 'Spectral', Georgia, serif;
  /* Layout */
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --maxw:      1240px;
  --ease:      cubic-bezier(0.22,1,0.36,1);
  --shadow:    0 24px 60px -28px rgba(0,0,0,0.7);
  --shadow-sm: 0 12px 30px -18px rgba(0,0,0,0.65);
}

/* ============================================================
   SECTION: Base Reset
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
}
/* Radial gradient latar atmosferik */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 520px at 78% -8%, var(--accent-glow), transparent 60%),
    radial-gradient(700px 500px at 6% 4%, rgba(255,255,255,0.025), transparent 55%);
}
h1,h2,h3,h4 {
  font-family: var(--font-head);
  font-weight: 500; line-height: 1.08;
  letter-spacing: -0.012em; margin: 0; color: var(--text);
}
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ============================================================
   SECTION: Page Routing
   Semua halaman tersembunyi kecuali .page--active
   ============================================================ */
.page { display: none; position: relative; z-index: 1; }
.page--active { display: block; }
footer { position: relative; z-index: 1; }

/* ============================================================
   SECTION: Layout Helpers
   ============================================================ */
.wrap   { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section{ padding: clamp(72px,9vw,132px) 0; position: relative; }
.page-header { padding: 142px 0 12px; }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.bg-alt  { background: var(--bg-2); }
.svc-bg  { background: linear-gradient(180deg,transparent,rgba(201,163,92,0.03) 50%,transparent); }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: start; }
.flex-sb { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.flex-gap{ display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   SECTION: Eyebrow / Overline
   ============================================================ */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:''; width:22px; height:1px; background:var(--accent); opacity:0.6; }
.eyebrow.no-rule::before { display: none; }

/* ============================================================
   SECTION: Section Head
   ============================================================ */
.section-head     { max-width: 640px; }
.section-head.center { text-align: center; margin: 0 auto; max-width: 760px; }
.section-head h1,
.section-head h2  { font-size: clamp(30px,4vw,50px); margin-top: 22px; }
.section-intro    { margin-top: 22px; color: var(--text-2); font-size: 18.5px; line-height: 1.65; }

/* ============================================================
   SECTION: Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 15.5px; font-weight: 600;
  letter-spacing: 0.01em; padding: 14px 26px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  text-decoration: none;
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s;
}
.btn:active { transform: translateY(1px) !important; }
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 14px 34px -14px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { background: var(--accent-bright); box-shadow: 0 18px 40px -12px var(--accent-glow); transform: translateY(-2px); }
.btn-ghost  { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover  { border-color: var(--accent); color: var(--accent-bright); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   SECTION: Arrow Link
   ============================================================ */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-bright); font-weight: 600; font-size: 15px;
  transition: gap .3s var(--ease); cursor: pointer;
  background: none; border: 0; font-family: inherit; text-decoration: none;
}
.arrow-link:hover { gap: 13px; }

/* ============================================================
   SECTION: Cards
   ============================================================ */
.card {
  background: linear-gradient(180deg, var(--bg-card), #18150F);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.card:hover { border-color: var(--line-2); }
.svc-card   { padding: 32px; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.card-num   { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--accent); margin-bottom: 18px; }
.card-fix   { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14.5px; font-weight: 600; }
.card-badge { align-self: flex-start; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 5px 11px; border-radius: 100px; margin-bottom: 18px; }

/* ============================================================
   SECTION: Reveal Animations
   Menggunakan CSS keyframes — konten selalu visible tanpa JS.
   JS menambahkan .in untuk elemen bawah fold (pengayaan progresif).
   ============================================================ */
.reveal { animation: revealUp 0.65s var(--ease) both; }

/* Stagger otomatis berdasarkan urutan di DOM */
.reveal:nth-child(1)  { animation-delay: 0.05s; }
.reveal:nth-child(2)  { animation-delay: 0.12s; }
.reveal:nth-child(3)  { animation-delay: 0.19s; }
.reveal:nth-child(4)  { animation-delay: 0.26s; }
.reveal:nth-child(5)  { animation-delay: 0.33s; }
.reveal:nth-child(6)  { animation-delay: 0.38s; }
.reveal:nth-child(n+7){ animation-delay: 0.42s; }

/* Elemen bawah fold: tunggu .in dari IntersectionObserver */
.reveal.below-fold        { animation: none; opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.below-fold.in     { opacity: 1; transform: none; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal        { animation: none !important; opacity: 1 !important; transform: none !important; }
  .reveal.below-fold { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   SECTION: Navigation
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s;
  /* Gunakan box-shadow bukan border-bottom — border transparan
     kadang dirender sebagai garis tipis di beberapa browser mobile */
}
#header.scrolled {
  background: rgba(18,16,12,0.87);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 0 var(--line);
}
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.nav-desktop  { display: flex; align-items: center; gap: 4px; }

/* Nav link */
.nav-link {
  background: none; border: 0; cursor: pointer; font-family: inherit;
  font-size: 15px; font-weight: 500; color: var(--text-2);
  padding: 9px 16px; border-radius: 100px; position: relative;
  white-space: nowrap; transition: color .25s; text-decoration: none;
  display: inline-block;
}
.nav-link:hover { color: var(--text); }
.nav-link--active { color: var(--text) !important; }
.nav-link--active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 2px;
  height: 1.5px; background: var(--accent); border-radius: 2px;
}

/* Burger */
.burger {
  display: none; background: none; border: 1px solid var(--line-2);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.burger span {
  width: 18px; height: 1.6px; background: var(--text);
  transition: transform .3s, opacity .3s; display: block; border-radius: 2px;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease);
  background: rgba(18,16,12,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Tidak pakai border-bottom transparent — render sebagai garis di mobile */
}
.mobile-menu.open { max-height: 540px; box-shadow: 0 1px 0 0 var(--line); }
.mobile-menu-inner { padding: 12px 20px 28px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .nav-link { font-size: 18px; padding: 14px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }

/* ============================================================
   SECTION: Logo
   ============================================================ */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 30px; height: 30px; position: relative; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.logo-diamond { position: absolute; inset: 0; transform: rotate(45deg); border: 1.5px solid var(--accent); border-radius: 7px; }
.logo-dot { width: 8.4px; height: 8.4px; transform: rotate(45deg); background: var(--accent); border-radius: 2px; }
.logo-text { font-family: 'Spectral', serif; font-size: 22px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }

/* ============================================================
   SECTION: Hero
   ============================================================ */
.hero { padding-top: 152px; padding-bottom: 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-title { font-size: clamp(38px,5.6vw,70px); line-height: 1.02; }
.hero-title em { font-style: italic; color: var(--accent-bright); }
.hero-sub   { margin-top: 26px; font-size: 19.5px; color: var(--text-2); max-width: 520px; line-height: 1.6; }
.hero-ctas  { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-visual{ position: relative; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 13px;
}
.hero-badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-glow); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero-badge-title { font-size: 14.5px; font-weight: 600; }
.hero-badge-sub   { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   SECTION: Browser Mock (ilustrasi Hero)
   ============================================================ */
.browser-mock {
  background: #16130D; border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 40px 90px -36px rgba(0,0,0,0.85); overflow: hidden;
  animation: browserFloat 7s ease-in-out infinite;
}
.browser-bar {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--line); background: #13110B; overflow: hidden;
}
.bd { width: 11px; height: 11px; border-radius: 50%; background: #3a3528; animation: dotAppear 3s ease-in-out infinite; }
.bd:nth-child(2) { animation-delay: .8s; }
.bd:nth-child(3) { animation-delay: 1.6s; }
.browser-url {
  margin-left: 14px; flex: 1; height: 24px; border-radius: 100px;
  background: #0f0d09; border: 1px solid var(--line);
  display: flex; align-items: center; padding: 0 12px; gap: 7px; overflow: hidden; position: relative;
}
.url-dot  { width: 9px; height: 9px; border-radius: 50%; border: 1.4px solid var(--accent); flex: none; }
.url-text { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); white-space: nowrap; }
.url-cursor { width: 1.5px; height: 11px; background: var(--accent); flex: none; border-radius: 2px; animation: cursorBlink 1s step-end infinite; }
.browser-progress {
  position: absolute; bottom: 0; left: 0; height: 2px; background: var(--accent);
  animation: progressBar 4s cubic-bezier(0.4,0,0.2,1) infinite; border-radius: 2px;
}
.browser-body  { padding: 22px; }
.bmock-nav     { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.bmock-logo    { display: flex; align-items: center; gap: 8px; }
.bmock-logo > span:first-child { width: 18px; height: 18px; transform: rotate(45deg); border: 1.4px solid var(--accent); border-radius: 4px; display: block; }
.bmock-links   { display: flex; gap: 12px; align-items: center; }
.bmock-cta     { width: 52px; height: 18px; border-radius: 100px; background: var(--accent); opacity: 0.85; display: block; }
.bmock-hero    { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: center; }
.bmock-img     { height: 132px; border-radius: 10px; overflow: hidden; position: relative; background: var(--bg-3); border: 1px solid var(--line); }
.ph-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(201,163,92,0.04) 0%,rgba(201,163,92,0.36) 50%,rgba(201,163,92,0.04) 100%);
  background-size: 340px 100%; animation: shimmerSweep 2.2s linear infinite;
}
.ph-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 100px;
  background: rgba(20,18,14,0.6); width: fit-content; height: fit-content; margin: auto;
}
.bmock-btn   { display: inline-block; width: 96px; height: 26px; border-radius: 100px; background: var(--accent); }
.bmock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.bmock-card  { border: 1px solid var(--line); border-radius: 9px; padding: 12px; background: #14110B; }
/* Skeletons */
.skel      { display: inline-block; border-radius: 3px; background: #2a2519; animation: skeletonPulse 2.4s ease-in-out infinite; }
.sw-64     { width: 64px; height: 8px; }
.sw-34     { width: 34px; height: 6px; }
.sw-30     { width: 30px; height: 6px; }
.sw-28     { width: 28px; height: 6px; }
.sb-h      { height: 15px; display: block; }
.sb-p      { height: 6px; display: block; }
.sb-w90    { width: 90%; }  .sb-w85 { width: 85%; }
.sb-w80    { width: 80%; }  .sb-w70 { width: 70%; }  .sb-w100 { width: 100%; }
.sc-icon   { width: 22px; height: 22px; border-radius: 6px; margin-bottom: 10px; display: block; }
.mb-6  { margin-bottom: 6px; }  .mb-7  { margin-bottom: 7px; }
.mb-9  { margin-bottom: 9px; }  .mb-10 { margin-bottom: 10px; }
.mb-18 { margin-bottom: 18px; }

/* ============================================================
   SECTION: Feature List (dipakai di Services & Pricing)
   ============================================================ */
.feat-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; }
.feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; }
.feat-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; margin-top: 8px; }

/* ============================================================
   SECTION: AI Teaser Banner
   ============================================================ */
.ai-teaser {
  margin-top: 22px; padding: 20px 26px; border: 1px dashed var(--line-2); border-radius: 14px;
  display: flex; align-items: center; gap: 16px; color: var(--text-2); font-size: 15px;
}
.ai-badge { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; flex: none; }

/* ============================================================
   SECTION: SEO Section
   ============================================================ */
.info-box {
  background: rgba(201,163,92,0.07); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 14px 18px; display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.google-mock { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; }
.google-mock-label { font-size: 11.5px; color: var(--muted); margin-bottom: 6px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; }
.google-mock-site  { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13px; color: var(--muted); }
.google-favicon    { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); opacity: 0.5; flex: none; }
.google-mock-title { font-size: 17px; font-weight: 600; color: #4A90E2; line-height: 1.3; margin-bottom: 6px; }
.google-mock-desc  { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.seo-actions { display: flex; flex-direction: column; gap: 2px; }
.seo-action  { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.seo-num     { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); flex: none; padding-top: 2px; }
.seo-action-title { font-size: 15.5px; font-weight: 600; margin-bottom: 4px; }
.seo-action-desc  { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* ============================================================
   SECTION: Home CTA Box
   ============================================================ */
.cta-box {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #211B11, #18140D);
  border: 1px solid var(--line-2) !important; border-radius: 24px;
  padding: clamp(40px,6vw,76px); text-align: center;
}
.cta-glow    { position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, var(--accent-glow), transparent 70%); pointer-events: none; }
.cta-content { position: relative; }
.cta-content h2 { font-size: clamp(30px,4.4vw,54px); max-width: 720px; margin: 0 auto; line-height: 1.08; }
.cta-content h2 em { font-style: italic; color: var(--accent-bright); }
.cta-content p  { color: var(--text-2); font-size: 18.5px; max-width: 580px; margin: 22px auto 0; }
.cta-btns       { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }

/* ============================================================
   SECTION: Pricing Cards
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.price-card { padding: 34px; position: relative; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-4px); }
.price-card--popular {
  border-color: var(--accent) !important;
  background: linear-gradient(180deg,#221B10,#18140D) !important;
  box-shadow: 0 30px 70px -30px var(--accent-glow) !important;
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent); padding: 6px 16px; border-radius: 100px; white-space: nowrap;
}
.price-for    { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.price-name   { font-size: 30px; margin-bottom: 6px; }
.price-tagline{ color: var(--text-2); font-size: 15px; margin-bottom: 24px; min-height: 44px; }
.price-from   { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 2px; }
.price-tag    { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.price-curr   { font-size: 17px; color: var(--muted); align-self: flex-start; margin-top: 6px; }
.price-num    { font-family: 'Spectral', serif; font-size: 52px; font-weight: 600; line-height: 1; color: var(--text); }
.price-unit   { font-size: 13.5px; color: var(--text-2); }
.price-scope  { font-size: 12.5px; color: var(--muted-2); font-style: italic; margin-bottom: 16px; margin-top: -10px; }
.price-annual {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; margin-bottom: 22px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.price-annual-label { font-size: 11.5px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.price-annual-sub   { font-size: 12px; color: var(--muted-2); }
.price-annual-num   { display: flex; align-items: baseline; gap: 2px; }
.price-annual-num span   { font-size: 13px; color: var(--muted); }
.price-annual-num strong { font-family: 'Spectral', serif; font-size: 26px; font-weight: 600; color: var(--text); }
.price-note  { font-size: 12.5px; color: var(--muted-2); margin-bottom: 22px; margin-top: 6px; }
.tt { cursor: help; border-bottom: 1px dashed var(--muted-2); }
.price-btn   { width: 100%; margin-bottom: 28px; }

/* ============================================================
   SECTION: Compare Table
   ============================================================ */
.compare-wrap   { margin-top: 28px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table  { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table thead tr { background: var(--bg-2); }
.compare-table th { padding: 18px 22px; font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
.compare-table th.col-pop { color: var(--accent-bright); }
.compare-table td { padding: 15px 22px; font-size: 14.5px; color: var(--text-2); text-align: center; vertical-align: middle; }
.compare-table td:first-child { text-align: left; }
.compare-table tbody tr { border-top: 1px solid var(--line); }
.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.012); }
.compare-table td:nth-child(3) { background: rgba(201,163,92,0.05); }
.compare-table .yes { color: var(--accent-bright); font-size: 16px; font-weight: 700; }
.compare-table .no  { color: var(--muted-2); font-size: 18px; }
.compare-note { padding: 12px 22px; font-size: 12.5px; color: var(--muted-2); border-top: 1px solid var(--line); }

/* ============================================================
   SECTION: Annual Benefits
   ============================================================ */
.annual-box  { padding: clamp(32px,4vw,52px) !important; }
.maint-grid  { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }

/* ============================================================
   SECTION: Process Steps
   ============================================================ */
.steps-list { display: flex; flex-direction: column; }
.step-row {
  display: grid; grid-template-columns: 120px 1fr 160px; gap: 32px; align-items: start;
  padding: 34px 0; border-top: 1px solid var(--line);
}
.step-row--last { border-bottom: 1px solid var(--line); }
.step-num   { font-family: 'Spectral', serif; font-size: 46px; font-weight: 600; color: var(--accent); line-height: 1; }
.step-content h3 { font-size: 25px; margin-bottom: 10px; }
.step-content p  { color: var(--text-2); font-size: 16.5px; line-height: 1.6; max-width: 560px; }
.step-dur   { justify-self: end; text-align: right; }
.chip { display: inline-flex; align-items: center; font-size: 12px; font-weight: 500; color: var(--text-2); background: var(--bg-3); border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; }

/* ============================================================
   SECTION: Principle Quote
   ============================================================ */
.principle-box  { max-width: 900px; margin: 0 auto; text-align: center; }
.principle-mark { font-family: 'Spectral', serif; font-size: 60px; color: var(--accent); line-height: 0.5; display: block; margin-bottom: 8px; }
.principle-text { font-family: 'Spectral', serif; font-size: clamp(24px,3.2vw,38px); font-weight: 500; line-height: 1.32; color: var(--text); letter-spacing: -0.01em; }
.principle-credit { margin-top: 28px; font-size: 14.5px; color: var(--muted); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   SECTION: Edge Cards (Keunggulan)
   ============================================================ */
.edge-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-glow); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq-wrap { max-width: 860px; }
.faq-cat  { margin-bottom: 56px; }
.faq-cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.faq-cat-header > span:first-child { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.faq-line { flex: 1; height: 1px; background: var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn  {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; background: none; border: 0; cursor: pointer; padding: 22px 4px;
  text-align: left; font-family: 'Spectral', serif; font-size: 17.5px; font-weight: 600;
  color: var(--text); line-height: 1.35; transition: color .2s;
}
.faq-btn:hover { color: var(--accent-bright); }
.faq-icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .25s, border-color .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-icon svg { stroke: var(--accent-ink); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-body { max-height: 420px; }
.faq-body p { color: var(--text-2); font-size: 15.5px; line-height: 1.7; padding: 0 4px 24px; max-width: 740px; }

/* ============================================================
   SECTION: Contact Form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
.form-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field        { display: flex; flex-direction: column; gap: 8px; }
.field-label  { font-size: 13.5px; font-weight: 600; color: var(--text); letter-spacing: 0.01em; }
.field-hint   { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 6px; }
.field-input  {
  font-family: inherit; font-size: 15.5px; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 13px 15px; outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
textarea.field-input { resize: vertical; min-height: 120px; line-height: 1.55; }
.field-error  { font-size: 12.5px; color: #E58A6E; min-height: 16px; }
.service-pills{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.service-pill {
  font-family: inherit; font-size: 14px; cursor: pointer; padding: 10px 16px; border-radius: 100px;
  border: 1px solid var(--line-2); background: transparent; color: var(--text-2); font-weight: 500;
  transition: all .2s;
}
.service-pill.active { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.service-pill:hover:not(.active) { color: var(--text); border-color: var(--line-2); }
.form-footer  { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.form-note    { font-size: 13px; color: var(--muted); }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-glow); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.contact-rows { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.contact-row  { display: flex; flex-direction: column; gap: 3px; }
.contact-row-label { font-size: 12.5px; color: var(--muted); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-row-value { font-size: 17px; color: var(--text); font-weight: 500; display: inline-flex; align-items: center; gap: 10px; }
.contact-row-muted { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.contact-badge { font-size: 11px; font-weight: 600; color: #7fd9a6; background: rgba(120,220,160,0.1); border: 1px solid rgba(120,220,160,0.2); padding: 2px 9px; border-radius: 100px; }
.wa-shortcut  { display: flex; align-items: center; gap: 16px; padding: 24px; cursor: pointer; text-decoration: none; }
.wa-icon      { width: 50px; height: 50px; border-radius: 12px; background: #1E3A2E; display: flex; align-items: center; justify-content: center; flex: none; }

/* ============================================================
   SECTION: Privacy Page
   ============================================================ */
.privacy-list { display: flex; flex-direction: column; gap: 40px; }
.privacy-head { display: flex; gap: 16px; align-items: baseline; margin-bottom: 14px; }
.privacy-num  { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); flex: none; }
.privacy-item h3 { font-size: 21px; line-height: 1.25; }
.privacy-item p  { color: var(--text-2); font-size: 16px; line-height: 1.75; padding-left: 30px; }

/* ============================================================
   SECTION: Footer
   ============================================================ */
footer { border-top: 1px solid var(--line); background: #100E0A; }
.footer-inner { padding: 72px 32px 40px; }
.footer-grid  { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand p { color: var(--muted); margin-top: 20px; max-width: 300px; font-size: 15.5px; line-height: 1.65; }
.footer-col-head { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.footer-col nav  { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.footer-col nav a,
.footer-col nav span { color: var(--text-2); font-size: 15px; transition: color .2s; }
.footer-col nav a:hover { color: var(--accent-bright); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 56px; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: 13.5px;
}
.footer-bottom a { color: var(--muted-2); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent-bright); }

/* ============================================================
   SECTION: Floating WhatsApp Button
   ============================================================ */
#floating-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  display: flex; align-items: center; gap: 12px;
  background: #1f7a4d; color: #fff; padding: 13px; border-radius: 100px;
  box-shadow: 0 18px 40px -14px rgba(31,122,77,0.6);
  transition: padding .4s var(--ease), opacity .4s, transform .4s;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0; transform: translateY(10px) scale(0.9);
  pointer-events: none; text-decoration: none;
}
#floating-wa.visible { opacity: 1; transform: none; pointer-events: auto; }
#floating-wa:hover   { padding: 13px 20px 13px 15px; }
.floating-wa-text {
  font-size: 14.5px; font-weight: 600; white-space: nowrap;
  max-width: 0; overflow: hidden; opacity: 0;
  transition: max-width .4s var(--ease), opacity .4s;
}
#floating-wa:hover .floating-wa-text { max-width: 160px; opacity: 1; }

/* ============================================================
   SECTION: Keyframe Animations
   ============================================================ */
@keyframes browserFloat {
  0%,100% { transform: translateY(0); }
  30%      { transform: translateY(-10px) rotate(-0.4deg); }
  60%      { transform: translateY(-6px)  rotate(0.3deg); }
}
@keyframes skeletonPulse { 0%,100% { opacity:.45; } 50% { opacity:1; } }
@keyframes shimmerSweep  { 0% { background-position:-340px 0; } 100% { background-position:340px 0; } }
@keyframes cursorBlink   { 0%,49% { opacity:1; } 50%,100% { opacity:0; } }
@keyframes progressBar   { 0% { width:0%; opacity:1; } 72% { width:100%; opacity:1; } 85%,100% { width:100%; opacity:0; } }
@keyframes dotAppear     { 0%,100% { background:#3a3528; } 33% { background:var(--accent); } }

/* ============================================================
   SECTION: Aksesibilitas
   ============================================================ */

/* Skip to main content — muncul saat Tab pertama ditekan */
.skip-link {
  position: absolute;
  top: -100%; left: 24px; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 14px; letter-spacing: 0.01em;
  padding: 12px 22px; border-radius: 0 0 10px 10px;
  text-decoration: none; white-space: nowrap;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; outline: none; }

/* main#main-content:
   tabindex="-1" perlu ada untuk skip link, tapi JANGAN tampilkan
   outline — ini penyebab garis melintang di mobile saat halaman muat */
#main-content:focus,
#main-content:focus-visible { outline: none !important; box-shadow: none !important; }

/* Focus visible — ring emas saat navigasi keyboard */
:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 3px;
  border-radius: 4px;
}
/* Reset outline untuk elemen yang punya style sendiri */
.btn:focus-visible,
.nav-link:focus-visible,
.faq-btn:focus-visible { border-radius: 100px; }
.service-pill:focus-visible { border-radius: 100px; }
.field-input:focus-visible { outline: none !important; /* pakai box-shadow dari .field-input:focus */ }

/* ============================================================
   SECTION: Scrollbar
   ============================================================ */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #322C22; border-radius: 8px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #423a2c; }

/* ============================================================
   SECTION: Responsive Breakpoints
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid  { grid-template-columns: 1fr !important; gap: 48px !important; }
  .hero-grid > .hero-visual { max-width: 520px; }
  .two-col    { grid-template-columns: 1fr !important; gap: 40px !important; }
  .maint-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .footer-grid  { grid-template-columns: 1.4fr 1fr 1fr !important; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-desktop, .nav-cta { display: none !important; }
  .burger     { display: flex !important; }
  .grid-3, .price-grid { grid-template-columns: 1fr !important; }
  .step-row   { grid-template-columns: 64px 1fr !important; gap: 18px !important; }
  .step-dur   { grid-column: 2; justify-self: start !important; text-align: left !important; margin-top: 4px; }
  .step-num   { font-size: 34px !important; }
}
@media (max-width: 680px) {
  .form-grid  { grid-template-columns: 1fr !important; }
  .footer-grid{ grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .grid-2     { grid-template-columns: 1fr !important; }
  /* Badge SEO: tetap tampil di mobile, tapi statis di bawah browser mock
     (bukan absolute yang menumpuk di sudut) */
  .hero-badge {
    position: static !important;
    margin: 18px auto 0 !important;
    width: fit-content;
  }
}
@media (max-width: 720px) {
  body       { font-size: 16px; }
  .wrap      { padding: 0 20px; }
  .section   { padding: 64px 0; }
  .page-header { padding: 116px 0 12px; }
  /* Hero: beri ruang untuk header fixed (76px) + jarak nyaman
     agar H1 tidak tertimpa garis menu di mobile */
  .hero      { padding-top: 116px !important; padding-bottom: 56px !important; }
  /* Footer: rapatkan padding atas, dan beri ruang bawah ekstra
     agar konten tidak tertutup tombol floating WhatsApp */
  .footer-inner  { padding: 48px 20px 96px; }
  .footer-bottom { margin-top: 40px; padding-top: 24px; }
  #floating-wa { right: 16px; bottom: 16px; }
}
