:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --green: #08785f;
  --red: #d92d20;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #e9eef3;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.home-seo-links {
  width: min(100% - 28px, 980px);
  margin: 18px auto 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.home-seo-links span,
.service-hero span,
.service-grid span,
.service-section span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-seo-links h2 {
  margin: 5px 0 0;
  font-size: 22px;
}

.home-seo-links p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.home-seo-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-seo-links a,
.service-related a {
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--soft);
  color: #344054;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.service-body {
  padding-bottom: 82px;
  background:
    linear-gradient(180deg, rgba(8, 120, 95, 0.08), transparent 360px),
    #f3f6f8;
}

.service-page {
  width: min(100% - 28px, 1080px);
  margin: 0 auto;
  padding: 16px 0 34px;
}

.service-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  background: rgba(243, 246, 248, 0.94);
  backdrop-filter: blur(14px);
}

.service-nav nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-nav nav a {
  padding: 9px 10px;
  border-radius: 999px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.service-brand,
.service-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
}

.service-call {
  background: #eefaf6;
  color: var(--green);
}

.service-hero,
.service-section,
.service-faq,
.service-related {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.service-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 246, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(8, 120, 95, 0.22), transparent 28%);
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
}

.service-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 30px solid rgba(8, 120, 95, 0.07);
  border-radius: 50%;
}

.service-hero-copy,
.service-quote-card {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(31px, 7vw, 58px);
  line-height: 0.96;
}

.service-hero p {
  max-width: 720px;
  margin: 13px 0 0;
  color: #344054;
  font-size: 17px;
  line-height: 1.5;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.primary-link {
  background: var(--green);
  color: #fff;
}

.secondary-link {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #344054;
  font-size: 12px;
  font-weight: 900;
}

.service-quote-card {
  align-self: stretch;
  padding: 16px;
  border: 1px solid rgba(8, 120, 95, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.service-quote-card > span,
.service-proof span,
.service-final-cta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.service-quote-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.08;
}

.service-quote-card p {
  color: var(--muted);
  line-height: 1.5;
}

.service-quote-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 11px;
  border-radius: 12px;
  background: var(--soft);
}

.service-quote-card small {
  color: var(--muted);
  font-weight: 850;
}

.service-quote-card b {
  text-align: right;
}

.service-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.service-proof article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.service-proof strong {
  display: block;
  font-size: 22px;
}

.service-alert {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid rgba(8, 120, 95, 0.18);
  border-radius: 18px;
  background: #eefaf6;
}

.service-alert strong {
  display: block;
  font-size: 17px;
}

.service-alert p {
  margin: 5px 0 0;
  color: #276354;
  line-height: 1.45;
}

.service-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.service-grid article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}

.service-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.service-grid p,
.service-section p,
.service-faq p {
  color: var(--muted);
  line-height: 1.55;
}

.service-section,
.service-faq,
.service-related {
  margin-top: 12px;
  padding: 18px;
}

.service-section h2,
.service-faq h2,
.service-related h2,
.service-local h2 {
  margin: 5px 0 0;
  font-size: 24px;
}

.service-steps {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-steps li {
  position: relative;
  padding: 13px;
  border-radius: 12px;
  background: var(--soft);
  color: #344054;
  line-height: 1.45;
}

.service-steps strong {
  color: var(--ink);
}

.service-faq details {
  margin-top: 10px;
  padding: 13px;
  border-radius: 12px;
  background: var(--soft);
}

.service-faq summary {
  cursor: pointer;
  font-weight: 950;
}

.service-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-local {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(8, 120, 95, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(238, 250, 246, 0.9), rgba(255, 255, 255, 0.96)),
    #fff;
}

.service-local-head span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.service-local-head p {
  margin: 9px 0 0;
  color: #344054;
  line-height: 1.55;
}

.local-columns {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.local-columns article {
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.local-columns strong {
  display: block;
  font-size: 17px;
}

.local-columns ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.local-columns li {
  position: relative;
  padding-left: 20px;
  color: #344054;
  line-height: 1.42;
}

.local-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.service-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  padding: 18px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}

.service-final-cta strong {
  display: block;
  margin-top: 4px;
  font-size: 21px;
}

.service-final-cta .primary-link {
  flex: 0 0 auto;
  background: #fff;
  color: var(--ink);
}

.mobile-action-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.16);
  backdrop-filter: blur(14px);
}

