body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #F5F7FA;
}

.main-header {
  width: 100%;
  background: #0A1F44;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo a {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.logo img {
  height: 90px; /* adjust this */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

/* SIGNUP BUTTON */
.signup-btn {
  padding: 8px 16px;
  background: #00C896;
  color: #0A1F44 !important;
  border-radius: 6px;
  font-weight: 600;
}

.signup-btn:hover {
  background: #00B383;
}#wrapper{
	width: 100%;
}.hero-section {
  position: relative;
  min-height: 720px;
  background: url('../imgs/truck-hero.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 31, 68, 0.88) 0%,
    rgba(10, 31, 68, 0.72) 45%,
    rgba(10, 31, 68, 0.45) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-left {
  width: 52%;
  color: #FFFFFF;
}

.hero-left h1 {
  font-size: 54px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
  max-width: 620px;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-form-card {
  width: 420px;
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.hero-form-card h2 {
  margin: 0 0 22px;
  font-size: 28px;
  color: #0A1F44;
  font-weight: 800;
}

.rate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #23324F;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 50px;
  border: 1px solid #D8E0EA;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  color: #1A1A1A;
  background: #FFFFFF;
  box-sizing: border-box;
  outline: none;
  transition: 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #00C896;
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.12);
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-row .form-group {
  flex: 1;
}

.check-rate-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 12px;
  background: #00C896;
  color: #0A1F44;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 6px;
}

.check-rate-btn:hover {
  background: #00B383;
}.results-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  margin-top: 40px;
  overflow: hidden;
}.rate-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.rate-item span {
  font-size: 14px;
  color: #7A869A;
}

.rate-item h2 {
  font-size: 42px;
  color: #00C896;
  margin: 10px 0 0;
}

.rate-item h3 {
  font-size: 26px;
  margin: 8px 0 0;
}

.locked {
  color: #B0B7C3;
}.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.detail-box {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.detail-box span {
  font-size: 13px;
  color: #7A869A;
}

.detail-box strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.medium {
  color: #FFA500;
}.premium-section {
  margin-top: 30px;
  background: linear-gradient(135deg, #0A1F44, #132F66);
  color: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.premium-section h3 {
  margin-bottom: 15px;
}

.premium-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.premium-section li {
  margin: 8px 0;
  font-size: 15px;
}

.unlock-btn {
  background: #00C896;
  border: none;
  padding: 7px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  color: #0A1F44;
  text-decoration: none;
}.why-section {
  margin-top: 24px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #EEF2F7;
}

/* Title */
.why-section h4 {
  font-size: 20px;
  font-weight: 800;
  color: #0A1F44;
  margin-bottom: 16px;
}

/* List */
.why-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Each reason box */
.why-section li {
  background: #F8FBFD;
  border: 1px solid #E6EDF5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #23324F;
  position: relative;
  transition: 0.2s ease;
}

/* Subtle hover */
.why-section li:hover {
  border-color: #00C896;
  background: #F1FBF7;
}

/* Green indicator dot */
.why-section li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #00C896;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Add spacing so text doesn’t overlap dot */
.why-section li {
  padding-left: 26px;
}.main-footer {
  background: #0A1F44;
  color: #FFFFFF;
  margin-top: 60px;
}

/* MAIN FOOTER CONTENT */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;

  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 260px;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #00C896;
}

/* RIGHT */
.footer-right h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-right p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 220px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 18px 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}#confidenceText.high {
  color: #1f9d55;
}

#confidenceText.medium {
  color: #d69e2e;
}

#confidenceText.low {
  color: #e53e3e;
}.terms-page {
  background: #0d1117;
  padding: 80px 20px;
  min-height: 100vh;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  color: #dbe3ec;
  line-height: 1.7;
}

.terms-container h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #ffffff;
}

.terms-updated {
  color: #8fa1b5;
  margin-bottom: 30px;
}

.terms-container h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #ffffff;
}

.terms-container p {
  margin-bottom: 15px;
}

