:root {
  --primary: #0f9bb7;
  --primary-dark: #0b6e83;
  --accent: #16a34a;
  --bg: #f3f4f6;
  --card-bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --danger: #b91c1c;
  --blue-dark: #0b4f7d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at top, #e0f7ff 0, #f3f4f6 45%, #f9fafb 100%);
  color: var(--text);
}

.page {
  width: 100%;
  max-width: 1120px;
  padding: 16px;
}

header {
  margin-bottom: 18px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text-main {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-text-sub {
  font-size: 11px;
  color: var(--muted);
}

.top-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  border: 1px solid #bfdbfe;
}

/* HERO LAYOUT */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-left {
  border-radius: 22px;
  padding: 18px 18px 20px;
  background: linear-gradient(135deg, #0f9bb7, #0ea5e9);
  color: #ecfeff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.hero-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(226, 244, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  background: rgba(15, 118, 110, 0.55);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-size: 13px;
  max-width: 460px;
  opacity: 0.96;
  margin-bottom: 10px;
}

.hero-tags {
  font-size: 11px;
  margin-bottom: 10px;
}

.hero-tags span {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(226, 244, 255, 0.6);
  margin-right: 4px;
  margin-bottom: 4px;
  background: rgba(15, 23, 42, 0.25);
}

.hero-list {
  font-size: 12px;
  margin-bottom: 14px;
}

.hero-list li {
  margin-left: 16px;
  margin-bottom: 3px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-hero {
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  background: #facc15;
  color: #1f2937;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.38);
}

.btn-hero span.icon {
  font-size: 18px;
}

.btn-hero:active {
  transform: translateY(1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.32);
}

.hero-note-mini {
  font-size: 10px;
  max-width: 270px;
  opacity: 0.95;
}

/* RIGHT CARD */
.hero-right {
  border-radius: 22px;
  padding: 16px 16px 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-right-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-right-title-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #0369a1;
}

.hero-right-text {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 8px;
}

/* STEP INDICATOR */
.step-indicator {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.progress-bar {
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  margin-bottom: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  transition: width 0.2s;
}

.step-dots {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #9ca3af;
  background: #ffffff;
}

.dot.active {
  border-color: #22c55e;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.inline-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .inline-form {
    grid-template-columns: minmax(0, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.label-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #0369a1;
}

.input,
.select,
textarea.input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: var(--text);
  padding: 7px 10px;
  font-size: 13px;
  outline: none;
}

.input:focus,
.select:focus,
textarea.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

.input::placeholder,
textarea.input::placeholder {
  color: #9ca3af;
}

.is-invalid {
  border-color: var(--danger) !important;
  background: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.2) !important;
}

textarea.input {
  min-height: 70px;
  resize: vertical;
}

.help-text {
  font-size: 11px;
  color: var(--muted);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f9fafb;
}

/* SHARE BUTTONS */
.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0;
}

.btn-share {
  border-radius: 999px;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
}

.btn-wa {
  background: #22c55e;
}

.btn-fb {
  background: #1877f2;
}

.btn-tg {
  background: #0ea5e9;
}

.social-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.btn-wa .social-icon-circle {
  background: #16a34a;
}

.btn-fb .social-icon-circle {
  background: #0b63d1;
}

.btn-tg .social-icon-circle {
  background: #0891b2;
}

.social-icon-circle i {
  color: #ffffff;
}

.share-counter {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.share-done {
  font-size: 11px;
  color: #16a34a;
  margin-top: 2px;
  display: none;
}

/* STEP FOOTER BUTTONS */
.step-footer {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.btn-step-secondary,
.btn-step-primary {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-step-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn-step-primary {
  background: var(--primary);
  color: #ecfeff;
}

.btn-step-primary:active {
  background: var(--primary-dark);
  transform: translateY(1px);
}

.btn-step-primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* === LAYANAN KAMI === */
.section-services {
  margin-top: 18px;
  border-radius: 22px;
  padding: 16px 16px 18px;
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
  color: #ffffff;
}

.section-services-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.24);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.35);
}

.service-card:active {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.4);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 2px solid #0f4c81;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0f4c81;
  flex-shrink: 0;
  background: #f1f5f9;
}

.summary-box {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #374151;
}

.service-text {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}

footer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}