.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  border-radius: 12px;
  background: var(--soft);
  color: #344054;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.mobile-action-bar a:nth-child(2) {
  background: #eefaf6;
  color: var(--green);
}

@media (max-width: 520px) {
  .service-page {
    width: min(100% - 20px, 430px);
  }

  .service-nav {
    gap: 8px;
  }

  .service-nav nav a:not(.service-call) {
    display: none;
  }

  .service-call {
    padding: 8px 10px;
    font-size: 12px;
  }

  .service-brand {
    min-width: 0;
  }

  .service-brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .service-hero {
    padding: 20px;
  }

  .service-actions a,
  .service-final-cta a {
    width: 100%;
    justify-content: center;
  }

  .service-final-cta {
    display: grid;
  }
}

.service-page svg,
.home-seo-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.service-alert > svg,
.service-grid article > svg {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 12px;
  background: #eefaf6;
  color: var(--green);
}

.map-stage {
  position: relative;
  height: 46vh;
  min-height: 330px;
  background:
    radial-gradient(circle at 28% 30%, rgba(8, 120, 95, 0.24), transparent 18%),
    radial-gradient(circle at 74% 58%, rgba(217, 45, 32, 0.14), transparent 21%),
    linear-gradient(135deg, #dcece7, #eff6f4);
}

.real-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.static-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 31%, rgba(8, 120, 95, 0.2), transparent 20%),
    radial-gradient(circle at 68% 56%, rgba(37, 99, 235, 0.12), transparent 20%),
    linear-gradient(90deg, rgba(8, 120, 95, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 120, 95, 0.1) 1px, transparent 1px),
    #eaf5f2;
  background-size: auto, auto, 40px 40px, 40px 40px, auto;
}

.static-boundary {
  position: absolute;
  left: 9%;
  top: 15%;
  width: 82%;
  height: 64%;
  border: 2px dashed rgba(8, 120, 95, 0.55);
  border-radius: 42% 48% 40% 50%;
  background: rgba(8, 120, 95, 0.05);
}

.static-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.static-road.one {
  left: -12%;
  top: 48%;
  width: 124%;
  height: 18px;
  transform: rotate(-12deg);
}

.static-road.two {
  left: 44%;
  top: -10%;
  width: 16px;
  height: 120%;
  transform: rotate(22deg);
}

.static-line {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.static-line polyline {
  fill: none;
  stroke: var(--ink);
  stroke-width: 4;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
}

.static-label {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -50%);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #344054;
  font-size: 11px;
  font-weight: 900;
}

.static-pin {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.28);
  transform: translate(-50%, -50%);
  touch-action: none;
}

.leaflet-container {
  z-index: 1;
}

.map-fallback {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 92px;
  z-index: 8;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #344054;
  font-size: 14px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.14);
}

.zoom-controls {
  position: absolute;
  right: 14px;
  top: 88px;
  z-index: 14;
  display: grid;
  gap: 8px;
}

.zoom-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
}

.map-top {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(14px);
}

.map-top span,
.sheet-header span,
.result-card span,
.place-button small,
.picker-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.map-top strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
}

.map-top a,
#closePicker {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-top svg {
  fill: currentColor;
  stroke: none;
}

.sheet {
  position: relative;
  z-index: 30;
  min-height: 54vh;
  margin-top: -28px;
  padding: 10px 14px 18px;
  border-radius: 22px 22px 0 0;
  background: #fff;
  box-shadow: 0 -18px 44px rgba(16, 24, 40, 0.16);
}

.grabber {
  width: 44px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #d0d5dd;
}

h1,
p {
  margin: 0;
}

.sheet-header {
  margin-bottom: 12px;
}

.sheet-header h1 {
  margin-top: 2px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

.place-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  margin-top: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
}

.place-button strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.place-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
}

.from-mark {
  background: var(--green);
}

.to-mark {
  background: var(--red);
}

.quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 9px;
}

.quick-row button {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: #eefaf6;
  color: #075846;
  font-size: 14px;
  font-weight: 900;
}

.result-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #075846;
  color: #fff;
}

