/* ============================================================
   KAWAL — app.css
   Gabungan CSS: Beranda + Form Laporan
   ============================================================ */

/* ── RESET & VARIABEL ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #232745;
  --navy-lt:      #2e3460;
  --blue:         #4A90D9;
  --blue-lt:      #6DAEE8;
  --amber:        #F5A623;
  --green:        #6EC27A;
  --purple:       #C084FC;
  --red:          #F87171;
  --bg:           #F5F7FF;
  --white:        #FFFFFF;
  --muted:        #6B7280;
  --border:       #E2E6F0;
  --border-focus: #4A90D9;
  --text:         #1A1D2E;
  --label:        #374151;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; min-height: 100vh; }


/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(35,39,69,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; background: var(--amber); border-radius: 8px;
  display: grid; place-items: center; font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 14px; color: var(--navy);
  letter-spacing: -0.5px; flex-shrink: 0;
}
.logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); letter-spacing: 0.5px; }
.logo-text span { color: var(--amber); }

/* Nav publik (beranda) */
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.btn-nav { background: var(--amber); color: var(--navy) !important; padding: 8px 18px; border-radius: 8px; font-weight: 600 !important; font-size: 14px !important; }
.btn-nav:hover { opacity: .88; }

/* Nav halaman dalam (laporan, peta, dll) */
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-back { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-back:hover { color: var(--white); }
.nav-back svg { width: 16px; height: 16px; }
.nav-label { font-size: 13px; color: rgba(255,255,255,0.4); padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.12); }


/* ============================================================
   HERO (Beranda)
   ============================================================ */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 100px 24px 0; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(74,144,217,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(74,144,217,0.07) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.hero-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(74,144,217,0.18) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero-glow-2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%); bottom: 0; left: 100px; pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,144,217,0.15); border: 1px solid rgba(74,144,217,0.3); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--blue-lt); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--blue-lt); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }
.hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; color: var(--white); line-height: 1.15; max-width: 820px; margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber); }
.hero-tagline { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.65); max-width: 600px; margin-bottom: 40px; line-height: 1.7; font-style: italic; }
.hero-tagline strong { color: var(--amber); font-style: normal; font-weight: 600; }
.hero-managed { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3); border-radius: 8px; padding: 8px 16px; margin-bottom: 32px; font-size: 13px; color: rgba(255,255,255,0.8); }
.hero-managed strong { color: var(--amber); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }


/* ============================================================
   TOMBOL GLOBAL
   ============================================================ */
.btn-primary { background: var(--amber); color: var(--navy); padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(245,166,35,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
.btn-secondary { border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: border-color .2s, background .2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }


/* ============================================================
   HERO MOCKUP
   ============================================================ */
.hero-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px 16px 0 0; padding: 20px; max-width: 900px; margin: 0 auto; }
.mockup-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }
.mockup-body { display: grid; grid-template-columns: 180px 1fr; gap: 14px; min-height: 180px; }
.mockup-sidebar { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; }
.mockup-menu-item { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.15); }
.mockup-menu-item.active { background: var(--amber); width: 70%; }
.mockup-content { display: flex; flex-direction: column; gap: 10px; }
.mockup-stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.mockup-stat { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 12px; }
.mockup-stat-num { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--amber); margin-bottom: 4px; }
.mockup-stat-label { height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; width: 60%; }
.mockup-chart { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 14px; flex: 1; display: flex; align-items: flex-end; gap: 8px; }
.mockup-bar-item { flex: 1; background: rgba(74,144,217,0.4); border-radius: 4px 4px 0 0; }
.mockup-bar-item:nth-child(2) { height: 55%; }
.mockup-bar-item:nth-child(3) { height: 80%; }
.mockup-bar-item:nth-child(4) { height: 45%; background: rgba(245,166,35,0.5); }
.mockup-bar-item:nth-child(5) { height: 90%; }
.mockup-bar-item:nth-child(6) { height: 65%; }
.mockup-bar-item:nth-child(7) { height: 70%; }