.terms-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.terms-container li {
  margin-bottom: 8px;
}.guest-search-counter {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #0A1F44;
}

.guest-lock-message {
  margin-top: 14px;
  padding: 14px 16px;
  background: #fff4f4;
  border: 1px solid #f1c4c4;
  border-radius: 12px;
  color: #9f2d2d;
  font-size: 14px;
  font-weight: 600;
}

.guest-lock-message a {
  color: #0A1F44;
  font-weight: 800;
  text-decoration: none;
}.dashboard-page {
  padding: 30px 0 60px;
  background: #f5f7fa;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-welcome h1 {
  font-size: 34px;
  line-height: 1.1;
  color: #0A1F44;
  margin-bottom: 8px;
}

.dashboard-welcome p {
  color: #6E7C91;
  font-size: 15px;
  max-width: 620px;
}

.dashboard-top-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-top-btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-top-btn-primary {
  background: #00C896;
  color: #0A1F44;
}

.dashboard-top-btn-light {
  background: #ffffff;
  color: #0A1F44;
  border: 1px solid #dbe3ec;
}

.dashboard-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-status-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.dashboard-status-label {
  display: block;
  font-size: 13px;
  color: #6E7C91;
  margin-bottom: 8px;
  font-weight: 700;
}

.dashboard-status-value {
  display: block;
  font-size: 24px;
  color: #0A1F44;
  line-height: 1.1;
}

.dashboard-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 24px;
}

.dashboard-main-left,
.dashboard-main-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.dashboard-card-head {
  margin-bottom: 20px;
}

.dashboard-card-head h2 {
  color: #0A1F44;
  font-size: 26px;
  margin-bottom: 6px;
}

.dashboard-card-head p {
  font-size: 14px;
  color: #6E7C91;
}

.dashboard-load-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-form-group {
  display: flex;
  flex-direction: column;
}

.dashboard-form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #23324F;
  font-weight: 700;
}

.dashboard-form-group input,
.dashboard-form-group select {
  width: 100%;
  height: 52px;
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  color: #1A1A1A;
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
}

.dashboard-form-group input:focus,
.dashboard-form-group select:focus {
  border-color: #00C896;
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.12);
}

.dashboard-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dashboard-form-actions {
  margin-top: 4px;
}

.dashboard-submit-btn {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 12px;
  background: #00C896;
  color: #0A1F44;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dashboard-result-box {
  background: #f8fbfd;
  border: 1px solid #e7eef5;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.dashboard-result-box span {
  display: block;
  font-size: 13px;
  color: #6E7C91;
  margin-bottom: 8px;
  font-weight: 700;
}

.dashboard-result-box strong {
  display: block;
  font-size: 22px;
  color: #0A1F44;
}

.dashboard-why-wrap {
  margin-top: 22px;
}

.dashboard-why-wrap h3 {
  color: #0A1F44;
  font-size: 20px;
  margin-bottom: 14px;
}

.dashboard-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dashboard-why-list li {
  background: #f8fbfd;
  border: 1px solid #e6edf5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #23324F;
}

.dashboard-table-wrap {
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #edf2f7;
  font-size: 14px;
}

.dashboard-table th {
  color: #6E7C91;
  font-weight: 800;
}

.dashboard-table td {
  color: #23324F;
  font-weight: 600;
}

.table-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  background: #eef3f8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #23324F;
}

.table-badge-good {
  background: #eafbf5;
  color: #16986f;
}

.dashboard-profile-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-profile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f7;
}

.dashboard-profile-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dashboard-profile-item span {
  color: #6E7C91;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-profile-item strong {
  color: #0A1F44;
  font-size: 15px;
  font-weight: 800;
  text-align: right;
}

