/* ══════════════════════════════════════════
   Rental Mobil Bekasi — Clean Professional
══════════════════════════════════════════ */

:root {
  --white:      #ffffff;
  --bg:         #f8fafc; /* Elegant soft slate-blue gray */
  --bg-alt:     #f1f5f9;
  --card:       #ffffff;
  --border:     #e2e8f0;
  --border-hover: #cbd5e1;
  --text:       #0f172a; /* Sleek Slate 900 */
  --text-2:     #334155; /* Slate 700 */
  --text-3:     #64748b; /* Slate 500 */
  --blue:       #3b82f6; /* Modern Electric Blue */
  --blue-light: #f0f6ff;
  --blue-dark:  #1d4ed8;
  --green:      #10b981; /* Premium Emerald */
  --green-bg:   #ecfdf5;
  --orange:     #f59e0b; /* Amber */
  --orange-bg:  #fffbeb;
  --red:        #ef4444;
  --shadow-sm:  0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --font:       'Inter', system-ui, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }
.container { max-width: 1560px; margin: 0 auto; padding: 0 24px; width: 100%; }
a { color: var(--blue); text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 6px; }

/* ════════ NAVBAR ════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1560px; margin: 0 auto; padding: 0 24px;
  height: 60px; display: flex; align-items: center; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { font-size: 24px; }
.brand-name { font-size: 16px; font-weight: 700; color: var(--text); }
.brand-tagline { display: block; font-size: 11px; color: var(--text-3); line-height: 1; }
.nav-menu { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 6px 14px; border-radius: 6px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { background: var(--blue-light); color: var(--blue); }
.btn-chat-open {
  background: var(--blue); color: white; border: none;
  padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-chat-open:hover { background: var(--blue-dark); }

/* ════════ HERO ════════ */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
  padding: 100px 20px 64px; color: white;
}
.hero-wrap {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center;
}
.hero-tag {
  display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title { font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--blue); color: white; border: none;
  padding: 12px 28px; border-radius: var(--radius-lg); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4); }

.btn-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 12px 28px; border-radius: var(--radius-lg); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-outline.dark {
  color: var(--text-2); border-color: var(--border);
  background: var(--white);
}
.btn-outline.dark:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* Hero right */
.hero-right { display: flex; flex-direction: column; gap: 20px; }
.hero-card-stack { position: relative; height: 120px; }
.hcard {
  background: white; border-radius: var(--radius-xl); padding: 18px 22px;
  box-shadow: var(--shadow-premium); position: absolute; left: 0; right: 0;
  border: 1px solid var(--border);
}
.hcard-back  { top: 8px; left: 12px; right: -12px; opacity: 0.6; transform: rotate(2deg); }
.hcard-front { top: 0; z-index: 1; }
.hcard-row   { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.hcard-icon  { font-size: 28px; }
.hcard-car   { font-size: 15px; font-weight: 700; color: var(--text); }
.hcard-price { font-size: 13px; color: var(--blue); font-weight: 600; }
.hcard-tag   {
  margin-left: auto; background: var(--bg); color: var(--text-2);
  border: 1px solid var(--border); padding: 3px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.hcard-tag.match { background: var(--green-bg); color: var(--green); border-color: #a7f3d0; }
.hcard-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-3); }

.hero-stats-row {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 14px 20px;
}
.hstat { text-align: center; }
.hstat strong { display: block; font-size: 22px; font-weight: 800; color: white; }
.hstat span   { font-size: 12px; color: rgba(255,255,255,0.7); }
.hstat-sep    { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

/* ════════ SECTION ════════ */
.section      { padding: 72px 0; }
.section-alt  { background: var(--bg-alt); }
.section-head { margin-bottom: 36px; }
.section-title { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.5px; }
.section-sub   { font-size: 15px; color: var(--text-2); max-width: 640px; }

/* ════════ FILTER BOX ════════ */
.filter-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-md);
  margin-bottom: 36px;
}
.filter-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; margin-bottom: 24px;
}
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-label { font-size: 13px; font-weight: 600; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.req { color: var(--red); }
.field-input {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 11px 15px; font-size: 14px; font-family: var(--font);
  color: var(--text); background: var(--white); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.field-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12); transform: translateY(-1px); }
.field-input:hover { border-color: var(--border-hover); }
.field-input::placeholder { color: var(--text-3); }
.field-input option { background: white; }
.w-auto { width: auto; }

.filter-footer {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 12px; padding-top: 20px; border-top: 1px solid var(--border);
}