/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider { background: var(--navy); line-height: 0; }
.wave-divider svg { display: block; width: 100%; }


/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 20px 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--amber); }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }


/* ============================================================
   SECTION UMUM
   ============================================================ */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }


/* ============================================================
   ABOUT / LPPSLH CARD
   ============================================================ */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.about-text p { color: #374151; font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--navy); font-weight: 600; }
.lppslh-card { background: var(--navy); border-radius: 16px; padding: 32px; position: relative; overflow: hidden; }
.lppslh-card::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(74,144,217,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(74,144,217,0.08) 1px, transparent 1px); background-size: 32px 32px; }
.lppslh-card-inner { position: relative; z-index: 1; }
.lppslh-badge { display: inline-block; background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.4); color: var(--amber); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.lppslh-card h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.lppslh-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.lppslh-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 8px; }
.lppslh-stat { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 16px; }
.lppslh-stat-num { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 4px; }
.lppslh-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); }


/* ============================================================
   FITUR
   ============================================================ */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(35,39,69,0.1); border-color: var(--blue); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); display: grid; place-items: center; font-size: 22px; margin-bottom: 18px; }
.feature-card h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.feature-tag { display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--blue); background: rgba(74,144,217,0.1); padding: 4px 10px; border-radius: 100px; align-self: flex-start; }
.feature-list { margin-top: 10px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.feature-list li { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 7px; }
.feature-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 12px; margin-top: 1px; }


/* ============================================================
   WORKFLOW
   ============================================================ */
.workflow { background: var(--navy); position: relative; overflow: hidden; }
.workflow::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(74,144,217,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(74,144,217,0.06) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.workflow .section-eyebrow { color: var(--amber); }
.workflow .section-title { color: var(--white); }
.workflow .section-sub { color: rgba(255,255,255,0.55); }
.workflow-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 56px; position: relative; }
.workflow-steps::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--amber) 100%); opacity: 0.4; }
.wf-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; }
.wf-num { width: 60px; height: 60px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); background: var(--navy-lt); display: grid; place-items: center; font-size: 22px; margin-bottom: 20px; position: relative; z-index: 1; }
.wf-step:nth-child(1) .wf-num { border-color: var(--blue); background: rgba(74,144,217,0.15); }
.wf-step:nth-child(3) .wf-num { border-color: var(--amber); background: rgba(245,166,35,0.15); }
.wf-step:nth-child(5) .wf-num { border-color: var(--green); background: rgba(110,194,122,0.15); }
.wf-step h4 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.wf-step p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }


/* ============================================================
   STATUS LAPORAN
   ============================================================ */
.status-section { background: var(--bg); }
.status-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.status-pill { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--navy); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }


/* ============================================================
   STAKEHOLDERS
   ============================================================ */
.stakeholders { background: var(--white); }
.stakeholder-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.stakeholder-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 22px 24px; display: flex; align-items: center; gap: 16px; transition: border-color .2s, transform .2s; }
.stakeholder-card:hover { border-color: var(--navy); transform: translateX(4px); }
.stakeholder-icon { font-size: 28px; flex-shrink: 0; }
.stakeholder-card h4 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.stakeholder-card p { font-size: 13px; color: var(--muted); line-height: 1.4; }


/* ============================================================
   SPONSOR
   ============================================================ */
.sponsors { background: var(--bg); padding: 64px 24px; }
.sponsors .section-title { text-align: center; margin: 0 auto 10px; }
.sponsors .section-eyebrow { text-align: center; }
.sponsors .section-sub { text-align: center; margin: 0 auto 48px; }
.sponsor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.sponsor-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; min-height: 100px; transition: box-shadow .2s, border-color .2s; }
.sponsor-card:hover { box-shadow: 0 6px 24px rgba(35,39,69,0.09); border-color: var(--blue); }
.sponsor-logo { width: 150px; height: 150px; border-radius: 10px; background: var(--navy); display: grid; place-items: center; font-size: 22px; }
.sponsor-name { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.sponsor-type { font-size: 11px; color: var(--muted); font-weight: 500; }
.sponsor-divider { max-width: 1000px; margin: 0 auto 32px; display: flex; align-items: center; gap: 16px; }
.sponsor-divider-line { flex: 1; height: 1px; background: var(--border); }
.sponsor-divider-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }


/* ============================================================
   CTA
   ============================================================ */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #1a2060 100%); text-align: center; padding: 100px 24px; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-section h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.cta-section h2 span { color: var(--amber); }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #161929; padding: 48px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.4); max-width: 300px; }
.footer-managed { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-managed strong { color: var(--amber); font-size: 13px; }
.footer-col h5 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-badges { display: flex; gap: 10px; }
.badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }


/* ============================================================
   PAGE HEADER (Laporan, Peta, dll)
   ============================================================ */
.page-header { background: var(--navy); padding: 48px 24px 56px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(74,144,217,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(74,144,217,0.06) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.page-header-glow { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(74,144,217,0.15) 0%, transparent 70%); top: -100px; right: -50px; pointer-events: none; }
.page-header-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.25); font-size: 13px; }
.breadcrumb .current { color: rgba(255,255,255,0.7); font-size: 13px; }
.page-header h1 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.page-header h1 span { color: var(--amber); }
.page-header p { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.7; }


/* ============================================================
   PROGRESS STEPS (Form Laporan)
   ============================================================ */
.progress-wrap { background: var(--navy); padding: 0 24px 32px; }
.progress-inner { max-width: 860px; margin: 0 auto; }
.steps { display: flex; align-items: center; }
.step-item { display: flex; align-items: center; gap: 10px; flex: 1; }
.step-item:last-child { flex: 0; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.4); transition: all .3s; cursor: pointer; }
.step-circle.active { background: var(--amber); border-color: var(--amber); color: var(--navy); box-shadow: 0 0 0 4px rgba(245,166,35,0.2); }
.step-circle.done { background: var(--green); border-color: var(--green); color: var(--white); }
.step-label { display: flex; flex-direction: column; gap: 1px; }
.step-num { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.8px; }
.step-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); transition: color .3s; }
.step-item.active .step-num { color: var(--amber); }
.step-item.active .step-name { color: var(--white); }
.step-item.done .step-name { color: var(--green); }
.step-connector { flex: 1; height: 2px; margin: 0 12px; background: rgba(255,255,255,0.1); border-radius: 1px; position: relative; overflow: hidden; }
.step-connector .fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--green); width: 0%; transition: width .4s ease; }


/* ============================================================
   LAYOUT HALAMAN DALAM
   ============================================================ */
.main-wrap { max-width: 860px; margin: 0 auto; padding: 40px 24px 80px; }
.page-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 28px; max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.sidebar-card h4 { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.sidebar-card h4 span { font-size: 16px; }
.sidebar-tip { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.sidebar-tip:last-child { margin-bottom: 0; }
.sidebar-tip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 6px; }
.sidebar-tip p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.status-list { display: flex; flex-direction: column; gap: 8px; }
.status-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.status-row span { color: var(--text); font-weight: 500; }
.status-row small { color: var(--muted); margin-left: auto; font-size: 11px; }
.contact-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--blue); font-weight: 600; text-decoration: none; margin-top: 12px; transition: opacity .2s; }
.contact-link:hover { opacity: .7; }


/* ============================================================
   FORM PANEL
   ============================================================ */
.form-panel { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.panel-header { padding: 24px 32px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 14px; }
.panel-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.panel-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.panel-sub { font-size: 13px; color: var(--muted); }
.panel-body { padding: 32px; }
.form-step { display: none; }
.form-step.active { display: block; }


/* ============================================================
   FORM FIELDS
   ============================================================ */
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 22px; }