.dashboard-card-btn {
  display: inline-flex;
  margin-top: 18px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  background: #0A1F44;
  color: #ffffff;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

.dashboard-upgrade-card {
  background: linear-gradient(135deg, #0A1F44 0%, #132F66 100%);
  color: #ffffff;
}

.dashboard-upgrade-card .dashboard-card-head h2,
.dashboard-upgrade-card .dashboard-card-head p {
  color: #ffffff;
}

.dashboard-upgrade-card .dashboard-card-head p {
  opacity: 0.82;
}

.dashboard-upgrade-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-upgrade-list li {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.dashboard-upgrade-btn {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  background: #00C896;
  color: #0A1F44;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
}

.dashboard-stats-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-stat-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f7;
}

.dashboard-stat-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dashboard-stat-line span {
  color: #6E7C91;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-stat-line strong {
  color: #0A1F44;
  font-size: 16px;
  font-weight: 800;
}

.confidence-low {
  color: #d14848 !important;
}

.confidence-medium {
  color: #f5a623 !important;
}

.confidence-high {
  color: #16a06f !important;
}

@media (max-width: 1100px) {
  .dashboard-status-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-form-row,
  .dashboard-results-grid,
  .dashboard-why-list,
  .dashboard-status-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-welcome h1 {
    font-size: 28px;
  }

  .dashboard-card {
    padding: 20px;
  }
}.user-menu {
  position: relative;
}

.user-btn {
  background: #f5f7fa;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  color: #0A1F44;
}

.caret {
  margin-left: 6px;
  font-size: 12px;
}

.user-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  min-width: 180px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}

.user-dropdown a {
  padding: 12px 16px;
  text-decoration: none;
  color: #23324F;
  font-weight: 600;
  transition: background 0.2s;
}

.user-dropdown a:hover {
  background: #f2f5f9;
}

.user-menu:hover .user-dropdown {
  display: flex;
}.premium-lock-wrap {
  position: relative;
  overflow: hidden;
}

.premium-lock-wrap.is-locked > *:not(.premium-lock-overlay) {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.premium-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 31, 68, 0.25);
  backdrop-filter: blur(2.5px);
}

.premium-lock-box {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}.status-lock-wrap {
  position: relative;
}

.status-lock-wrap.is-locked .dashboard-status-label,
.status-lock-wrap.is-locked .dashboard-status-value {
  filter: blur(4px);
  user-select: none;
}

.status-lock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.96);
  color: #0A1F44;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  z-index: 3;
}.settings-page {
  padding: 30px 0 60px;
}

.settings-head {
  margin-bottom: 24px;
}

.settings-head h1 {
  font-size: 34px;
  color: #0A1F44;
  margin-bottom: 8px;
}

.settings-head p {
  color: #6E7C91;
  font-size: 15px;
}

.settings-alert {
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-weight: 700;
}

.success-alert {
  background: #eafbf5;
  border: 1px solid #bfe9d9;
  color: #167a5b;
}

.error-alert {
  background: #ffeaea;
  border: 1px solid #f3b9b9;
  color: #b23838;
}

.error-alert p {
  margin: 0 0 6px;
}

.error-alert p:last-child {
  margin-bottom: 0;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.settings-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.settings-card-head {
  margin-bottom: 20px;
}

.settings-card-head h2 {
  font-size: 24px;
  color: #0A1F44;
  margin-bottom: 6px;
}

.settings-card-head p {
  font-size: 14px;
  color: #6E7C91;
}

.settings-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.settings-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.settings-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #23324F;
  font-weight: 700;
}

.settings-group input {
  width: 100%;
  height: 52px;
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  color: #1A1A1A;
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
}

.settings-group input:focus {
  border-color: #00C896;
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.12);
}

.settings-btn-primary,
.settings-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: none;  
  cursor: pointer;
  box-sizing: border-box;
}

.settings-btn-primary {
  background: #00C896;
  color: #0A1F44;
}

.settings-btn-light {
  background: #F5F7FA;
  color: #0A1F44;
  border: 1px solid #d8e0ea;
}

.settings-full-btn {
  width: 100%;
  margin-top: 12px;
}

