:root {
      --primary: #0b7bbb;
      --primary-dark: #075b87;
      --accent: #00a86b;
      --bg: #f4f7fb;
      --card-bg: #ffffff;
      --card-soft: #f9fafb;
      --text: #111827;
      --muted: #6b7280;
      --border: #d1d5db;
      --footer-bg: #0f172a;
      --footer-text: #e5e7eb;
      --modal-bg: #020617;
    }

    body {
      box-sizing: border-box;
      margin: 0;
      padding: 16px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
      display: flex;
      justify-content: center;
      background: radial-gradient(circle at top, #dbeafe 0, #e5ecf7 40%, #f4f7fb 100%);
      color: var(--text);
      transition: background 0.3s ease, color 0.3s ease;
    }

    *, *::before, *::after {
      box-sizing: inherit;
    }

    body.dark {
      --bg: #020617;
      --card-bg: #020617;
      --card-soft: #020617;
      --text: #e5e7eb;
      --muted: #9ca3af;
      --border: #1f2937;
      --footer-bg: #020617;
      --footer-text: #9ca3af;
      --modal-bg: #020617;
      background: radial-gradient(circle at top, #081226 0, #020617 60%, #020617 100%);
    }

    .page {
      width: 100%;
      max-width: 960px;
    }

    /* HEADER */
    header {
      background: linear-gradient(120deg, var(--primary-dark), var(--primary));
      border-radius: 20px;
      padding: 16px 16px 14px;
      color: #fff;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
      margin-bottom: 16px;
      position: relative;
    }

    .header-top {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .logo-badge {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
      position: relative;
      overflow: hidden;
    }

    .logo-badge::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 15% 20%, #ffffff 0, transparent 55%);
      opacity: 0.6;
    }

    .logo-badge span {
      position: relative;
      z-index: 1;
    }

    .header-text-block {
      flex: 1;
      min-width: 220px;
    }

    .header-pill {
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.3);
      display: inline-block;
      margin-bottom: 2px;
    }

    .header-title {
      font-size: 18px;
      font-weight: 700;
      margin: 0;
    }

    .header-sub {
      font-size: 13px;
      opacity: 0.9;
    }

    .theme-toggle {
      position: absolute;
      right: 12px;
      top: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(15, 23, 42, 0.35);
      font-size: 11px;
      cursor: pointer;
    }

    .theme-toggle span.icon {
      font-size: 13px;
    }

    .header-bottom {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
      align-items: center;
      justify-content: space-between;
    }

    .search-box {
      flex: 1;
      min-width: 220px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      padding: 6px 9px 6px 11px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .search-box input {
      flex: 1;
      border: none;
      background: transparent;
      color: #e5e7eb;
      font-size: 13px;
      outline: none;
    }

    .search-box input::placeholder {
      color: #cbd5f5;
    }

    .search-btn {
      border-radius: 999px;
      border: none;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      background: #facc15;
      color: #1f2937;
      white-space: nowrap;
    }

    .location-note {
      font-size: 11px;
      opacity: 0.9;
    }

    main {
      margin-top: 10px;
      margin-bottom: 18px;
    }

    section {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 16px 16px 14px;
      box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
      border: 1px solid rgba(148, 163, 184, 0.35);
      margin-bottom: 14px;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    h2.section-title {
      font-size: 18px;
      margin-bottom: 4px;
      color: var(--primary-dark);
    }

    body.dark h2.section-title {
      color: #e5e7eb;
    }

    p.section-subtitle {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 12px;
    }

    /* KATEGORI */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 10px;
    }

    .category-card {
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--card-soft);
      padding: 10px 11px;
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
    }

    .category-card:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
      border-color: var(--primary);
    }

    .category-name {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .category-tags {
      font-size: 12px;
      color: var(--muted);
    }

    .badge-region {
      display: inline-block;
      margin-top: 5px;
      font-size: 11px;
      padding: 2px 7px;
      border-radius: 999px;
      background: #e0f2fe;
      color: #0369a1;
    }

    body.dark .badge-region {
      background: #082f49;
      color: #7dd3fc;
    }

    /* TESTIMONI */
    .testi-grid {
      display: grid;
      grid-template-columns: 1.5fr 1.2fr;
      gap: 12px;
    }

    .testi-card {
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--card-soft);
      padding: 10px 11px;
      margin-bottom: 8px;
    }

    .testi-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 4px;
      font-size: 12px;
    }

    .testi-name {
      font-weight: 600;
      color: var(--text);
    }

    .testi-role {
      font-size: 11px;
      color: var(--muted);
    }

    .testi-time {
      font-size: 11px;
      color: var(--muted);
    }

    .testi-text {
      font-size: 12px;
      color: var(--text);
      margin-bottom: 4px;
    }

    .testi-meta {
      font-size: 11px;
      color: var(--muted);
    }

    .testi-meta span {
      margin-right: 8px;
    }

    footer {
      padding: 12px 14px 8px;
      border-radius: 18px;
      background: var(--footer-bg);
      color: var(--footer-text);
      font-size: 11px;
      text-align: center;
      transition: background 0.2s ease, color 0.2s ease;
    }

    footer p {
      margin-bottom: 4px;
    }

    footer strong {
      color: #f9fafb;
    }

    @media (max-width: 768px) {
      .testi-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      header {
        padding: 14px 12px;
      }
    }

    /* ========= MODAL MULTI STEP ========= */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.82);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px;
      z-index: 50;
    }

    .modal-card {
      width: 100%;
      max-width: 680px;
      border-radius: 20px;
      background: var(--modal-bg);
      color: #e5e7eb;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 16px 18px 16px;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .modal-title {
      font-size: 18px;
      font-weight: 700;
    }

    .modal-sub {
      font-size: 13px;
      color: #cbd5f5;
    }

    .modal-sub span {
      font-weight: 600;
      color: #38bdf8;
    }

    .modal-close {
      border: none;
      background: transparent;
      color: #9ca3af;
      font-size: 20px;
      cursor: pointer;
      padding: 0 0 0 8px;
    }

    .modal-close:hover {
      color: #e5e7eb;
    }

    /* Step indicator */
    .step-indicator {
      margin-top: 6px;
      margin-bottom: 12px;
    }

    .step-counter-text {
      font-size: 12px;
      color: #9ca3af;
      margin-bottom: 6px;
    }

    .step-line-bg {
      height: 4px;
      border-radius: 999px;
      background: #111827;
      position: relative;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .step-line-fill {
      position: absolute;
      inset: 0;
      width: 0%;
      background: linear-gradient(90deg, #38bdf8, #22c55e);
      transition: width 0.25s ease;
    }

    .step-circles {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }

    .step-circle {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 2px solid #4b5563;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: #9ca3af;
      background: #020617;
    }

    .step-circle.active {
      border-color: #38bdf8;
      background: #0f172a;
      color: #e5e7eb;
    }

    .step-circle.done {
      border-color: #22c55e;
      background: #16a34a;
      color: #022c22;
    }

    .step-labels {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: #9ca3af;
    }

    /* Form */
    .form-group {
      margin-bottom: 10px;
    }

    label {
      display: block;
      font-size: 13px;
      margin-bottom: 4px;
      color: #e5e7eb;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #1f2937;
      padding: 9px 10px;
      font-size: 14px;
      outline: none;
      background: #020617;
      color: #e5e7eb;
      transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    input::placeholder,
    textarea::placeholder {
      color: #6b7280;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #38bdf8;
      box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
    }

    .is-invalid {
      border-color: #f87171 !important;
      box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.4) !important;
    }

    textarea {
      min-height: 80px;
      resize: vertical;
    }

    .hint {
      font-size: 11px;
      color: #9ca3af;
      margin-top: 3px;
    }

    .error {
      font-size: 12px;
      color: #f97373;
      margin-bottom: 8px;
      display: none;
    }

    .step {
      display: none;
    }

    .step.active {
      display: block;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .btn {
      border-radius: 999px;
      border: none;
      padding: 9px 14px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      white-space: nowrap;
    }

    .btn-primary {
      background: #38bdf8;
      color: #0f172a;
    }

    .btn-secondary {
      background: #111827;
      color: #e5e7eb;
    }

    .btn-share-wa {
      background: #25D366;
      color: #fff;
    }

    .btn-share-tg {
      background: #0088cc;
      color: #fff;
    }

    .btn-share-fb {
      background: #1877f2;
      color: #fff;
    }

    .btn:disabled {
      opacity: 0.6;
      cursor: default;
    }

    .share-note {
      font-size: 11px;
      color: #9ca3af;
      margin-top: 4px;
    }

    .success-box {
      border-radius: 12px;
      border: 1px solid #22c55e;
      background: #022c22;
      padding: 10px 11px;
      font-size: 13px;
      color: #bbf7d0;
      margin-top: 10px;
    }

    .summary-box {
      border-radius: 12px;
      border: 1px solid #1f2937;
      background: #020617;
      padding: 10px 11px;
      font-size: 13px;
    }

    .summary-row {
      margin-bottom: 4px;
    }

    .summary-label {
      color: #9ca3af;
    }

    .summary-value {
      color: #e5e7eb;
    }

    .modal-actions {
      justify-content: flex-end;
    }

    @media (max-width: 480px) {
      .step-labels {
        display: none;
      }
    }