:root {
  --ink: #2b2525;
  --muted: #756866;
  --line: #eadfdd;
  --paper: #ffffff;
  --mist: #fff7f4;
  --green: #d84a3a;
  --green-dark: #a92f2a;
  --yellow: #f4b45f;
  --coral: #c9473f;
  --blue: #7f3f34;
  --rose: #f8ded8;
  --shadow: 0 18px 50px rgba(98, 42, 36, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 251, 249, 0.94);
  border-bottom: 1px solid rgba(234, 223, 221, 0.9);
  backdrop-filter: blur(14px);
}

.promo-band {
  background: #2b2525;
  color: #fff;
  font-size: 13px;
}

.promo-band__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.promo-band strong {
  padding: 3px 8px;
  border-radius: 999px;
  color: #2b2525;
  background: #fff;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: 154px;
  height: auto;
}

.header-city {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.header-city label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.header-city select {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.footer .brand {
  width: max-content;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: #fff;
}

.footer .brand__logo {
  width: 190px;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 2px;
  min-width: 0;
  color: #4b403f;
  font-size: 13px;
  font-weight: 650;
}

.nav__links a {
  flex: 0 1 auto;
  padding: 8px 8px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--green-dark);
  background: #fff0ec;
}

.nav__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(216, 74, 58, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(98, 42, 36, 0.07);
}

.nav__actions .btn {
  min-height: 38px;
  padding: 9px 11px;
  font-size: 13px;
}

.btn--sales {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8f6;
  color: var(--ink);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #d84a3a, #b63331);
  box-shadow: 0 12px 28px rgba(184, 54, 47, 0.22);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #c43d35, #962a28);
}

.btn--secondary {
  color: var(--green-dark);
  background: #fff7f4;
  border-color: #f1cbc4;
}

.btn--secondary:hover {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 10px 24px rgba(98, 42, 36, 0.1);
}

.btn--dark {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(216, 74, 58, 0.14), transparent 35%),
    linear-gradient(180deg, #fff 0%, #fff7f4 100%);
}

.hero__inner {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 76px 0 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 740px;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: 42px;
}

h2 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 740;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 720;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 690px;
}

.quick-stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.quick-stat strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.quick-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.delivery-visual {
  position: relative;
  min-height: 510px;
}

.map-board {
  position: absolute;
  inset: 36px 0 22px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(184, 54, 47, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(184, 54, 47, 0.07) 1px, transparent 1px),
    #fff4f0;
  background-size: 42px 42px;
  box-shadow: var(--shadow);
}

.map-board::before,
.map-board::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.map-board::before {
  width: 360px;
  height: 360px;
  right: -96px;
  top: -86px;
  background: rgba(255, 198, 64, 0.46);
}

.map-board::after {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -70px;
  background: rgba(24, 168, 115, 0.16);
}

.route-line {
  position: absolute;
  left: 58px;
  right: 64px;
  top: 238px;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--green), var(--green) 28px, transparent 28px, transparent 44px);
  transform: rotate(-11deg);
  transform-origin: left center;
}

.pin {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 7px solid #fff;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 10px 22px rgba(22, 32, 51, 0.18);
}

.pin--a {
  left: 66px;
  top: 270px;
}

.pin--b {
  right: 86px;
  top: 160px;
  background: var(--green);
}

.vehicle {
  position: absolute;
  z-index: 4;
  left: 44%;
  top: 218px;
  width: 92px;
  height: 56px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 14px 26px rgba(22, 32, 51, 0.26);
}

.vehicle::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  width: 34px;
  height: 18px;
  border-radius: 4px;
  background: var(--yellow);
}

.vehicle::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -8px;
  height: 16px;
  background: radial-gradient(circle at 12px 8px, #101828 0 7px, transparent 8px), radial-gradient(circle at calc(100% - 12px) 8px, #101828 0 7px, transparent 8px);
}