label { display: block; font-size: 13px; font-weight: 600; color: var(--label); margin-bottom: 7px; }
label .req { color: var(--red); margin-left: 2px; }
label .opt { font-size: 11px; font-weight: 500; color: var(--muted); background: var(--bg); border-radius: 4px; padding: 2px 6px; margin-left: 6px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none; appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(74,144,217,0.12); }
input::placeholder, textarea::placeholder { color: #B0B7C3; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea { resize: vertical; min-height: 120px; }

.field-hint { display: flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 12px; color: var(--muted); }
.field-hint svg { width: 12px; height: 12px; flex-shrink: 0; }
.char-count { text-align: right; font-size: 11px; color: var(--muted); margin-top: 5px; }
.char-count.warn { color: var(--amber); }
.char-count.over { color: var(--red); }
.section-divider { height: 1px; background: var(--border); margin: 22px 0; }


/* ============================================================
   IDENTITY TOGGLE
   ============================================================ */
.identity-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.id-option { border: 2px solid var(--border); border-radius: 12px; padding: 16px 20px; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 12px; }
.id-option:hover { border-color: var(--blue); background: rgba(74,144,217,0.03); }
.id-option.selected { border-color: var(--blue); background: rgba(74,144,217,0.06); }
.id-option input[type="radio"] { display: none; }
.id-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--bg); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.id-option.selected .id-icon { background: rgba(74,144,217,0.15); }
.id-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.id-text span { font-size: 12px; color: var(--muted); }


/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.cat-option { border: 2px solid var(--border); border-radius: 10px; padding: 14px 12px; cursor: pointer; transition: all .2s; text-align: center; }
.cat-option:hover { border-color: var(--blue); background: rgba(74,144,217,0.03); }
.cat-option.selected { border-color: var(--blue); background: rgba(74,144,217,0.07); }
.cat-option input { display: none; }
.cat-emoji { font-size: 24px; margin-bottom: 6px; display: block; }
.cat-name { font-size: 12px; font-weight: 600; color: var(--navy); }


/* ============================================================
   LOCATION
   ============================================================ */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.coord-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.coord-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.coord-label-row label { margin-bottom: 0; }
.get-location-btn { display: inline-flex; align-items: center; gap: 5px; background: rgba(74,144,217,0.1); color: var(--blue); border: none; border-radius: 6px; padding: 5px 10px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background .2s; font-family: 'Inter', sans-serif; }
.get-location-btn:hover { background: rgba(74,144,217,0.18); }
.get-location-btn svg { width: 12px; height: 12px; }


/* ============================================================
   FILE UPLOAD
   ============================================================ */