.settings-membership-box {
  background: #f8fbfd;
  border: 1px solid #e6edf5;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 12px;
}

.settings-plan-label {
  display: block;
  font-size: 13px;
  color: #6E7C91;
  margin-bottom: 8px;
  font-weight: 700;
}

.settings-plan-value {
  display: block;
  font-size: 24px;
  color: #0A1F44;
}

@media (max-width: 900px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .settings-form-row {
    grid-template-columns: 1fr;
  }

  .settings-head h1 {
    font-size: 28px;
  }
}.pricing-page {
  background: #f5f7fa;
  padding-bottom: 70px;
}

.pricing-hero {
  padding: 70px 20px 30px;
  text-align: center;
}

.pricing-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pricing-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 200, 150, 0.12);
  color: #0A1F44;
  font-size: 13px;
  font-weight: 800;
}

.pricing-hero h1 {
  font-size: 48px;
  line-height: 1.05;
  color: #0A1F44;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #6E7C91;
}

.pricing-cards-section {
  padding: 20px;
}

.pricing-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.pricing-card-free {
  border: 1px solid #e7edf5;
}

.pricing-card-premium {
  border: 2px solid #00C896;
  box-shadow: 0 16px 38px rgba(0, 200, 150, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #00C896;
  color: #0A1F44;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pricing-card-head h2 {
  font-size: 30px;
  color: #0A1F44;
  margin-bottom: 8px;
}

.pricing-card-head p {
  color: #6E7C91;
  font-size: 15px;
  line-height: 1.6;
}

.pricing-price-wrap {
  margin: 24px 0 24px;
}

.pricing-price {
  display: block;
  font-size: 54px;
  line-height: 1;
  color: #0A1F44;
}

.pricing-price-note {
  display: block;
  margin-top: 8px;
  color: #6E7C91;
  font-size: 14px;
  font-weight: 700;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  font-weight: 700;
  color: #23324F;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00C896;
  font-weight: 900;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  width: 100%;
  box-sizing: border-box;
}

.pricing-btn-primary {
  background: #00C896;
  color: #0A1F44;
}

.pricing-btn-light {
  background: #ffffff;
  color: #0A1F44;
  border: 1px solid #d9e2ec;
}

.pricing-value-strip {
  padding: 10px 20px 20px;
}

.pricing-value-box {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0A1F44 0%, #132F66 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
}

.pricing-value-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.pricing-value-box p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}

.pricing-compare-section,
.pricing-faq-section,
.pricing-bottom-cta {
  padding: 50px 20px 0;
}

.pricing-section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.pricing-section-head h2 {
  font-size: 34px;
  color: #0A1F44;
  margin-bottom: 8px;
}

.pricing-section-head p {
  color: #6E7C91;
  font-size: 15px;
}

.pricing-compare-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow-x: auto;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #edf2f7;
  text-align: left;
  font-size: 14px;
}

.pricing-compare-table th {
  color: #0A1F44;
  font-size: 15px;
  font-weight: 800;
  background: #f8fbfd;
}

.pricing-compare-table td {
  color: #23324F;
  font-weight: 600;
}

.pricing-faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricing-faq-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.pricing-faq-item h3 {
  color: #0A1F44;
  font-size: 20px;
  margin-bottom: 10px;
}

.pricing-faq-item p {
  color: #6E7C91;
  line-height: 1.7;
  font-size: 14px;
}

.pricing-bottom-box {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.pricing-bottom-box h2 {
  font-size: 36px;
  color: #0A1F44;
  margin-bottom: 10px;
}

.pricing-bottom-box p {
  color: #6E7C91;
  margin-bottom: 20px;
  font-size: 15px;
}

.pricing-bottom-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-bottom-actions .pricing-btn {
  width: auto;
  min-width: 180px;
}

@media (max-width: 900px) {
  .pricing-cards-grid,
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero h1 {
    font-size: 38px;
  }

  .pricing-bottom-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .pricing-hero {
    padding-top: 50px;
  }

  .pricing-hero h1 {
    font-size: 32px;
  }

  .pricing-card,
  .pricing-value-box,
  .pricing-bottom-box {
    padding: 22px;
  }

  .pricing-section-head h2 {
    font-size: 28px;
  }
}.checkout-page {
  background: #f5f7fa;
  padding: 40px 20px 70px;
}

.checkout-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.checkout-summary-card,
.checkout-payment-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.checkout-summary-head {
  margin-bottom: 24px;
}

.checkout-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 200, 150, 0.12);
  color: #0A1F44;
  font-size: 13px;
  font-weight: 800;
}