.status-card,
.quote-card,
.phone-card {
  position: absolute;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.status-card {
  top: 0;
  right: 14px;
  width: 260px;
  padding: 18px;
}

.status-card small,
.quote-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.status-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 20px;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--green);
}

.quote-card {
  left: 0;
  bottom: 0;
  width: 290px;
  padding: 18px;
}

.quote-card strong {
  display: block;
  font-size: 30px;
}

.phone-card {
  right: 40px;
  bottom: 24px;
  width: 170px;
  padding: 12px;
}

.phone-card__screen {
  min-height: 228px;
  border-radius: 8px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(160deg, #2b2525, #61332d);
}

.phone-card__bar {
  width: 54px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.section {
  padding: 78px 0;
}

.section--soft {
  background: var(--mist);
}

.section--ink {
  color: #fff;
  background: var(--ink);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 600px;
  color: var(--muted);
}

.section--ink .section-head p,
.section--ink .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
}

.card--lift {
  box-shadow: 0 12px 32px rgba(22, 32, 51, 0.08);
}

.card p,
.muted {
  color: var(--muted);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff0ec;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.icon--green {
  color: var(--green-dark);
  background: #ffe8e3;
}

.icon--yellow {
  color: #8a5a00;
  background: #fff1da;
}

.icon--coral {
  color: #a43d29;
  background: #ffe8e1;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.service-card__tag {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #ffe8e3;
  font-size: 13px;
  font-weight: 700;
}

.service-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: #475569;
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 24px;
  top: 18px;
  color: var(--green);
  font-weight: 750;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.dashboard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.dashboard__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  padding: 18px;
}

.dashboard__list {
  display: grid;
  gap: 12px;
}

.shipment-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.shipment-row strong {
  display: block;
}

.shipment-row span {
  color: var(--muted);
  font-size: 14px;
}

.live-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5efe9;
}

.live-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.98);
}

.live-map .pin {
  position: absolute;
  z-index: 2;
}

.live-map .pin:nth-child(1) {
  left: 21%;
  top: 23%;
}

.live-map .pin:nth-child(2) {
  left: 66%;
  top: 38%;
  background: var(--green);
}

.live-map .pin:nth-child(3) {
  left: 44%;
  top: 66%;
  background: var(--blue);
}

.app-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card__media {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: #fff0ec;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(43, 37, 37, 0.2));
}

.blog-card__body {
  padding: 22px;
}

.meta {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(43, 37, 37, 0.95), rgba(169, 47, 42, 0.9)),
    radial-gradient(circle at 82% 20%, rgba(244, 180, 95, 0.42), transparent 24%);
}

.page-hero {
  padding: 64px 0;
  background:
    linear-gradient(115deg, rgba(216, 74, 58, 0.13), transparent 38%),
    #fff7f4;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.order-page {
  min-height: calc(100vh - 110px);
  padding: 34px 0 160px;
  background: linear-gradient(180deg, #fff 0%, #fff7f4 100%);
}

.order-hero {
  margin-bottom: 20px;
}

.order-hero h1 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: 42px;
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
}

.order-shell--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-panel,
.order-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(98, 42, 36, 0.08);
}

.order-panel {
  padding: 16px;
}

.order-panel__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.order-panel__head h2 {
  margin-bottom: 4px;
  font-size: 17px;
}

.order-panel__head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-badge {
  flex: 0 0 auto;
  width: 30px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 760;
  font-size: 13px;
}

.route-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.city-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8f6;
}

.city-tabs label,
.choice-card {
  cursor: pointer;
}

.city-tabs input,
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.city-tabs span {
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #5d504e;
  font-weight: 700;
}

.city-tabs input:checked + span {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(184, 54, 47, 0.18);
}

.route-fields {
  position: relative;
  display: grid;
  gap: 14px;
}

.order-map-preview {
  position: relative;
  min-height: 180px;
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(98, 42, 36, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(98, 42, 36, 0.08) 1px, transparent 1px),
    #fff5f1;
  background-size: 34px 34px;
}

.order-map-preview .pin--a {
  left: 18%;
  top: 58%;
}