.result-card.empty {
  background: var(--ink);
}

.result-card span {
  color: rgba(255, 255, 255, 0.68);
}

.result-card strong {
  display: block;
  margin-top: 4px;
  font-size: 34px;
  line-height: 1;
}

.result-card p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.meta-button {
  margin-top: 11px;
}

.time-mark {
  background: #2563eb;
  font-size: 18px;
}

.cargo-mark {
  background: #7c3aed;
}

.simple-select {
  display: grid;
  gap: 6px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.meta-select {
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.meta-select > span:last-child {
  display: grid;
  gap: 6px;
}

.meta-select small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.meta-select select {
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--ink);
  font-weight: 850;
}

select,
input {
  width: 100%;
  height: 48px;
  border: 1px solid #cfd6df;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  font-size: 16px;
  outline: none;
}

select:focus,
input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 120, 95, 0.14);
}

.primary-button {
  width: 100%;
  height: 56px;
  margin-top: 12px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(8, 120, 95, 0.24);
}

.primary-button:disabled {
  background: #98a2b3;
  box-shadow: none;
}

.picker {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  align-items: end;
  background: rgba(16, 24, 40, 0.42);
}

.picker[hidden] {
  display: none;
}

.picker-panel {
  position: relative;
  z-index: 3001;
  width: min(100%, 430px);
  max-height: 82vh;
  margin: 0 auto;
  padding: 14px;
  overflow: auto;
  border-radius: 22px 22px 0 0;
  background: #fff;
}

.picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.picker-head strong {
  display: block;
  margin-top: 2px;
  font-size: 24px;
}

.region-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.picker-group {
  margin-top: 12px;
}

.picker-group-title {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.region-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}

.region-option em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 750;
}

.region-option span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
}

.time-choice-list {
  display: grid;
  gap: 8px;
}

.time-choice-list button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  padding: 0 12px;
}

.time-choice-list button.active {
  border-color: rgba(8, 120, 95, 0.35);
  background: #eefaf6;
  color: #075846;
}

.date-time-field {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.modal-action {
  position: static;
  margin-top: 10px;
}

.pin-html {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.28);
}

.bursa-boundary {
  stroke-dasharray: 10 8;
}

.route-pulse {
  stroke-dasharray: 9 9;
}

.admin-app {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 14px;
  background: #f3f6f8;
}

.dashboard-app {
  width: min(100%, 1120px);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0;
  background: rgba(243, 246, 248, 0.94);
  backdrop-filter: blur(14px);
}

.admin-header span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-header a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.admin-links {
  display: flex;
  gap: 10px;
}

.lead-hero,
.lead-controls,
.lead-status-grid article,
.lead-note,
.lead-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.lead-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--ink);
  color: #fff;
}

.lead-hero span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
}

.lead-hero strong {
  display: block;
  margin-top: 5px;
  font-size: 42px;
  line-height: 1;
}

.lead-hero p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.lead-hero button,
.lead-controls button {
  border: 0;
  border-radius: 12px;
  background: #eefaf6;
  color: #075846;
  font-weight: 950;
}

.lead-hero button {
  width: 58px;
  height: 42px;
}

.lead-controls {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
}

.lead-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.lead-controls button {
  height: 46px;
}

.lead-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.lead-status-grid article {
  padding: 12px;
}

.lead-status-grid span,
.lead-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.lead-status-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.lead-note {
  margin-top: 10px;
  padding: 12px;
  border-left: 5px solid var(--green);
}

.lead-note p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.lead-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.lead-card {
  padding: 12px;
}

.lead-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.lead-head strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}

.lead-head p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.lead-head em {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: #344054;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.lead-head em.ok {
  background: #eefaf6;
  color: #075846;
}

.lead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.lead-meta a,
.lead-meta span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.dashboard-hero,
.stats-grid article,
.filter-panel,
.order-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.dashboard-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--ink);
  color: #fff;
}

.dashboard-hero span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
}

.dashboard-hero strong {
  display: block;
  margin-top: 5px;
  font-size: 38px;
  line-height: 1;
}