.checkout-summary-head h1 {
  font-size: 42px;
  line-height: 1.05;
  color: #0A1F44;
  margin-bottom: 12px;
}

.checkout-summary-head p {
  color: #6E7C91;
  font-size: 15px;
  line-height: 1.7;
}

.checkout-plan-box,
.checkout-features-box,
.checkout-total-box {
  border: 1px solid #e6edf5;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
  background: #f8fbfd;
}

.checkout-plan-row,
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.checkout-plan-row span,
.checkout-total-row span {
  color: #6E7C91;
  font-size: 14px;
  font-weight: 700;
}

.checkout-plan-row strong,
.checkout-total-row strong {
  color: #0A1F44;
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.checkout-total-row strong {
  font-size: 28px;
}

.checkout-features-box h3 {
  color: #0A1F44;
  font-size: 20px;
  margin-bottom: 14px;
}

.checkout-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-feature-list li {
  position: relative;
  padding-left: 24px;
  color: #23324F;
  font-size: 15px;
  font-weight: 700;
}

.checkout-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00C896;
  font-weight: 900;
}

.checkout-note {
  color: #6E7C91;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
}

.checkout-payment-head {
  margin-bottom: 22px;
}

.checkout-payment-head h2 {
  font-size: 30px;
  color: #0A1F44;
  margin-bottom: 8px;
}

.checkout-payment-head p {
  color: #6E7C91;
  font-size: 14px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-group {
  display: flex;
  flex-direction: column;
}

.checkout-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #23324F;
  font-weight: 700;
}

.checkout-group input {
  width: 100%;
  height: 52px;
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  color: #1A1A1A;
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
}

.checkout-group input:focus {
  border-color: #00C896;
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.12);
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-submit-btn {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 12px;
  background: #00C896;
  color: #0A1F44;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 4px;
}

.checkout-security-note {
  color: #6E7C91;
  font-size: 13px;
  text-align: center;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-summary-head h1 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .checkout-page {
    padding: 30px 16px 60px;
  }

  .checkout-summary-card,
  .checkout-payment-card {
    padding: 22px;
  }

  .checkout-form-row {
    grid-template-columns: 1fr;
  }

  .checkout-summary-head h1 {
    font-size: 30px;
  }

  .checkout-payment-head h2 {
    font-size: 26px;
  }
}#payment-element {
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background: #fff;
}

#payment-message {
  margin: 12px 0 0;
  color: #b91c1c;
  font-size: 14px;
}.success-wrap {
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  padding: 20px;
  box-sizing: border-box;
}.success-card {
      width: 100%;
      max-width: 620px;
      background: #ffffff;
      border-radius: 28px;
      padding: 50px 40px;
      box-sizing: border-box;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      text-align: center;
    }

    .success-icon {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      background: #12c59c;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      font-weight: 700;
      margin: 0 auto 24px;
    }

    .success-card h1 {
      margin: 0 0 14px;
      font-size: 40px;
      line-height: 1.1;
      color: #052a67;
    }

    .success-card p {
      margin: 0 0 14px;
      font-size: 17px;
      color: #5f6f8e;
      line-height: 1.6;
    }

    .status-box {
      margin-top: 28px;
      background: #f7f9fc;
      border: 1px solid #d8e0ec;
      border-radius: 18px;
      padding: 20px;
      text-align: left;
    }

    .status-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 10px 0;
      border-bottom: 1px solid #e5ebf3;
    }

    .status-row:last-child {
      border-bottom: none;
    }

    .status-label {
      color: #5f6f8e;
      font-weight: 600;
    }

    .status-value {
      color: #052a67;
      font-weight: 700;
      text-align: right;
    }

    .success-btn {
      display: inline-block;
      margin-top: 30px;
      background: #12c59c;
      color: #052a67;
      font-size: 20px;
      font-weight: 800;
      text-decoration: none;
      padding: 18px 34px;
      border-radius: 14px;
    }

    .error-text {
      color: #b42318;
      font-weight: 600;
      margin-top: 18px;
    }/* keep input visible but blurred */
