/* ====================================
   KILAT404 — Design System
   Domain: cedicplazasedona.com
   ==================================== */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

/* ---------- Variables ---------- */
:root {
  --bg: #050505;
  --bg-card: rgba(14, 14, 14, 0.82);
  --gold: #f5bd3d;
  --gold-dim: #9f6b12;
  --gold-glow: rgba(245, 189, 61, 0.15);
  --text: #f6f0e6;
  --text-muted: #b9afa0;
  --text-secondary: #d8cfbb;
  --border: rgba(245, 189, 61, 0.22);
  --border-strong: rgba(245, 189, 61, 0.45);
  --max-w: 1120px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 20% 10%, rgba(245,189,61,0.14), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(245,189,61,0.08), transparent 38%),
    linear-gradient(180deg, #050505, #0a0a0a 55%, #050505);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ---------- Container ---------- */
.container { width: min(var(--max-w), 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-img {
  width: 160px; max-width: 40vw;
  filter: drop-shadow(0 4px 16px var(--gold-glow));
}
.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--border-strong);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--gold) !important;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 900; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.06em;
  border: 1px solid var(--border-strong);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #ffc400, #d89500);
  color: #050505;
  box-shadow: 0 12px 32px var(--gold-glow);
  border: none;
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(245,189,61,0.28); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(245,189,61,0.06);
  color: var(--gold);
}
.btn-secondary:hover { background: rgba(245,189,61,0.12); }
.cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  padding: 60px 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-weight: 900;
  letter-spacing: 0.14em; font-size: 12px;
  text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 48px; height: 1px; background: var(--gold); }
h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02; letter-spacing: -0.05em;
  margin-bottom: 16px; color: #fff;
}
h1 .gold { color: var(--gold); text-shadow: 0 0 28px rgba(245,189,61,0.2); }
.hero-desc {
  font-size: 17px; color: var(--text-secondary);
  max-width: 580px; margin-bottom: 8px;
}
.hero-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; padding: 12px;
  background: linear-gradient(180deg, rgba(245,189,61,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}
.hero-card img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; border-radius: 16px;
  background: #111;
}

/* ---------- Section ---------- */
.section {
  padding: 80px 0;
  border-top: 1px solid rgba(245,189,61,0.12);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1; letter-spacing: -0.04em;
  margin-bottom: 14px; color: #fff;
}
.section-title .gold { color: var(--gold); }
.section-desc {
  max-width: 780px; color: var(--text-secondary);
  font-size: 16px; margin-bottom: 14px;
}

/* ---------- Cards Grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 32px;
}
.card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.card-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.card-title { color: var(--gold); font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* ---------- Content Grid (2 columns) ---------- */
.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px; align-items: start;
}
.content-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18,18,18,0.92), rgba(5,5,5,0.88));
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.content-card h2 {
  color: var(--gold); font-size: 26px;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.content-card p {
  color: var(--text-muted); font-size: 15px;
  line-height: 1.75; margin-bottom: 14px;
}
.content-card p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; margin-top: 28px; max-width: 860px; }
.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  color: var(--gold); font-size: 17px; font-weight: 700;
  font-family: var(--font); text-align: left;
}
.faq-q:hover { background: rgba(245,189,61,0.04); }
.faq-icon {
  font-size: 22px; font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: var(--text-muted); font-size: 15px; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid rgba(245,189,61,0.12);
  background: radial-gradient(ellipse at center, rgba(245,189,61,0.06), transparent 70%);
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; margin-top: 28px; max-width: 780px; }
.step {
  counter-increment: step;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start;
}
.step::before {
  content: counter(step);
  flex-shrink: 0; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #050505; font-weight: 900; font-size: 16px;
  border-radius: 10px;
}
.step-content h3 { color: var(--gold); font-size: 17px; margin-bottom: 4px; }
.step-content p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(245,189,61,0.14);
  padding: 36px 0;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer strong { color: var(--gold); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ---------- Mobile CTA Bar ---------- */
.mobile-bar { display: none; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0; font-size: 13px; color: var(--text-muted);
  border-bottom: 1px solid rgba(245,189,61,0.08);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Article Body ---------- */
.article-body { max-width: 780px; }
.article-body h2 {
  font-size: 26px; color: #fff;
  margin: 36px 0 12px; letter-spacing: -0.02em;
}
.article-body h2 .gold { color: var(--gold); }
.article-body p {
  color: var(--text-secondary); font-size: 16px;
  line-height: 1.78; margin-bottom: 16px;
}
.article-body strong { color: var(--text); }
.article-body ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}
.article-body ul li {
  color: var(--text-secondary); font-size: 15px;
  margin-bottom: 6px; line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .hero { min-height: auto; padding: 42px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-grid > :last-child { order: -1; }
  h1 { font-size: 38px; }
  .cards { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 99;
  }
  .mobile-bar a {
    min-height: 48px; border-radius: var(--radius-pill);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; text-transform: uppercase; font-size: 13px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .mobile-bar .m-login {
    background: linear-gradient(135deg, #ffc400, #d89500); color: #050505;
  }
  .mobile-bar .m-daftar {
    background: #111; color: var(--gold);
    border: 1px solid var(--border-strong);
  }
  body { padding-bottom: 72px; }
}