.order-map-preview .pin--b {
  right: 22%;
  top: 28%;
  background: var(--green);
}

.order-map-preview .route-line {
  left: 22%;
  right: 24%;
  top: 50%;
  height: 5px;
}

.route-fields::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 42px;
  bottom: 42px;
  width: 2px;
  background: #f0c8c0;
}

.field--pin {
  position: relative;
  padding-left: 34px;
}

.field--pin::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 36px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 1px #f0c8c0;
}

.field--dropoff::before {
  background: var(--ink);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.choice-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 12px;
}

.mini-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8f6;
}

.segmented--two {
  grid-template-columns: repeat(2, 1fr);
}

.segmented label {
  cursor: pointer;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 9px;
  color: #5d504e;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.segmented input:checked + span {
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(184, 54, 47, 0.16);
}

.icon-options {
  display: grid;
  gap: 10px;
}

.icon-options--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-options--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icon-options--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-options label {
  cursor: pointer;
}

.icon-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  appearance: none;
  opacity: 0;
  pointer-events: none;
}

.icon-options span {
  min-height: 86px;
  display: grid;
  grid-template-rows: auto auto auto;
  place-items: center;
  gap: 4px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.icon-options input:checked + span {
  border-color: var(--green);
  background: #fff4f0;
  box-shadow: 0 8px 20px rgba(184, 54, 47, 0.1);
}

.icon-options input:checked + span .option-icon {
  color: #fff;
  background: var(--green);
}

.icon-options strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.icon-options small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.option-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff0ec;
  font-size: 15px;
  font-style: normal;
  line-height: 1;
}

.option-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

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

.choice-card span {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.choice-card--vehicle span {
  min-height: 92px;
}

.choice-card strong {
  display: block;
  font-size: 16px;
}

.choice-card small {
  color: var(--muted);
  line-height: 1.4;
}

.choice-card input:checked + span {
  border-color: #d84a3a;
  background: #fff7f4;
  box-shadow: 0 10px 24px rgba(184, 54, 47, 0.12);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.content-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #efe1de;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(98, 42, 36, 0.06);
}

.weight-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.content-note {
  margin-bottom: 0;
}

.content-note label {
  display: none;
}

.content-tags {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.content-meta-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) minmax(170px, 0.8fr);
  gap: 12px;
  max-width: 520px;
}

.content-meta-row .field,
.assurance-row .field {
  margin-bottom: 0;
}

.content-check {
  margin-top: 2px;
}

.content-assurance {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #efe1de;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(98, 42, 36, 0.06);
}

.content-assurance h3 {
  margin: 0;
  font-size: 18px;
}

.content-assurance p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
}

.assurance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.assurance-row .field {
  width: min(260px, 100%);
}

.assurance-row > span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.maps-placeholder {
  position: relative;
  min-height: 230px;
  margin-top: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5efe9;
}

.maps-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.98);
}

.maps-placeholder .pin--a {
  left: 16%;
  top: 58%;
}

.maps-placeholder .pin--b {
  right: 18%;
  top: 28%;
  background: var(--green);
}

.maps-placeholder .route-line {
  left: 20%;
  right: 20%;
  top: 50%;
  z-index: 4;
  height: 4px;
  opacity: 0.84;
  transform: none;
}

.maps-placeholder strong {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 5;
  transform: translateX(-50%);
  max-width: min(420px, calc(100% - 40px));
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(98, 42, 36, 0.12);
  font-size: 12px;
  text-align: center;
}

.maps-placeholder.has-route strong {
  color: var(--ink);
}

.invoice-toggle {
  max-width: 360px;
  margin-bottom: 14px;
}

.invoice-fields .invoice-corporate {
  display: none;
}

.order-form.is-corporate-invoice .invoice-fields .invoice-corporate,
.order-form:has(input[name="invoiceType"][value="Kurumsal"]:checked) .invoice-fields .invoice-corporate {
  display: grid;
}