.premium-lock-wrap.is-locked input {
  filter: blur(3px);
  pointer-events: none;
}

/* smaller overlay for inputs */
.premium-lock-overlay.small-lock {
  background: rgba(10, 31, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-lock-mini {
  background: rgba(255,255,255,0.95);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #0A1F44;
}.dashboard-map-wrap {
  margin-top: 4px;
}

.dashboard-map-wrap .results-map {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3f8, #dfe7f1);
  border: 1px solid #e6edf5;
}

/* locked premium card behavior */
.premium-lock-wrap {
  position: relative;
  overflow: hidden;
}

.premium-lock-wrap.is-locked > *:not(.premium-lock-overlay) {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

.premium-lock-box h3 {
  font-size: 22px;
  color: #0A1F44;
  margin-bottom: 8px;
}

.premium-lock-box p {
  font-size: 14px;
  color: #6E7C91;
  margin-bottom: 16px;
  line-height: 1.6;
}

.premium-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #00C896;
  color: #0A1F44;
  font-weight: 800;
  text-decoration: none;
}.dashboard-map-wrap .results-map {
  background:
    linear-gradient(rgba(10,31,68,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,68,0.04) 1px, transparent 1px),
    linear-gradient(135deg, #eef3f8, #dfe7f1);
  background-size: 36px 36px, 36px 36px, cover;
}.dashboard-map-wrap .results-map.fake-map-bg {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e6edf5;
  background-image: url('../imgs/fake-map.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}#resultView {
  scroll-margin-top: 120px; /* adjust this */
}.offer-popover {
  position: fixed;
  z-index: 9999;
}

.offer-popover-box {
  width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  border: 1px solid #e6edf5;
}

.offer-popover-box h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0A1F44;
}

.offer-popover-box p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #6E7C91;
}

.offer-popover-box input {
  width: 100%;
  height: 46px;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 0 12px;
  box-sizing: border-box;
  margin-bottom: 12px;
}

.offer-popover-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.offer-popover-actions button {
  min-height: 40px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

#saveOfferBtn {
  background: #00C896;
  color: #0A1F44;
}

#markGrabbedNoOfferBtn,
#closeOfferBtn {
  background: #f3f6fa;
  color: #0A1F44;
}.profile-success-message,
.profile-error-message {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.profile-success-message {
  background: #e8fff6;
  color: #0f8f67;
  border: 1px solid #b8f1dd;
}

.profile-error-message {
  background: #fff1f1;
  color: #c63d3d;
  border: 1px solid #f2c3c3;
}

.truck-profile-form {
  margin-top: 28px;
}

.truck-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.truck-profile-group {
  display: flex;
  flex-direction: column;
}

.truck-profile-group label {
  font-size: 14px;
  font-weight: 700;
  color: #233b63;
  margin-bottom: 8px;
}

.truck-profile-group input,
.truck-profile-group select {
  width: 100%;
  height: 48px;
  border: 1px solid #d8e0ec;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  color: #233b63;
  background: #ffffff;
  box-sizing: border-box;
}

.truck-profile-save-btn {
  margin-top: 22px;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 14px;
  background: #12c59c;
  color: #052a67;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 768px) {
  .truck-profile-grid {
    grid-template-columns: 1fr;
  }
}