/* Autocomplete */
.autocomplete-wrap { position: relative; }
.autocomplete-drop {
  position: absolute; top: calc(100% + 3px); left: 0; right: 0; z-index: 200;
  background: white; border: 1.5px solid var(--border); border-radius: 8px;
  box-shadow: var(--shadow-md); display: none; overflow: hidden;
  max-height: 220px; overflow-y: auto;
}
.autocomplete-drop.open { display: block; }
.ac-item {
  padding: 9px 14px; font-size: 14px; cursor: pointer;
  color: var(--text); transition: var(--transition);
}
.ac-item:hover { background: var(--blue-light); color: var(--blue); }

/* ════════ RESULTS BAR ════════ */
.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 8px;
}
.results-title { font-size: 17px; font-weight: 700; color: var(--text); }
.results-note  { font-size: 14px; color: var(--text-2); }
.badge {
  background: var(--blue); color: white;
  padding: 5px 14px; border-radius: 50px; font-size: 13px; font-weight: 600;
}
.sort-row { display: flex; align-items: center; gap: 10px; }

/* ════════ CARDS GRID ════════ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}
.car-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 24px; transition: var(--transition);
  animation: fadeUp 0.35s ease both;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.car-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* Car image support styling */
.card-image-wrap {
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.car-card:hover .card-image-wrap {
  transform: scale(1.02);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.card-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 500;
}
.card-img-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: var(--text-3);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.7;
}

.card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.card-jenis { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.card-sim { font-size: 12px; font-weight: 700; background: var(--green-bg); color: var(--green); padding: 4px 10px; border-radius: 50px; border: 1px solid #a7f3d0; }

.card-rental { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.card-lokasi { font-size: 13px; color: var(--text-3); margin-bottom: 20px; display: flex; gap: 6px; align-items: center; }
.card-lokasi-icon { flex-shrink: 0; display: flex; align-items: center; }
.card-lokasi-icon svg { width: 14px; height: 14px; stroke: var(--text-3); stroke-width: 1.8; fill: none; }

.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.card-harga-wrap { }
.card-harga       { font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: -0.5px; }
.card-harga-label { font-size: 11px; color: var(--text-3); }
.card-fas {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 6px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-fas.lepas { background: var(--green-bg); color: var(--green); border: 1px solid #a7f3d0; }
.card-fas.sopir { background: var(--orange-bg); color: var(--orange); border: 1px solid #fde68a; }

/* ════════ PAGINATION ════════ */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.page-btn {
  min-width: 36px; height: 36px; border: 1.5px solid var(--border); background: white;
  border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer;
  color: var(--text-2); display: grid; place-items: center; transition: var(--transition);
}
.page-btn:hover       { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.page-btn.active      { background: var(--blue); color: white; border-color: var(--blue); }
.page-btn:disabled    { opacity: 0.4; cursor: default; }

/* ════════ ABOUT GRID ════════ */
.about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.about-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 22px; transition: var(--transition);
}
.about-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.about-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.about-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.about-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ════════ FOOTER ════════ */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 28px 20px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--text); }
.footer-copy  { font-size: 13px; color: var(--text-3); }

/* ════════ LOADING ════════ */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(4px);
  display: grid; place-items: center;
}
.loading-box { text-align: center; }
.spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--blue);
  animation: spin 0.75s linear infinite; margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-box p { font-size: 14px; color: var(--text-2); font-weight: 500; }

/* ════════ CHATBOT FAB ════════ */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--blue); border: none; cursor: pointer; font-size: 22px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.45); transition: var(--transition);
  display: grid; place-items: center;
}
.fab:hover { background: var(--blue-dark); transform: scale(1.08); }

