/* === HTM Dash - Express Services === */
:root {
  --orange: #ff6b35;
  --orange-dark: #e55a28;
  --orange-light: #ff9f71;
  --blue: #0a2540;
  --blue-light: #1a3a5a;
  --white: #ffffff;
  --bg: #f8f9fa;
  --bg-card: #ffffff;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --shadow: 0 4px 20px rgba(10,37,64,0.06);
  --shadow-lg: 0 12px 40px rgba(10,37,64,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-500);
  line-height: 1.7;
}

/* === Header - Pill nav === */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.hd-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { text-decoration: none; font-weight: 800; font-size: 1.3rem; color: var(--blue); letter-spacing: -0.5px; }
.logo span { color: var(--orange); }
.hd-pills { display: flex; gap: 4px; }
.hd-pills a {
  text-decoration: none; padding: 8px 18px;
  border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  color: var(--gray-500); transition: all 0.2s;
}
.hd-pills a:hover { color: var(--orange); background: rgba(255,107,53,0.06); }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 26px; border-radius: 100px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--gray-600); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }

/* === Hero - Split with speed lines === */
.hero {
  padding: 140px 32px 80px;
  display: flex; max-width: 1140px; margin: 0 auto; align-items: center; gap: 50px;
}
.hero-text { flex: 1; }
.hero-text .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,107,53,0.08); color: var(--orange);
  padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero-text h1 { font-size: 3.2rem; font-weight: 800; color: var(--blue); line-height: 1.1; margin-bottom: 14px; }
.hero-text h1 .hl { color: var(--orange); }
.hero-text p { font-size: 1rem; color: var(--gray-500); max-width: 450px; margin-bottom: 28px; }

.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.h-speed { width: 320px; height: 320px; position: relative; display: flex; align-items: center; justify-content: center; }
.h-speed .h-ring {
  position: absolute; inset: 0;
  border: 3px solid var(--gray-200); border-radius: 50%;
}
.h-speed .h-ring:nth-child(2) { inset: 30px; border-color: var(--orange); }
.h-speed .h-ring:nth-child(3) { inset: 60px; border-color: var(--blue); }
.h-speed .h-center { text-align: center; z-index: 1; }
.h-speed .h-center .big { font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }
.h-speed .h-center .small { font-size: 0.8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 2px; }
.h-speed .h-dash {
  position: absolute; width: 12px; height: 3px; background: var(--orange);
  border-radius: 2px; animation: dashMove 2s linear infinite;
}
.h-speed .h-dash:nth-child(5) { top: 40%; left: -8px; animation-delay: 0s; }
.h-speed .h-dash:nth-child(6) { top: 60%; right: -8px; animation-delay: 0.5s; }
.h-speed .h-dash:nth-child(7) { top: 50%; left: 30px; animation-delay: 1s; }
.h-speed .h-dash:nth-child(8) { top: 30%; right: 40px; animation-delay: 1.5s; }
@keyframes dashMove {
  0% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0.5); }
}

/* === Fleet Strip === */
.fleet-strip {
  padding: 20px 32px; background: var(--bg);
  border-bottom: 1px solid var(--gray-200);
}
.fleet-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.fleet-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-500); }
.fleet-item .f-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }

/* === Sections === */
section { padding: 80px 32px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-alt { background: var(--bg); }
.section-center { text-align: center; }

h2 {
  font-size: 2rem; font-weight: 800; color: var(--blue);
  line-height: 1.2; margin-bottom: 8px;
}
h2 .hl { color: var(--orange); }
.section-desc { color: var(--gray-400); font-size: 0.95rem; max-width: 520px; margin: 0 auto 40px; }

/* === Services - Top bar cards === */
.svc-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.svc-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 14px; overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.svc-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.svc-card .s-top {
  height: 4px; background: var(--orange); width: 100%;
  transition: height 0.2s;
}
.svc-card:hover .s-top { height: 6px; }
.svc-card .s-body { padding: 28px; }
.svc-card .s-icon { font-size: 1.8rem; margin-bottom: 10px; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.svc-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }
.svc-card .s-tag {
  display: inline-block; margin-top: 12px;
  background: rgba(255,107,53,0.06); color: var(--orange);
  padding: 4px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
}

/* === Process - Horizontal connected circles === */
.proc-h {
  display: flex; gap: 20px; justify-content: center;
  align-items: flex-start; max-width: 800px; margin: 0 auto;
}
.proc-h .p-step { flex: 1; text-align: center; position: relative; }
.proc-h .p-step:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; left: 60%; width: 80%;
  height: 2px; background: var(--gray-200);
}
.proc-h .p-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-weight: 700; font-size: 1rem;
  position: relative; z-index: 1;
}
.proc-h .p-step:last-child .p-circle { background: var(--orange); }
.proc-h h4 { font-size: 0.9rem; color: var(--blue); margin-bottom: 4px; }
.proc-h p { font-size: 0.8rem; color: var(--gray-400); line-height: 1.5; }