.upload-zone { border: 2px dashed var(--border); border-radius: 12px; padding: 32px 24px; text-align: center; cursor: pointer; transition: all .2s; position: relative; margin-bottom: 6px; }
.upload-zone:hover { border-color: var(--blue); background: rgba(74,144,217,0.03); }
.upload-zone.dragover { border-color: var(--blue); background: rgba(74,144,217,0.06); }
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-icon { font-size: 32px; margin-bottom: 10px; }
.upload-zone h4 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.upload-zone p { font-size: 13px; color: var(--muted); }
.upload-zone p strong { color: var(--blue); }
.file-preview { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.file-item { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; }
.file-item-icon { font-size: 20px; flex-shrink: 0; }
.file-item-name { flex: 1; font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item-size { font-size: 11px; color: var(--muted); flex-shrink: 0; }
.file-remove { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 16px; line-height: 1; padding: 2px; transition: color .2s; }
.file-remove:hover { color: var(--red); }
.upload-note { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-top: 4px; }


/* ============================================================
   ALERT
   ============================================================ */
.alert { display: flex; align-items: flex-start; gap: 10px; background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25); border-radius: 10px; padding: 14px 16px; margin-bottom: 22px; }
.alert-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.alert p { font-size: 13px; color: #92610A; line-height: 1.55; }
.alert p strong { font-weight: 600; color: #7a4f00; }


/* ============================================================
   REVIEW
   ============================================================ */
.review-block { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
.review-block-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.review-edit { font-size: 12px; font-weight: 600; color: var(--blue); cursor: pointer; text-transform: none; letter-spacing: 0; background: none; border: none; font-family: 'Inter', sans-serif; transition: opacity .2s; }
.review-edit:hover { opacity: .7; }
.review-row { display: flex; gap: 12px; margin-bottom: 10px; }
.review-row:last-child { margin-bottom: 0; }
.review-key { font-size: 13px; color: var(--muted); font-weight: 500; min-width: 120px; flex-shrink: 0; }
.review-val { font-size: 13px; color: var(--text); font-weight: 500; flex: 1; }
.review-val.anonim { color: var(--muted); font-style: italic; }
.review-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(74,144,217,0.1); color: var(--blue); padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }


/* ============================================================
   CONSENT
   ============================================================ */
.consent-box { background: rgba(74,144,217,0.05); border: 1.5px solid rgba(74,144,217,0.2); border-radius: 12px; padding: 20px 22px; margin-bottom: 24px; }
.consent-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.consent-item:last-child { margin-bottom: 0; }
.consent-item input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; cursor: pointer; accent-color: var(--blue); }
.consent-item label { font-size: 13px; color: var(--label); font-weight: 400; margin-bottom: 0; cursor: pointer; line-height: 1.55; }
.consent-item label a { color: var(--blue); text-decoration: none; }


/* ============================================================
   FORM ACTIONS
   ============================================================ */
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-top: 28px; border-top: 1px solid var(--border); margin-top: 28px; }
.btn-back-step { display: flex; align-items: center; gap: 7px; background: none; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 20px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .2s; }
.btn-back-step:hover { border-color: var(--navy); color: var(--navy); }
.btn-next { display: flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); border: none; border-radius: 10px; padding: 12px 28px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; box-shadow: 0 4px 14px rgba(35,39,69,0.2); }
.btn-next:hover { background: var(--navy-lt); transform: translateY(-1px); }
.btn-submit { background: var(--amber); color: var(--navy); box-shadow: 0 4px 16px rgba(245,166,35,0.35); }
.btn-submit:hover { background: #e6971a; }
.btn-next svg { width: 16px; height: 16px; }
.step-indicator { font-size: 13px; color: var(--muted); font-weight: 500; }


/* ============================================================
   SUCCESS PAGE
   ============================================================ */
#success-page { display: none; }
.success-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 56px 40px; text-align: center; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(110,194,122,0.15); display: grid; place-items: center; font-size: 36px; margin: 0 auto 24px; border: 2px solid rgba(110,194,122,0.3); }
.success-card h2 { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.success-card p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 480px; margin: 0 auto 28px; }
.ticket-box { display: inline-flex; flex-direction: column; align-items: center; background: var(--bg); border: 1.5px dashed var(--border); border-radius: 12px; padding: 18px 32px; margin-bottom: 32px; }
.ticket-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.ticket-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: 2px; }
.success-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-success-primary { background: var(--amber); color: var(--navy); border: none; border-radius: 10px; padding: 12px 24px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-success-secondary { background: none; color: var(--navy); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 24px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color .2s; }
.btn-success-secondary:hover { border-color: var(--navy); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .workflow-steps { grid-template-columns: repeat(3,1fr); gap: 32px; }
  .workflow-steps::before { display: none; }
  .stakeholder-grid { grid-template-columns: repeat(2,1fr); }
  .sponsor-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mockup-stat-row { grid-template-columns: repeat(2,1fr); }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .main-wrap { padding: 28px 16px 60px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-label { display: none; }
  section { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .stakeholder-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: repeat(2,1fr); }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { display: none; }
  .status-grid { gap: 8px; }
  .steps { gap: 0; }
  .step-label { display: none; }
  .page-with-sidebar { padding: 20px 16px 60px; }
  .panel-body { padding: 20px; }
  .panel-header { padding: 18px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row-3 { grid-template-columns: 1fr; gap: 0; }
  .location-grid { grid-template-columns: 1fr; }
  .coord-row { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .identity-toggle { grid-template-columns: 1fr; }
  .success-card { padding: 36px 20px; }
}