/* ─── Order Page ─────────────────────────── */
.order-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
}
.order-hero-inner { max-width: 600px; margin: 0 auto; }
.order-hero-badge {
  display: inline-block;
  background: rgba(201,149,58,.15);
  border: 1px solid rgba(201,149,58,.3);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.order-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .8rem; }
.order-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; }

.order-section { padding: 60px 0 100px; }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Form */
.order-form-wrap {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-2);
  overflow: hidden;
}
.order-form-header {
  background: var(--navy);
  padding: 1.4rem 2rem;
}
.order-form-header h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .3rem; }
.order-form-header p  { color: rgba(255,255,255,.6); font-size: .88rem; }
.order-form { padding: 2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
label .optional {
  font-weight: 400;
  color: var(--gray-3);
  font-size: .8rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,58,.12);
}
input::placeholder, textarea::placeholder { color: var(--gray-3); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9488' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea { resize: vertical; min-height: 80px; }
.form-hint { display: block; font-size: .78rem; color: var(--gray-3); margin-top: .3rem; }

.input-prefix { display: flex; align-items: center; }
.input-prefix span {
  background: var(--gray-1);
  border: 1.5px solid var(--gray-2);
  border-right: none;
  padding: .75rem .85rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: .93rem;
}
.input-prefix input {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: none;
}
.input-prefix input:focus { border-color: var(--gold); }

.form-divider {
  border: none;
  border-top: 1px solid var(--gray-2);
  margin: 1.5rem 0;
}

/* Inline Order Summary */
.order-summary-inline {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 1.2rem;
  border: 1px solid var(--gray-2);
}
.osi-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--text-mid);
  padding: .3rem 0;
}
.osi-total {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  border-top: 1px solid var(--gray-2);
  margin-top: .4rem;
  padding-top: .7rem;
}
.osi-note { font-size: .75rem; color: var(--gray-3); margin-top: .5rem; }

/* Sidebar */
.order-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-2);
  overflow: hidden;
}
.sidebar-card-header {
  background: var(--navy-light);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-card-header h4 { color: var(--white); font-size: .9rem; }
.sidebar-card .card-checklist { padding: 0 1.2rem; }

.sidebar-timeline {
  padding: 1rem 1.2rem 1.2rem;
  border-top: 1px solid var(--gray-2);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 28px;
  bottom: -2px;
  width: 2px;
  background: var(--gray-2);
}
.ti-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.ti-last { background: var(--success); }
.timeline-item strong { font-size: .85rem; font-weight: 600; color: var(--navy); display: block; }
.timeline-item span  { font-size: .78rem; color: var(--text-light); }

.sidebar-trust {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-2);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.trust-icon { font-size: 1.2rem; flex-shrink: 0; }
.trust-row strong { font-size: .88rem; font-weight: 600; color: var(--navy); display: block; }
.trust-row span   { font-size: .78rem; color: var(--text-light); }

.sidebar-testimonial {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 1.4rem; }
}