/* ════════ CHATBOT PANEL ════════ */
.chatbot {
  position: fixed; bottom: 94px; right: 28px; z-index: 850;
  width: 360px; max-height: 560px;
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.92) translateY(12px); opacity: 0; pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.chatbot.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.chatbot-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  background: var(--blue); color: white;
}
.chatbot-info { display: flex; align-items: center; gap: 10px; }
.chatbot-ava  { font-size: 28px; }
.chatbot-name { font-size: 14px; font-weight: 700; }
.chatbot-status { font-size: 12px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 5px; }
.dot-online {
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.chatbot-x {
  background: rgba(255,255,255,0.15); border: none; color: white;
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 13px;
  display: grid; place-items: center; transition: var(--transition);
}
.chatbot-x:hover { background: rgba(255,255,255,0.3); }

.chatbot-msgs {
  flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 14px;
}
.msg { display: flex; align-items: flex-end; gap: 8px; }
.msg.user { flex-direction: row-reverse; }
.msg-ava { font-size: 20px; flex-shrink: 0; }
.msg-bubble {
  max-width: 82%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px 12px 12px 3px; padding: 10px 14px;
  font-size: 14px; line-height: 1.55; color: var(--text);
}
.msg-bubble p  { margin-bottom: 5px; }
.msg-bubble p:last-child { margin-bottom: 0; }
.msg-bubble ul { padding-left: 16px; margin-top: 4px; }
.msg-bubble li { margin-bottom: 3px; color: var(--text-2); }
.msg.user .msg-bubble {
  background: var(--blue); color: white; border-color: var(--blue);
  border-radius: 12px 12px 3px 12px;
}
.msg.user .msg-bubble p { color: white; }

.typing-dots { display: flex; gap: 4px; padding: 4px 0; }
.typing-dots span {
  width: 7px; height: 7px; background: var(--text-3); border-radius: 50%;
  animation: typing-anim 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-anim { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

.chatbot-chips {
  display: flex; gap: 7px; overflow-x: auto; padding: 8px 14px;
  border-top: 1px solid var(--border); scrollbar-width: none;
}
.chatbot-chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0; background: var(--blue-light); border: 1px solid #bfdbfe;
  color: var(--blue); padding: 5px 13px; border-radius: 50px;
  font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.chip:hover { background: var(--blue); color: white; }

.chatbot-input {
  display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border);
}
.chatbot-input input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 8px 13px; font-size: 14px; font-family: var(--font);
  color: var(--text); transition: var(--transition);
}
.chatbot-input input:focus { outline: none; border-color: var(--blue); }
#chatSend {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--blue); border: none; cursor: pointer;
  display: grid; place-items: center; transition: var(--transition); flex-shrink: 0;
}
#chatSend:hover { background: var(--blue-dark); }
#chatSend svg   { width: 16px; height: 16px; color: white; }

/* ════════ EMPTY STATE ════════ */
.empty-state { text-align: center; padding: 48px 20px; color: var(--text-3); }
.empty-state p { margin-top: 8px; font-size: 14px; }

/* ════════ NEW: CBF-specific styles ════════ */
.field-group.span2 { grid-column: span 2; }
.field-hint { font-size: 11px; color: var(--text-3); font-weight: 400; margin-left: 4px; }

/* CBF flow */
.cbf-flow {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.flow-step {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
}
.flow-step.active { border-color: var(--blue); background: var(--blue-light); }
.flow-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--border); color: var(--text-2);
  font-size: 12px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0;
}
.flow-step.active .flow-num { background: var(--blue); color: white; }
.flow-label { font-size: 13px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.flow-step.active .flow-label { color: var(--blue); }
.flow-arrow { color: var(--text-3); font-size: 18px; }

/* Hero info box */
.hero-info-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 24px;
}
.info-row { display: flex; align-items: center; gap: 14px; }
.info-icon { font-size: 28px; }
.info-text { display: flex; flex-direction: column; gap: 3px; }
.info-text strong { font-size: 14px; font-weight: 700; color: white; }
.info-text span   { font-size: 13px; color: rgba(255,255,255,0.7); }
.info-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 14px 0; }

/* Warning box */
.warning-box {
  display: flex; align-items: center; gap: 10px;
  background: #fffbeb; border: 1.5px solid #fcd34d;
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 14px; color: #92400e; margin-bottom: 20px;
}

/* btn-reset */
.btn-reset {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-2); padding: 9px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.btn-reset:hover { border-color: var(--red); color: var(--red); }

/* About formula */
.about-formula {
  margin-top: 12px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 12px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  font-family: 'Courier New', monospace; text-align: center;
}
.about-card code {
  background: var(--bg); padding: 1px 5px; border-radius: 4px;
  font-size: 12px; font-family: 'Courier New', monospace;
}

/* System flow card */
.system-flow-card {
  margin-top: 40px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px;
}
.flow-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.system-flow {
  display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap;
}
.sf-step {
  flex: 1; min-width: 120px;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 12px;
}
.sf-step.highlight { background: var(--blue-light); border-color: var(--blue); }
.sf-icon { font-size: 28px; }
.sf-step strong { font-size: 13px; font-weight: 700; color: var(--text); }
.sf-step span   { font-size: 12px; color: var(--text-3); line-height: 1.4; }
.sf-step.highlight strong { color: var(--blue); }
.sf-arrow { font-size: 20px; color: var(--text-3); flex-shrink: 0; align-self: center; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 768px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-title { font-size: 28px; }
  .nav-menu { display: none; }
  .chatbot { width: calc(100vw - 20px); right: 10px; bottom: 88px; }
  .fab { bottom: 20px; right: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .filter-footer { flex-wrap: wrap; }
  .field-group.span2 { grid-column: span 2; }
  .system-flow { flex-direction: column; }
  .sf-arrow { transform: rotate(90deg); }
  .cbf-flow { gap: 6px; }
}
@media (max-width: 480px) {
  .filter-grid { grid-template-columns: 1fr; }
  .field-group.span2 { grid-column: span 1; }
}

/* Transmisi Badge specific style */
.card-fas.transmisi {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid #bfdbfe;
}