.order-form.is-corporate-invoice .invoice-fields .invoice-personal,
.order-form:has(input[name="invoiceType"][value="Kurumsal"]:checked) .invoice-fields .invoice-personal {
  display: none;
}

.coupon-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed #f0c8c0;
  border-radius: var(--radius);
  background: #fff8f6;
}

.coupon-box .field {
  margin-bottom: 0;
}

.package-chip,
.payment-card {
  cursor: pointer;
}

.package-chip input,
.payment-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-chip span,
.payment-card span {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #4b403f;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.package-chip--weight span {
  min-height: 46px;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
}

.package-chip--tag span {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #5d504e;
  background: #fff;
  font-size: 13px;
}

.package-chip input:checked + span,
.payment-card input:checked + span {
  border-color: var(--green);
  color: var(--green-dark);
  background: #fff0ec;
}

.package-chip--tag input:checked + span {
  border-color: var(--green);
  color: var(--green-dark);
  background: #fff0ec;
  box-shadow: 0 8px 18px rgba(184, 54, 47, 0.08);
}

.payment-card span {
  border-radius: 12px;
  min-height: 48px;
}

.toggle-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.toggle-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.add-stop {
  width: max-content;
  margin: 2px 0 0 34px;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-weight: 700;
  cursor: pointer;
}

.order-submit {
  width: 100%;
  min-height: 52px;
}

.order-summary {
  position: sticky;
  top: 92px;
  overflow: hidden;
}

.summary-visual {
  position: relative;
  min-height: 116px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(135deg, #fff0ec, #fff8f6);
}

.summary-road {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  height: 5px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #d84a3a, #d84a3a 22px, transparent 22px, transparent 34px);
}

.summary-bike {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 78px;
  height: 40px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: #2b2525;
  box-shadow: 0 12px 24px rgba(43, 37, 37, 0.18);
}

.summary-bike::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 30px;
  height: 14px;
  border-radius: 4px;
  background: #f4b45f;
}

.summary-bike::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -7px;
  height: 14px;
  background: radial-gradient(circle at 10px 7px, #2b2525 0 6px, transparent 7px), radial-gradient(circle at calc(100% - 10px) 7px, #2b2525 0 6px, transparent 7px);
}

.summary-box {
  position: absolute;
  right: 54px;
  top: 28px;
  width: 44px;
  height: 36px;
  border-radius: 6px;
  background: #d84a3a;
  box-shadow: 0 10px 20px rgba(184, 54, 47, 0.16);
}

.order-summary__head {
  padding: 22px 22px 16px;
  color: #fff;
  background: linear-gradient(135deg, #d84a3a, #9f302b);
}

.order-summary__head .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.order-summary__head h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.order-summary__body {
  padding: 22px;
}

.order-empty {
  margin: 22px;
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px dashed #efc8c0;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff8f6;
  text-align: center;
  font-weight: 700;
}

.summary-ready {
  display: none;
}

.order-summary.has-route .order-empty {
  display: none;
}

.order-summary.has-route .summary-ready {
  display: block;
}

.summary-ready .order-map-preview {
  margin: 18px 22px 0;
}

.summary-ready .order-map-preview strong {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 8px 20px rgba(98, 42, 36, 0.12);
  font-size: 13px;
}

.order-summary dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.order-summary dt {
  color: var(--muted);
}

.order-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 12px;
  color: #fff;
  background: #2b2525;
}

.price-box span {
  color: rgba(255, 255, 255, 0.78);
}

.price-box strong {
  font-size: 28px;
}

.summary-totals {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.summary-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.summary-totals strong {
  color: var(--ink);
}

.summary-total {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 18px;
  font-weight: 800;
}

.summary-total strong {
  font-size: 26px;
  color: var(--green-dark);
}

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

.fixed-price-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 32px rgba(98, 42, 36, 0.12);
  backdrop-filter: blur(14px);
}

.fixed-price-bar__empty {
  color: var(--muted);
  font-weight: 700;
}

.fixed-price-bar__ready {
  display: none;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 10px;
  align-items: center;
}