/* === Stats - Pill badges === */
.stat-pills {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 100px; padding: 14px 32px;
  max-width: 800px; margin: 0 auto;
}
.stat-pill { display: flex; align-items: center; gap: 6px; }
.stat-pill .sp-num { font-weight: 800; color: var(--orange); font-size: 1.1rem; }
.stat-pill .sp-lbl { font-size: 0.8rem; color: var(--gray-400); }
.stat-pill + .stat-pill { padding-left: 16px; border-left: 1px solid var(--gray-200); }

/* === About === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-text p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 14px; line-height: 1.8; }
.about-text .highlight {
  background: rgba(255,107,53,0.04);
  border-left: 4px solid var(--orange);
  padding: 16px 20px; border-radius: 0 12px 12px 0;
  color: var(--gray-600); font-size: 0.92rem; margin: 16px 0;
}
.about-info {
  background: var(--blue); color: var(--white);
  border-radius: 16px; padding: 28px;
}
.about-info h4 { color: var(--orange); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.ai-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
.ai-row:last-child { border: none; }
.ai-row .k { color: rgba(255,255,255,0.5); }
.ai-row .v { color: var(--white); font-weight: 600; }

/* === Values === */
.val-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.val-item { text-align: center; padding: 20px; border-radius: 14px; background: var(--white); border: 1px solid var(--gray-200); }
.val-item .v-icon { font-size: 1.6rem; margin-bottom: 8px; }
.val-item h4 { font-size: 0.85rem; color: var(--blue); margin-bottom: 4px; }
.val-item p { font-size: 0.8rem; color: var(--gray-400); line-height: 1.5; }

/* === Testimonials === */
.testi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testi-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 28px; }
.testi-card .t-quote { font-size: 1.8rem; color: var(--orange); line-height: 0.5; margin-bottom: 6px; }
.testi-card .t-text { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.testi-card .t-auth { font-weight: 700; color: var(--blue); font-size: 0.85rem; }
.testi-card .t-role { font-size: 0.78rem; color: var(--gray-400); }

/* === CTA === */
.cta-orange {
  background: var(--blue); color: var(--white); text-align: center;
}
.cta-orange h2 { color: var(--white); }
.cta-orange p { color: rgba(255,255,255,0.5); margin-bottom: 24px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-orange .btn { background: var(--orange); color: var(--white); }
.cta-orange .btn:hover { background: var(--orange-dark); }

/* === Footer === */
footer { padding: 50px 32px 24px; background: var(--blue); color: var(--white); }
.ft-inner { max-width: 1140px; margin: 0 auto; }
.ft-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 28px; }
.ft-col h4 { color: var(--white); font-size: 0.85rem; margin-bottom: 10px; }
.ft-col p { color: rgba(255,255,255,0.4); font-size: 0.82rem; line-height: 1.7; max-width: 300px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 7px; }
.ft-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; }
.ft-col ul li a:hover { color: var(--orange); }
.ft-bot { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.ft-bot a { color: rgba(255,255,255,0.4); text-decoration: none; }
.ft-bot a:hover { color: var(--orange); }

/* === Sub-pages === */
.pagehd {
  padding: 120px 32px 40px; text-align: center;
  background: var(--blue); color: var(--white);
}
.pagehd h1 { color: var(--white); font-size: 2.2rem; }
.pagehd p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 8px auto 0; }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.cf input, .cf textarea {
  width: 100%; padding: 14px 18px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: 12px;
  color: var(--gray-600); font-size: 0.92rem; margin-bottom: 14px; font-family: inherit;
  transition: border-color 0.2s;
}
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--orange); }
.cf textarea { min-height: 120px; resize: vertical; }
.ci-card { background: var(--blue); color: var(--white); border-radius: 16px; padding: 28px; }
.ci-card h4 { color: var(--orange); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.ci-item { display: flex; gap: 12px; margin-bottom: 14px; }
.ci-item .ci-ico { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-item .ci-l { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.ci-item .ci-v { color: var(--white); font-size: 0.85rem; }

.privacy { max-width: 780px; margin: 0 auto; padding: 40px 20px; }
.privacy h3 { color: var(--blue); font-size: 1.15rem; margin: 28px 0 10px; }
.privacy p { color: var(--gray-500); line-height: 1.8; margin-bottom: 10px; font-size: 0.9rem; }

@media (max-width: 900px) {
  .hd-pills { display: none; }
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-text p { margin: 0 auto 28px; }
  .hero-visual .h-speed { width: 220px; height: 220px; }
  .h-speed .h-ring:nth-child(2) { inset: 20px; }
  .h-speed .h-ring:nth-child(3) { inset: 40px; }
  .svc-2x2 { grid-template-columns: 1fr; }
  .proc-h { flex-direction: column; max-width: 400px; }
  .proc-h .p-step:not(:last-child)::after { top: unset; left: 20px; width: 2px; height: 40px; bottom: -30px; }
  .stat-pills { border-radius: 20px; padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .stat-pill + .stat-pill { border-left: none; padding-left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .testi-row { grid-template-columns: 1fr; }
  .val-row { grid-template-columns: repeat(2,1fr); }
  .cf-grid { grid-template-columns: 1fr; }
}