.dashboard-hero p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.dashboard-hero em {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.stats-grid article {
  padding: 12px;
}

.date-range-panel {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.date-range-panel > div:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.date-range-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.date-range-panel input {
  height: 42px;
  border-radius: 10px;
}

.range-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.range-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #eefaf6;
  color: #075846;
  font-size: 13px;
  font-weight: 950;
}

.stats-grid span,
.order-card span,
.order-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.stats-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
}

.filter-chip {
  flex: 0 0 auto;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: #344054;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 950;
}

.filter-chip.active {
  background: #eefaf6;
  color: #075846;
}

.timeline-panel {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.section-label span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.section-label strong {
  display: block;
  margin-top: 3px;
  font-size: 16px;
}

.timeline-list {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: var(--soft);
}

.timeline-row time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.timeline-row time strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 17px;
}

.timeline-row span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.timeline-row strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.timeline-row p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.orders-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.day-group h2 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
}

.order-stack {
  display: grid;
  gap: 10px;
}

.order-card {
  padding: 12px;
  border-left: 5px solid #98a2b3;
}

.order-card.new {
  border-left-color: #2563eb;
}

.order-card.planned {
  border-left-color: #f5a400;
}

.order-card.active {
  border-left-color: var(--green);
}

.order-card.done {
  border-left-color: #12b76a;
}

.order-card.delivered {
  border-left-color: #12b76a;
}

.order-card.assigned {
  border-left-color: #2563eb;
}

.order-card.picked {
  border-left-color: #7c3aed;
}

.order-card.onroad {
  border-left-color: var(--green);
}

.order-card.cancelled {
  border-left-color: #d92d20;
  opacity: 0.72;
}

.order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.order-card-head strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.order-card-head p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.order-card-head em,
.status-select {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: #344054;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.status-select {
  width: auto;
  height: 34px;
  border: 1px solid var(--line);
  padding: 0 8px;
  max-width: 132px;
}

.order-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.order-metrics div {
  min-width: 0;
  padding: 8px;
  border-radius: 10px;
  background: var(--soft);
}

.order-metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.admin-order-card,
.admin-profit-card,
.admin-route-list,
.admin-grid article,
.settings-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.admin-order-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}

.admin-order-card span,
.admin-order-card p,
.admin-route-list small,
.admin-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-order-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.admin-order-card p {
  margin-top: 5px;
}

.admin-order-card em {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  background: #eefaf6;
  color: #075846;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.admin-profit-card {
  padding: 16px;
  margin-top: 10px;
  background: var(--ink);
  color: #fff;
}

.admin-profit-card span {
  color: rgba(255, 255, 255, 0.7);
}

.admin-profit-card strong {
  display: block;
  margin-top: 5px;
  font-size: 40px;
  line-height: 1;
}

.admin-profit-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.admin-profit-card.warning {
  background: #7a4f00;
}

.admin-profit-card.bad {
  background: #7a271a;
}

.admin-route-list {
  display: grid;
  gap: 1px;
  margin-top: 10px;
  overflow: hidden;
}

.admin-route-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
}

.admin-route-list article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.admin-route-list article:nth-child(2) > span {
  background: var(--red);
}

.admin-route-list strong {
  display: block;
  margin-top: 3px;
  font-size: 16px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.admin-grid article {
  min-height: 82px;
  padding: 12px;
  background: #fff;
}

.admin-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.settings-panel {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
}

.settings-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

@media (min-width: 760px) {
  body {
    padding: 24px 0;
  }

  .app,
  .admin-app {
    min-height: calc(100vh - 48px);
    border-radius: 24px;
  }

  .dashboard-app {
    padding: 22px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .orders-list {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .order-metrics {
    grid-template-columns: repeat(6, 1fr);
  }

  .timeline-list {
    grid-template-columns: 1fr 1fr;
  }

  .lead-controls {
    grid-template-columns: 1.05fr 0.9fr 1.2fr auto;
    align-items: end;
  }

  .lead-controls button {
    width: 148px;
  }

  .lead-status-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .lead-list {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .service-page {
    padding-top: 24px;
  }

  .service-hero {
    grid-template-columns: minmax(0, 1.35fr) 340px;
    align-items: stretch;
    padding: 34px;
  }

  .service-proof {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-section,
  .service-faq,
  .service-related,
  .service-local {
    padding: 24px;
  }

  .local-columns {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-bar {
    display: none;
  }
}