.fixed-price-bar.has-route .fixed-price-bar__empty {
  display: none;
}

.fixed-price-bar.has-route .fixed-price-bar__ready {
  display: grid;
}

.fixed-price-bar__ready div,
.fixed-price-bar__total {
  display: grid;
  gap: 1px;
}

.fixed-price-bar span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.fixed-price-bar strong {
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fixed-price-bar__total {
  grid-template-columns: auto auto auto;
  gap: 10px;
  align-items: center;
}

.fixed-price-bar__total strong {
  color: var(--green-dark);
  font-size: 22px;
}

.fixed-price-bar__total .btn {
  min-height: 44px;
  padding: 10px 18px;
}

.order-login {
  width: 100%;
  margin-bottom: 18px;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(22, 32, 51, 0.08);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.field label {
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(216, 74, 58, 0.16);
  border-color: var(--green);
}

.result-box {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #f3c9c2;
  border-radius: var(--radius);
  background: #fff4f0;
}

.result-box.is-visible {
  display: block;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: #475569;
}

.timeline li::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border: 4px solid #f3d0ca;
  border-radius: 999px;
  background: var(--green);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
}

.faq-item__body {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-item__body {
  display: block;
}

.footer {
  padding: 56px 0 26px;
  color: #dbe5f2;
  background: #241f1f;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3 {
  color: #fff;
  font-size: 16px;
}

.footer p,
.footer a {
  color: #b8c3d4;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #96a3b7;
  font-size: 14px;
}

@media (max-width: 1240px) {
  .nav__links {
    position: fixed;
    inset: 92px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: grid;
  }

  .nav__actions .btn--secondary {
    display: none;
  }

  .nav__actions .btn--sales {
    display: none;
  }

  .header-city {
    margin-left: auto;
  }

  .hero__inner,
  .split,
  .form-shell,
  .order-shell {
    grid-template-columns: 1fr;
  }

  .route-compact,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .icon-options--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icon-options--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .icon-options--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fixed-price-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px;
  }

  .fixed-price-bar__ready {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .weight-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-summary {
    position: static;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 52px;
  }

  .delivery-visual {
    min-height: 470px;
  }

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

  .grid--3,
  .app-strip,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 70px;
  }

  .promo-band__inner {
    min-height: 32px;
    font-size: 12px;
  }

  .brand__logo {
    width: 132px;
  }

  .header-city {
    display: none;
  }

  .nav__links {
    top: 82px;
  }

  h1,
  .page-hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .lead {
    font-size: 17px;
  }

  .hero__quick,
  .grid--4,
  .grid--3,
  .grid--2,
  .app-strip,
  .dashboard__body,
  .field-grid,
  .option-grid,
  .package-grid,
  .footer__grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .order-page {
    padding: 32px 0 112px;
  }

  .order-hero h1 {
    font-size: 34px;
  }

  .order-panel {
    padding: 16px;
  }

  .order-summary {
    margin-bottom: 8px;
  }

  .mobile-order-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -14px 32px rgba(98, 42, 36, 0.14);
  }

  .mobile-order-bar span {
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-order-bar .btn {
    min-height: 42px;
    padding: 10px 14px;
  }

  .city-tabs {
    grid-template-columns: 1fr;
  }

  .weight-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-meta-row {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .content-assurance,
  .content-card {
    padding: 14px;
  }

  .icon-options--three,
  .icon-options--two,
  .icon-options--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coupon-box {
    grid-template-columns: 1fr;
  }

  .fixed-price-bar__ready {
    display: none !important;
  }

  .fixed-price-bar__total {
    grid-template-columns: auto 1fr;
  }

  .fixed-price-bar__total .btn {
    grid-column: 1 / -1;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .delivery-visual {
    min-height: 430px;
  }

  .status-card {
    width: 228px;
  }

  .quote-card {
    width: 244px;
  }

  .phone-card {
    display: none;
  }

  .map-board {
    left: 0;
  }

  .cta-band {
    padding: 24px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
