:root {
  --bg: #06162f;
  --bg-soft: #0b2450;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #123b7f;
  --text: #14345f;
  --muted: #516d8c;
  --soft-text: #6a84a1;
  --line: rgba(11, 66, 141, 0.08);
  --blue: #0b428d;
  --gold: #ff9800;
  --red: #ea3519;
  --yellow: #ffe500;
  --success: #4ade80;
  --shadow: 0 24px 80px rgba(1, 10, 28, 0.5);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  background:
    radial-gradient(circle at top left, rgba(11, 66, 141, 0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 152, 0, 0.18), transparent 22%),
    linear-gradient(180deg, #f6f8fc 0%, #eef3fa 100%);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-admin-page .floating-whatsapp {
  display: none !important;
}

body.is-tracking-page .header-meta {
  display: none;
}

body.is-tracking-page .topbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(5, 24, 52, 0.05);
}

body.is-tracking-page .topbar-inner {
  min-height: 62px;
  gap: 12px;
}

body.is-tracking-page .brand-logo {
  height: 42px;
  max-width: 178px;
}

body.is-tracking-page .nav,
body.is-tracking-page .menu-toggle {
  display: none !important;
}

body.is-tracking-page .header-cta {
  margin-left: auto;
  min-height: 40px;
  padding-inline: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 66, 141, 0.92), rgba(15, 92, 191, 0.92));
  box-shadow: 0 10px 24px rgba(11, 66, 141, 0.16);
}

body.is-tracking-page .floating-whatsapp {
  right: 14px;
  bottom: 14px;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  gap: 0;
  border-radius: 999px;
  border: 1px solid rgba(18, 140, 69, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 22px rgba(5, 24, 52, 0.09),
    0 0 0 1px rgba(18, 140, 69, 0.06) inset;
  opacity: 0.82;
}

body.is-tracking-page .floating-whatsapp:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

body.is-tracking-page .floating-whatsapp-label {
  display: none;
}

body.is-tracking-page .floating-whatsapp-icon {
  width: 40px;
  height: 40px;
  box-shadow: 0 8px 16px rgba(18, 140, 69, 0.16);
}

body.is-tracking-page .header-cta-label {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.header-meta {
  background: var(--blue);
  color: #eaf2ff;
  font-size: 0.8rem;
}

.header-meta-inner,
.header-meta-text,
.header-meta-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-meta-inner {
  justify-content: space-between;
  min-height: 42px;
}

.header-meta-links a {
  color: #eaf2ff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(11, 66, 141, 0.1);
  box-shadow: 0 10px 26px rgba(5, 24, 52, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(100%, 220px);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand strong,
.footer-title,
h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav a {
  color: #21446d;
  transition: color 0.2s ease;
  font-weight: 600;
  font-size: 0.91rem;
  position: relative;
  padding-bottom: 4px;
}

.nav a:hover {
  color: var(--red);
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transition: width 0.2s ease;
}

.nav a:hover:after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  margin-left: 8px;
  padding-inline: 18px;
}

.header-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.header-cta-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta-label {
  display: inline-block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
}

.hero,
.subhero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 24px 0 38px;
  background:
    linear-gradient(135deg, rgba(11, 66, 141, 0.15), rgba(11, 66, 141, 0.05) 44%, rgba(255, 152, 0, 0.04) 100%),
    radial-gradient(circle at 76% 24%, rgba(255, 152, 0, 0.16), transparent 20%),
    radial-gradient(circle at 60% 18%, rgba(255, 229, 0, 0.12), transparent 16%);
}

.subhero {
  padding: 72px 0 28px;
}

.utility-hero {
  padding: 54px 0 26px;
  background:
    linear-gradient(180deg, rgba(11, 66, 141, 0.06), transparent 70%),
    radial-gradient(circle at 18% 40%, rgba(234, 53, 25, 0.08), transparent 34%),
    radial-gradient(circle at 72% 26%, rgba(255, 152, 0, 0.08), transparent 28%);
  border-bottom: 1px solid rgba(11, 66, 141, 0.08);
}

.utility-hero-plain {
  background:
    linear-gradient(180deg, #f2f4f7, #eceff3 100%);
}

.hero-media-full {
  width: 100%;
  margin-bottom: 22px;
}

.utility-hero-inner {
  display: grid;
  gap: 18px;
}

.utility-surface {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(11, 66, 141, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
  box-shadow: 0 22px 48px rgba(5, 24, 52, 0.08);
}

.ref-tool-shell {
  padding: 20px;
}

.ref-portal-shell {
  padding: 0;
  border-radius: 24px;
  background: #f8f8f8;
  border: 1px solid rgba(12, 40, 84, 0.08);
  box-shadow: 0 18px 38px rgba(5, 24, 52, 0.08);
}

.utility-panel-intro {
  padding: 22px 10px 8px;
}

.ref-tool-shell-clean {
  overflow: hidden;
}

.utility-overline {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.utility-title h1 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.16;
  color: #0b2f63;
}

.utility-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 780px;
  font-size: 0.95rem;
}

.utility-tabs {
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 66, 141, 0.12);
  box-shadow: 0 12px 26px rgba(5, 24, 52, 0.06);
}

.utility-tabs-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  width: 100%;
}

.utility-tabs a {
  padding: 12px 16px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #274b74;
  border-right: 1px solid rgba(11, 66, 141, 0.12);
  background: #fff;
}

.utility-tabs a:last-child {
  border-right: 0;
}

.utility-tabs a.active {
  color: #0b428d;
  background: linear-gradient(180deg, rgba(234, 53, 25, 0.14), rgba(255, 255, 255, 0));
  box-shadow: inset 0 3px 0 var(--red);
}

.utility-tabs-portal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  border: 0;
  box-shadow: none;
}

.utility-tabs-portal a {
  min-height: 62px;
  justify-content: center;
  border-right: 0;
  border-bottom: 1px solid rgba(11, 66, 141, 0.08);
  color: #8f96a3;
  font-size: 0.88rem;
}

.utility-tabs-portal a.active {
  color: var(--red);
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--red);
}

.utility-card {
  border-radius: 20px;
  border: 1px solid rgba(11, 66, 141, 0.12);
  background: #fff;
  box-shadow: 0 18px 46px rgba(5, 24, 52, 0.08);
  padding: 22px;
}

.utility-card-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
}

.utility-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #21446d;
  font-size: 0.88rem;
}

.utility-form input,
.utility-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(11, 66, 141, 0.18);
  background: #fff;
  color: var(--text);
  outline: none;
}

.utility-form input:focus,
.utility-form select:focus {
  border-color: rgba(11, 66, 141, 0.42);
  box-shadow: 0 0 0 4px rgba(11, 66, 141, 0.12);
}

.utility-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-inline-cta {
  align-items: stretch;
}

.utility-inline input {
  flex: 1 1 auto;
}

.utility-inline-cta .btn {
  min-width: 160px;
}

.ref-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 18px;
}

.ref-tool-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
  box-shadow: 0 12px 28px rgba(5, 24, 52, 0.05);
}

.ref-tool-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0b2f63;
  font-size: 0.96rem;
}

.ref-tool-card span {
  display: block;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.88rem;
}

.ref-search-panel {
  border-radius: 22px;
  border-color: rgba(11, 66, 141, 0.1);
  box-shadow: 0 16px 36px rgba(5, 24, 52, 0.08);
}

.ref-tool-box {
  padding: 26px 24px 24px;
  background: #fff;
}

.ref-tool-copy h1 {
  margin: 0 0 8px;
  color: #16386c;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.14;
}

.ref-tool-copy p {
  margin: 0;
  color: #7b8795;
  line-height: 1.6;
  font-size: 0.95rem;
}

.ref-tool-form {
  margin-top: 18px;
}

.ref-tool-form-track {
  max-width: 820px;
}

.ref-tool-input-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 10px;
}

.ref-tool-input-group input,
.ref-tool-grid-fields input,
.ref-tool-grid-fields select {
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid #e3e6eb;
  background: #fafafa;
  padding: 0 16px;
  box-shadow: none;
}

.ref-tool-input-group input:focus,
.ref-tool-grid-fields input:focus,
.ref-tool-grid-fields select:focus {
  border-color: rgba(11, 66, 141, 0.26);
  box-shadow: 0 0 0 3px rgba(11, 66, 141, 0.08);
  background: #fff;
}

.ref-tool-input-group .btn,
.ref-tool-grid-fields .btn {
  min-height: 54px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ref-tool-grid-fields {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.95fr 0.8fr 170px;
  gap: 10px;
}

.tracking-help-note {
  margin-top: 10px;
  color: #8c97a3;
}

.tracking-demo-inline {
  color: #0b428d;
  font-weight: 700;
}

.utility-help {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.utility-help-error {
  color: #9b1f0d;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.utility-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.utility-form-grid-rates {
  grid-template-columns: 1.15fr 1.15fr 1fr 0.8fr 0.7fr;
  align-items: end;
}

.utility-submit-wrap {
  display: flex;
  align-items: flex-end;
}

.utility-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.utility-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.utility-stat {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
  box-shadow: 0 12px 28px rgba(5, 24, 52, 0.06);
}

.utility-stat-label {
  display: block;
  margin-bottom: 8px;
  color: #61758c;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.utility-stat-value {
  display: block;
  color: #0b2f63;
  font-size: 1rem;
  line-height: 1.35;
}

.utility-result-grid-single {
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

.tracking-demo-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.tracking-demo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1f6ff;
  border: 1px solid rgba(11, 66, 141, 0.12);
  color: #1b4f90;
  font-weight: 700;
  font-size: 0.86rem;
}

.tracking-empty-state {
  padding: 34px 28px;
}

.tracking-feedback-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(7, 24, 49, 0.96), rgba(10, 31, 61, 0.94)),
    #091c3b;
  box-shadow: 0 28px 80px rgba(5, 24, 52, 0.18);
  color: #eef6ff;
}

.tracking-feedback-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tracking-feedback-head h2 {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.tracking-feedback-head p {
  margin: 0;
  max-width: 640px;
  color: #d4e5fb;
}

.tracking-card-chip-alert {
  color: #8a2d00;
  background: linear-gradient(180deg, rgba(255, 232, 204, 0.98), rgba(255, 243, 224, 0.98));
}

.tracking-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tracking-feedback-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 108px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tracking-feedback-item span {
  color: #a7c4e7;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tracking-feedback-item strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.45;
}

.tracking-feedback-item-strong {
  background: linear-gradient(180deg, rgba(255, 170, 46, 0.18), rgba(255, 170, 46, 0.08));
  border-color: rgba(255, 170, 46, 0.18);
}

.tracking-feedback-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tracking-feedback-note strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
}

.tracking-feedback-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tracking-feedback-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dbeafe;
  font-size: 0.82rem;
  font-weight: 700;
}

.ref-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.1);
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.ref-result-head h2 {
  margin: 4px 0 0;
  color: #0b2f63;
  font-size: 1.08rem;
}

.utility-kicker {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.utility-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(11, 66, 141, 0.12);
}

.utility-card-head-slim {
  margin-bottom: 10px;
}

.utility-card-title {
  margin: 8px 0 0;
  font-size: 1.32rem;
  line-height: 1.22;
  color: #0b2f63;
}

.utility-empty {
  border-radius: 20px;
  border: 1px dashed rgba(11, 66, 141, 0.22);
  background: #fff;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(5, 24, 52, 0.06);
}

.utility-empty h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #0b2f63;
}

.utility-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.utility-total-card {
  background:
    linear-gradient(135deg, rgba(11, 66, 141, 0.05), rgba(255, 255, 255, 1)),
    #fff;
}

.utility-total-price {
  margin-top: 6px;
  color: #0b2f63;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.utility-total-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.utility-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.utility-meta-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(11, 66, 141, 0.1);
  background: rgba(255, 255, 255, 0.86);
}

.utility-meta-item span {
  display: block;
  margin-bottom: 8px;
  color: #61758c;
  font-size: 0.82rem;
}

.utility-meta-item strong {
  color: #0b2f63;
  font-size: 0.98rem;
}

.timeline-compact {
  gap: 14px;
}

.utility-table-head {
  margin: 0 0 14px;
}

.utility-table-head h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #0b2f63;
}

.utility-table-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.utility-table-wrap {
  border-radius: 20px;
  border: 1px solid rgba(11, 66, 141, 0.12);
  background: #fff;
  box-shadow: 0 18px 46px rgba(5, 24, 52, 0.08);
}

.utility-table-wrap .data-table th,
.utility-table-wrap .data-table td {
  border-bottom: 1px solid rgba(11, 66, 141, 0.1);
}

.utility-table-wrap .data-table th {
  color: #21446d;
  background: #f1f6ff;
  font-size: 0.78rem;
}

.utility-table-wrap .data-table td {
  color: var(--text);
}

.utility-table-wrap .data-table tbody tr:hover td {
  background: rgba(11, 66, 141, 0.03);
}

.utility-table-empty {
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

.hero-grid,
.contact-grid,
.tracking-grid,
.faq-grid,
.two-col,
.subhero-inner {
  display: grid;
  gap: 28px;
}

.hero-grid,
.subhero-inner {
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy h1,
.subhero h1 {
  margin: 12px 0 16px;
  font-size: clamp(1.95rem, 4vw, 3.7rem);
  line-height: 1.08;
  color: #0b2f63;
}

.hero-copy p,
.subhero p,
.lead,
.service-card p,
.detail-row span,
.timeline-content p,
.footer-copy,
.faq-item p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.97rem;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy-light h1,
.hero-copy-light p,
.hero-copy-light .hero-point-item,
.hero-copy-light .hero-brand-note {
  color: #f7fbff;
}

.hero-shell {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95)),
    #fff;
  box-shadow: 0 26px 64px rgba(5, 24, 52, 0.1);
  border: 1px solid rgba(11, 66, 141, 0.08);
}

.hero-shell-slider {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 42px 30px;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1832 / 859;
  min-height: 320px;
  max-height: 860px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 26px 64px rgba(5, 24, 52, 0.16);
  background: #061a38;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  filter: saturate(0.94) brightness(0.9);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s ease;
  will-change: opacity, transform, filter;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  filter: saturate(1) brightness(1);
  z-index: 3;
}

.hero-slide.is-prep-left {
  opacity: 1;
  transform: translateX(-100%);
  z-index: 2;
}

.hero-slide.is-prep-right {
  opacity: 1;
  transform: translateX(100%);
  z-index: 2;
}

.hero-slide.is-exit-right {
  opacity: 1;
  transform: translateX(100%);
  filter: saturate(0.94) brightness(0.9);
  z-index: 2;
}

.hero-slide.is-exit-left {
  opacity: 1;
  transform: translateX(-100%);
  filter: saturate(0.94) brightness(0.9);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateZ(0);
}

.hero-brand-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(11, 66, 141, 0.12);
  border-radius: 20px;
  background: rgba(242, 247, 255, 0.92);
}

.hero-brand-bar-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-brand-logo {
  width: 250px;
  max-width: 100%;
  height: auto;
}

.hero-brand-note {
  color: #395b80;
  font-size: 0.86rem;
  line-height: 1.6;
  max-width: 320px;
}

.hero-point-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.hero-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #3e5f80;
  line-height: 1.58;
  font-size: 0.94rem;
}

.hero-point-dot {
  width: 10px;
  height: 10px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  box-shadow: 0 0 0 6px rgba(255, 152, 0, 0.08);
}

.hero-utility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.home-toolbox {
  margin-top: -18px;
  position: relative;
  z-index: 5;
  border-radius: 24px;
  background: #f6f6f6;
  border: 1px solid rgba(12, 40, 84, 0.08);
  box-shadow: 0 18px 40px rgba(5, 24, 52, 0.1);
  overflow: hidden;
}

.home-toolbox-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
}

.home-toolbox-tab {
  min-height: 64px;
  border: 0;
  border-bottom: 1px solid rgba(11, 66, 141, 0.08);
  background: #fff;
  color: #8a92a0;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-toolbox-tab.is-active {
  color: var(--red);
  box-shadow: inset 0 -3px 0 var(--red);
}

.home-toolbox-panel {
  display: none;
  padding: 28px 24px 24px;
  background: #fff;
}

.home-toolbox-panel.is-active {
  display: block;
}

.home-toolbox-copy h2 {
  margin: 0 0 8px;
  color: #16386c;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.home-toolbox-copy p {
  margin: 0;
  color: #7b8795;
  line-height: 1.6;
  font-size: 0.95rem;
}

.home-toolbox-form {
  margin-top: 18px;
}

.home-toolbox-form-tracking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 10px;
  max-width: 820px;
}

.home-toolbox-form-rates {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr 170px;
  gap: 10px;
}

.home-toolbox-form input,
.home-toolbox-form select {
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #e3e6eb;
  background: #fafafa;
  color: var(--text);
  outline: none;
}

.home-toolbox-form input:focus,
.home-toolbox-form select:focus {
  border-color: rgba(11, 66, 141, 0.26);
  box-shadow: 0 0 0 3px rgba(11, 66, 141, 0.08);
  background: #fff;
}

.home-toolbox-form .btn {
  min-height: 54px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-utility-card {
  display: block;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11, 66, 141, 0.08);
  box-shadow: 0 14px 32px rgba(5, 24, 52, 0.08);
}

.hero-utility-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-utility-card strong {
  display: block;
  color: #163f7c;
  line-height: 1.45;
  font-size: 0.95rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 27, 58, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(2, 12, 28, 0.18);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    width 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #ffb11a;
  box-shadow: 0 0 0 4px rgba(255, 177, 26, 0.16);
}

.hero-dot:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.58);
}

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 152, 0, 0.42);
  background: linear-gradient(180deg, rgba(255, 152, 0, 0.18), rgba(255, 210, 106, 0.18));
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8b4700;
  font-weight: 800;
}

.hero-actions,
.inline-form,
.detail-header,
.detail-row,
.preview-row,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-actions {
  margin: 24px 0 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #0b428d, #0f5cbf);
  color: #f7fbff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(11, 66, 141, 0.34);
}

.btn-outline {
  border-color: rgba(11, 66, 141, 0.16);
  background: #fff;
  color: #163f7c;
}

.btn-danger {
  background: linear-gradient(135deg, #d92d20, #f04438);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(217, 45, 32, 0.2);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #f7fbff;
  backdrop-filter: blur(10px);
}

.btn-small {
  min-height: 36px;
  padding: 0 14px;
}

.btn-block {
  width: 100%;
}

.glass-card,
.alert-box {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel,
.tracking-form,
.detail-card,
.empty-state,
.contact-form,
.contact-list,
.faq-item,
.service-card,
.flow-card {
  padding: 24px;
}

.panel-title,
.section-heading h2,
.detail-card h2,
.empty-state h2 {
  margin: 12px 0;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.hero-panel {
  border-color: rgba(255, 152, 0, 0.2);
  background:
    linear-gradient(180deg, rgba(11, 66, 141, 0.94), rgba(7, 40, 87, 0.98)),
    rgba(8, 30, 66, 0.84);
  box-shadow:
    0 22px 56px rgba(2, 8, 20, 0.4),
    0 0 0 1px rgba(255, 152, 0, 0.06) inset;
}

.panel-copy {
  margin-top: 0;
  color: #d9e6f8;
  font-size: 0.93rem;
}

.hero-panel,
.hero-panel .panel-title,
.hero-panel .panel-copy,
.hero-panel label,
.hero-panel strong,
.hero-panel .preview-row span,
.footer,
.footer .footer-title,
.footer .footer-bottom {
  color: #f8fbff;
}

.tracking-form {
  display: grid;
  gap: 14px;
}

.tracking-form-wide {
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(11, 66, 141, 0.16);
  background: #ffffff;
  color: #13365f;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--soft-text);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(11, 66, 141, 0.68);
  box-shadow: 0 0 0 4px rgba(11, 66, 141, 0.14);
}

small {
  color: var(--soft-text);
  font-size: 0.84rem;
}

.metric-grid,
.card-grid,
.workflow-grid,
.coverage-grid {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-grid-light {
  max-width: 760px;
}

.metric-card {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.95), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(11, 66, 141, 0.08);
}

.metric-card-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--blue);
}

.metric-card-light strong,
.metric-card-light span {
  color: #f7fbff;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: #516d8c;
  font-size: 0.88rem;
}

.shipment-preview {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.preview-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-row span {
  color: #c8dcf6;
  font-size: 0.9rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
}

.hero-glow-a {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -40px;
  background: rgba(11, 66, 141, 0.56);
}

.hero-glow-b {
  width: 300px;
  height: 300px;
  right: -60px;
  bottom: 20px;
  background: rgba(255, 152, 0, 0.28);
}

.section {
  padding: 30px 0 68px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(11, 66, 141, 0.12), rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading--accent h2 {
  position: relative;
  padding-bottom: 16px;
}

.section-heading--accent h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(11, 66, 141, 0.08);
  box-shadow: 0 14px 34px rgba(9, 32, 67, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 66, 141, 0.16);
  box-shadow: 0 20px 44px rgba(9, 32, 67, 0.1);
}

.service-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 66, 141, 0.12), rgba(255, 152, 0, 0.18));
  border: 1px solid rgba(11, 66, 141, 0.1);
  margin-bottom: 16px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #0b428d;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: #123d78;
}

.service-card p {
  margin-bottom: 0;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.check-mark {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #88efab);
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.08);
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-step {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.coverage-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.coverage-pill {
  padding: 14px 12px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: #fff;
  font-size: 0.92rem;
}

.faq-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
}

.faq-item p {
  margin-bottom: 0;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-actions {
  margin-top: 22px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fa855, #128c45);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(18, 140, 69, 0.24);
}

.btn-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-whatsapp-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #ffffff;
  border: 1px solid rgba(18, 140, 69, 0.12);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 42px rgba(4, 20, 42, 0.16),
    0 0 0 6px rgba(31, 168, 85, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  animation: floatingWhatsappPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 22px 48px rgba(4, 20, 42, 0.2),
    0 0 0 8px rgba(31, 168, 85, 0.14);
}

.floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #27d367, #128c45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(18, 140, 69, 0.28);
}

.floating-whatsapp-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp-label {
  color: #165533;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding-right: 6px;
}

@keyframes floatingWhatsappPulse {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(4, 20, 42, 0.16),
      0 0 0 6px rgba(31, 168, 85, 0.12);
  }

  50% {
    box-shadow:
      0 20px 44px rgba(4, 20, 42, 0.18),
      0 0 0 10px rgba(31, 168, 85, 0.08);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 12px 0 0;
  min-height: 24px;
  color: var(--text);
  font-size: 0.9rem;
}

.tracking-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(11, 66, 141, 0.18);
  border: 1px solid rgba(11, 66, 141, 0.3);
  color: #1b4f90;
  font-weight: 700;
  font-size: 0.86rem;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 66, 141, 0.1);
}

.timeline {
  position: relative;
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 8px;
  width: 2px;
  background: rgba(11, 66, 141, 0.12);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 16px;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 6px rgba(11, 66, 141, 0.12);
}

.timeline-content strong,
.service-card h3,
.flow-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.timeline-content small {
  display: inline-block;
  margin-top: 8px;
}

.alert-box {
  padding: 18px 20px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #7a271a;
  background: linear-gradient(180deg, rgba(255, 241, 240, 0.98), rgba(255, 250, 250, 0.98));
  border: 1px solid rgba(240, 68, 56, 0.2);
  box-shadow: 0 18px 38px rgba(240, 68, 56, 0.08);
}

.empty-state {
  text-align: center;
}

.footer {
  padding: 0 0 26px;
  border-top: 0;
  background: linear-gradient(180deg, #081c3d, #041328);
}

.footer-ribbon {
  background: linear-gradient(90deg, #d90f14, #ff2f2f);
}

.footer-ribbon-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff5ef;
}

.footer-ribbon-inner strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-ribbon-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) 0.9fr 0.9fr 1fr;
  gap: 26px;
  padding-top: 34px;
}

.footer-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4040, #ffb347);
}

.footer-brand {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 170, 68, 0.14), transparent 28%),
    radial-gradient(circle at top left, rgba(61, 126, 214, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(10, 34, 74, 0.96), rgba(4, 19, 40, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 8, 22, 0.2);
}

.footer-brand::before,
.footer-brand::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer-brand::before {
  width: 180px;
  height: 180px;
  top: -90px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 172, 70, 0.22), transparent 68%);
}

.footer-brand::after {
  width: 160px;
  height: 160px;
  left: -70px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(43, 117, 212, 0.18), transparent 70%);
}

.footer-brand-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  margin: 0 0 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 86, 86, 0.22), rgba(255, 179, 71, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff2de;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 6px 8px;
  margin-bottom: 8px;
  border-radius: 14px;
}

.footer-logo {
  display: block;
  width: min(100%, 258px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.48))
    drop-shadow(0 8px 16px rgba(9, 24, 52, 0.28));
}

.footer p {
  margin: 0 0 8px;
  color: #bed0e7;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) {
  padding-top: 10px;
}

.footer-copy {
  max-width: 360px;
  margin-top: 0;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-icon-address {
  background: linear-gradient(135deg, rgba(11, 66, 141, 0.28), rgba(39, 109, 196, 0.16));
  border-color: rgba(92, 162, 255, 0.2);
  color: #8bc2ff;
}

.footer-contact-icon-phone {
  background: linear-gradient(135deg, rgba(234, 53, 25, 0.28), rgba(255, 112, 79, 0.16));
  border-color: rgba(255, 120, 96, 0.2);
  color: #ff9d89;
}

.footer-contact-icon-email {
  background: linear-gradient(135deg, rgba(255, 229, 0, 0.24), rgba(255, 152, 0, 0.16));
  border-color: rgba(255, 196, 68, 0.22);
  color: #ffd36a;
}

.footer-contact-text {
  display: block;
  color: #bed0e7;
  font-size: 0.92rem;
  line-height: 1.7;
  word-break: break-word;
}

a.footer-contact-text:hover {
  color: #ffffff;
}

.footer-brand-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4f8ff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer a {
  color: #d7e6ff;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 30px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #bed0e7;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  line-height: 1.7;
  font-size: 0.88rem;
}

.flash-stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.flash-item {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: #fff;
  color: var(--text);
}

.flash-success {
  color: #9bf0be;
  border-color: rgba(74, 222, 128, 0.22);
}

.flash-error {
  color: #ffd4d4;
  border-color: rgba(255, 107, 107, 0.22);
}

.info-card,
.admin-auth-card,
.admin-form-card,
.admin-panel-card {
  padding: 28px;
}

.branch-grid,
.admin-panel-grid {
  display: grid;
  gap: 22px;
}

.branch-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.branch-card p,
.lead-item p,
.info-card p,
.admin-note,
.empty-copy {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: #ffd45f;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-table td {
  color: var(--text);
  font-size: 0.92rem;
}

.table-link {
  color: var(--gold);
  font-weight: 700;
}

.table-link-danger {
  color: #d54a4a;
}

.table-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}

.admin-auth-section {
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
}

.admin-auth-wrap {
  display: flex;
  justify-content: center;
}

.admin-auth-card {
  width: min(520px, 100%);
}

.admin-shipment-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 253, 0.98)),
    #fff;
  border: 1px solid rgba(11, 66, 141, 0.08);
  box-shadow: 0 28px 68px rgba(5, 24, 52, 0.12);
  position: relative;
  overflow: hidden;
}

.admin-shipment-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(11, 66, 141, 0.92), rgba(35, 129, 255, 0.72), rgba(11, 66, 141, 0.92));
}

.admin-form-topbar {
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(11, 66, 141, 0.1);
}

.admin-form-intro {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-form-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.admin-highlight-item {
  position: relative;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 26px rgba(5, 24, 52, 0.06);
  overflow: hidden;
}

.admin-highlight-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(15, 92, 191, 0.1), transparent 42%);
  pointer-events: none;
}

.admin-highlight-item span {
  display: block;
  margin-bottom: 8px;
  color: #68809d;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-highlight-item strong {
  color: #0b2f63;
  font-size: 1rem;
}

.admin-form-section {
  padding: 22px;
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
  box-shadow: 0 18px 42px rgba(5, 24, 52, 0.06);
}

.admin-form-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-form-section-head h2 {
  margin: 6px 0 0;
  color: #0b2f63;
  font-size: 1.2rem;
}

.admin-form-section-head p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.admin-form-note {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(11, 66, 141, 0.09);
  background: linear-gradient(180deg, rgba(240, 247, 255, 0.92), rgba(255, 255, 255, 0.98));
  color: #33506f;
  line-height: 1.65;
  font-size: 0.9rem;
}

.admin-form-note strong {
  color: #0b2f63;
}

.admin-resi-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.admin-resi-preview {
  justify-self: flex-start;
}

.admin-resi-preview.is-disabled {
  opacity: 0.58;
  pointer-events: none;
}

.admin-resi-direct-link {
  justify-self: flex-start;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.admin-resi-direct-link.is-hidden {
  display: none;
}

.admin-resi-table-link {
  display: inline-flex;
  align-items: center;
}

.admin-tracking-builder {
  display: grid;
  gap: 16px;
}

.admin-tracking-builder-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-tracking-builder-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-tracking-builder-head p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.admin-tracking-flow {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.admin-tracking-flow > span {
  display: block;
  margin-bottom: 10px;
  color: #4f6987;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-tracking-flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tracking-flow-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 66, 141, 0.06);
  border: 1px solid rgba(11, 66, 141, 0.08);
  color: #204675;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.admin-tracking-specials {
  display: grid;
  gap: 10px;
}

.admin-tracking-specials > span {
  color: #4f6987;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-tracking-special-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tracking-list {
  display: grid;
  gap: 14px;
}

.admin-tracking-item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(247, 250, 254, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 30px rgba(5, 24, 52, 0.05);
}

.admin-tracking-item-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11, 66, 141, 0.08);
}

.admin-tracking-item-bar strong {
  color: #0b2f63;
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-tracking-item-note {
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px dashed rgba(11, 66, 141, 0.16);
  background: rgba(11, 66, 141, 0.03);
}

.admin-tracking-item-note span {
  display: block;
  margin-bottom: 6px;
  color: #32527e;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-tracking-item-note p {
  margin: 0;
  color: #607b97;
  line-height: 1.6;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.admin-shipment-form label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1b426d;
  line-height: 1.45;
}

.admin-shipment-form input,
.admin-shipment-form textarea,
.admin-shipment-form select {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(11, 66, 141, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.98));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 10px 24px rgba(5, 24, 52, 0.04);
}

.admin-shipment-form textarea {
  min-height: 108px;
  resize: vertical;
}

.admin-shipment-form input:focus,
.admin-shipment-form textarea:focus,
.admin-shipment-form select:focus {
  border-color: rgba(11, 66, 141, 0.44);
  box-shadow: 0 0 0 4px rgba(11, 66, 141, 0.1), 0 14px 28px rgba(5, 24, 52, 0.07);
}

.admin-shipment-form input[readonly] {
  background: linear-gradient(180deg, rgba(240, 246, 252, 0.98), rgba(235, 242, 249, 0.98));
  color: #496684;
  border-style: dashed;
}

.admin-shipment-form small {
  display: inline-block;
  margin-top: 8px;
  line-height: 1.5;
  color: #6c8098;
  overflow-wrap: anywhere;
}

.admin-shipment-form .form-grid {
  gap: 16px 18px;
}

.admin-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(11, 66, 141, 0.09);
}

.admin-form-footer-note {
  margin: 0;
  max-width: 620px;
  color: #5d7690;
  line-height: 1.65;
  font-size: 0.92rem;
}

.tracking-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 20px;
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(10, 42, 91, 0.98), rgba(8, 28, 61, 0.98)),
    #0b2f63;
  box-shadow: 0 28px 72px rgba(5, 24, 52, 0.2);
  position: relative;
  overflow: hidden;
}

.tracking-portal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tracking-portal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 66, 141, 0.1);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(244, 248, 252, 0.98));
  color: #284c79;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(5, 24, 52, 0.04);
}

.tracking-dashboard-shell {
  position: relative;
}

.tracking-dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(11, 66, 141, 0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 170, 46, 0.08), transparent 26%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  pointer-events: none;
  opacity: 0.65;
}

.tracking-dashboard-panel {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(7, 24, 49, 0.96), rgba(10, 31, 61, 0.94)),
    #091c3b;
  box-shadow: 0 28px 80px rgba(5, 24, 52, 0.2);
  overflow: hidden;
}

.tracking-dashboard-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(255, 170, 46, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(54, 123, 214, 0.16), transparent 26%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  pointer-events: none;
  opacity: 0.7;
}

.tracking-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 170, 46, 0.16), transparent 32%);
  pointer-events: none;
}

.tracking-hero-copy h2 {
  margin: 8px 0 10px;
  color: #f6fbff;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.16;
}

.tracking-hero-copy p {
  max-width: 640px;
  margin: 0;
  color: #d4e5fb;
}

.tracking-hero-resi {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tracking-hero-routebar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tracking-hero-routeitem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 86px;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tracking-hero-routeitem span,
.tracking-hero-routeitem strong {
  display: block;
}

.tracking-hero-routeitem span {
  color: #cfe1f7;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tracking-hero-routeitem strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.tracking-hero-side {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.tracking-hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tracking-hero-meta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  padding: 14px 14px 13px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tracking-hero-meta-card span,
.tracking-hero-meta-card strong {
  display: block;
}

.tracking-hero-meta-card span {
  color: #cfe1f7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tracking-hero-meta-card strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.35;
}

.tracking-hero-meta-card-strong {
  background: linear-gradient(135deg, rgba(255, 170, 46, 0.22), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 196, 88, 0.18);
}

.tracking-hero-badge {
  justify-self: flex-end;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.tracking-hero-note {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 6px;
}

.tracking-hero-note strong,
.tracking-hero-note span {
  display: block;
}

.tracking-hero-note strong {
  color: #ffffff;
  margin-bottom: 6px;
}

.tracking-hero-note span {
  color: #c9dcf5;
  line-height: 1.6;
  font-size: 0.92rem;
}

.tracking-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.tracking-summary-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
  box-shadow: 0 12px 28px rgba(5, 24, 52, 0.05);
  min-height: 124px;
  overflow: hidden;
}

.tracking-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 66, 141, 0.035), transparent 42%);
  pointer-events: none;
}

.tracking-summary-label {
  display: block;
  margin-bottom: 8px;
  color: #68809d;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tracking-summary-value {
  display: block;
  color: #0b2f63;
  font-size: 1.02rem;
  line-height: 1.45;
  min-height: 2.9em;
}

.tracking-summary-meta {
  display: block;
  margin-top: 10px;
  color: #6b8098;
  font-size: 0.86rem;
  line-height: 1.5;
}

.tracking-summary-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98)),
    #fff;
  border-color: rgba(11, 66, 141, 0.12);
  box-shadow: 0 16px 34px rgba(5, 24, 52, 0.08);
}

.tracking-card-head {
  align-items: center;
}

.tracking-card-intro {
  margin: 10px 0 0;
  max-width: 40rem;
  color: #617992;
  font-size: 0.92rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.tracking-card-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(11, 66, 141, 0.08);
  border: 1px solid rgba(11, 66, 141, 0.12);
  color: #0b428d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tracking-detail-card,
.tracking-timeline-card,
.tracking-cost-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 252, 0.99));
  border: 1px solid rgba(11, 66, 141, 0.08);
  box-shadow: 0 20px 42px rgba(5, 24, 52, 0.08);
  position: relative;
  overflow: hidden;
}

.tracking-detail-card::before,
.tracking-timeline-card::before,
.tracking-cost-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 66, 141, 0.035), transparent 28%);
  pointer-events: none;
}

.tracking-result-shell {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.tracking-side-stack {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  align-self: stretch;
  min-height: 100%;
}

.tracking-detail-card,
.tracking-timeline-card {
  height: 100%;
}

.tracking-timeline-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.tracking-cost-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 247, 252, 0.99)),
    #fff;
}

@media (min-width: 1024px) {
  .tracking-side-stack {
    position: sticky;
    top: 112px;
  }
}

.tracking-cost-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.tracking-cost-item {
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(244, 248, 252, 0.98));
  box-shadow: 0 8px 22px rgba(5, 24, 52, 0.04);
}

.tracking-cost-label {
  display: block;
  margin-bottom: 8px;
  color: #69809a;
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tracking-cost-value {
  display: block;
  color: #0b2f63;
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tracking-cost-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 42, 91, 0.98), rgba(12, 74, 145, 0.94));
  color: #ffffff;
  box-shadow: 0 20px 36px rgba(5, 24, 52, 0.14);
}

.tracking-cost-total span {
  color: rgba(222, 235, 252, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.tracking-cost-total strong {
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.01em;
  text-align: right;
  overflow-wrap: anywhere;
}

.tracking-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.tracking-info-item {
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(11, 66, 141, 0.08);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(243, 247, 252, 0.98));
  box-shadow: 0 8px 20px rgba(5, 24, 52, 0.04);
}

.tracking-info-item span,
.tracking-info-item strong {
  display: block;
}

.tracking-info-item span {
  color: #69809a;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tracking-info-item strong {
  margin-top: 8px;
  color: #17365f;
  line-height: 1.55;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tracking-info-item-wide {
  grid-column: 1 / -1;
}

.tracking-timeline-card .timeline {
  margin-top: 0;
  gap: 0;
}

.tracking-timeline-card .timeline:before {
  display: none;
}

.tracking-timeline-card .timeline-item {
  display: grid;
  grid-template-columns: 88px 44px minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  padding: 0 0 16px;
  border-bottom: 0;
}

.tracking-timeline-resi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 16px;
  margin-bottom: 14px;
  border-top: 1px solid rgba(11, 66, 141, 0.08);
  border-bottom: 1px solid rgba(11, 66, 141, 0.08);
}

.tracking-timeline-resi-row span {
  color: #627b97;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.tracking-timeline-resi-row strong {
  color: #092a57;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tracking-timeline-scroll {
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 66, 141, 0.28) rgba(11, 66, 141, 0.06);
}

.tracking-timeline-scroll::-webkit-scrollbar {
  width: 8px;
}

.tracking-timeline-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(11, 66, 141, 0.06);
}

.tracking-timeline-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(11, 66, 141, 0.28);
}

.tracking-timeline-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 10px;
  color: #788ca4;
}

.tracking-timeline-time strong {
  margin: 0;
  color: #536f8f;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.tracking-timeline-time span {
  color: #8ba0b8;
  font-size: 0.86rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.tracking-timeline-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tracking-timeline-line {
  flex: 1;
  width: 3px;
  min-height: 54px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(48, 190, 180, 0.55), rgba(48, 190, 180, 0.18));
}

.tracking-event-card {
  padding: 10px 0 8px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(11, 66, 141, 0.08);
  box-shadow: none;
}

.tracking-timeline-item-active .tracking-event-card {
  border-bottom-color: rgba(48, 190, 180, 0.2);
}

.tracking-event-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.tracking-event-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tracking-event-head strong {
  flex: 1 1 220px;
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.tracking-event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  flex-wrap: wrap;
}

.tracking-event-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(11, 66, 141, 0.08);
  border: 1px solid rgba(11, 66, 141, 0.1);
  color: #1b4f90;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tracking-event-chip-status {
  border: 0;
  font-weight: 800;
}

.tracking-event-chip-created {
  background: linear-gradient(135deg, rgba(11, 66, 141, 0.12), rgba(49, 116, 199, 0.08));
  color: #0b428d;
}

.tracking-event-chip-process {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.18), rgba(255, 209, 102, 0.14));
  color: #a86500;
}

.tracking-event-chip-transit {
  background: linear-gradient(135deg, rgba(14, 92, 191, 0.16), rgba(76, 146, 232, 0.12));
  color: #1559af;
}

.tracking-event-chip-rider {
  background: linear-gradient(135deg, rgba(48, 190, 180, 0.18), rgba(129, 222, 214, 0.14));
  color: #0f857d;
}

.tracking-event-chip-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(134, 239, 172, 0.14));
  color: #17803d;
}

.tracking-event-current {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(134, 239, 172, 0.16));
  border: 1px solid rgba(34, 197, 94, 0.16);
  color: #17803d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tracking-event-location {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin-bottom: 8px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.tracking-event-location span {
  color: #7e91a9;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
}

.tracking-event-location strong {
  margin: 0;
  color: #0b2f63;
  font-size: 0.98rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.timeline-content p {
  margin: 0;
  color: #4e6785;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tracking-timeline-card .timeline-item:first-child {
  padding-top: 4px;
}

.tracking-timeline-card .timeline-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tracking-timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 12px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(48, 190, 180, 0.12);
}

.tracking-timeline-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tracking-timeline-icon-created {
  background: linear-gradient(135deg, rgba(11, 66, 141, 0.16), rgba(49, 116, 199, 0.12));
  color: #0b428d;
}

.tracking-timeline-icon-process {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 209, 102, 0.18));
  color: #b86c00;
}

.tracking-timeline-icon-transit {
  background: linear-gradient(135deg, rgba(14, 92, 191, 0.18), rgba(76, 146, 232, 0.14));
  color: #1559af;
}

.tracking-timeline-icon-rider {
  background: linear-gradient(135deg, rgba(48, 190, 180, 0.22), rgba(129, 222, 214, 0.16));
  color: #0f857d;
}

.tracking-timeline-icon-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(134, 239, 172, 0.16));
  color: #17803d;
}

.admin-panel-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.section-inline,
.lead-head,
.admin-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.lead-list {
  display: grid;
  gap: 16px;
}

.lead-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.lead-head {
  margin-bottom: 12px;
}

.lead-head small {
  color: var(--muted);
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.table-actions form {
  margin: 0;
}

.table-actions-separator {
  color: var(--muted);
  font-weight: 600;
}

.single-column {
  grid-template-columns: 1fr;
}

@media (max-width: 980px) {
  .topbar-inner {
    min-height: 72px;
  }

  .brand-logo {
    height: 46px;
    max-width: 190px;
  }

  .hero-slider {
    min-height: 260px;
  }

  .header-meta-inner,
  .header-meta-text,
  .header-meta-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-grid,
  .subhero-inner,
  .tracking-grid,
  .contact-grid,
  .faq-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .utility-result-grid {
    grid-template-columns: 1fr;
  }

  .utility-summary-grid,
  .utility-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-form-highlight,
  .tracking-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-hero-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-hero-routebar {
    grid-template-columns: 1fr;
  }

  .tracking-cost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-info-grid {
    grid-template-columns: 1fr;
  }

  .utility-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .utility-form-grid-rates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ref-tool-grid {
    grid-template-columns: 1fr;
  }

  .ref-tool-input-group,
  .ref-tool-grid-fields {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .workflow-grid,
  .branch-grid,
  .admin-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-hero-card {
    grid-template-columns: 1fr;
  }

  .tracking-hero-badge {
    justify-self: flex-start;
  }

  .hero-utility {
    grid-template-columns: 1fr;
  }

  .home-toolbox-form-rates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .header-cta {
    order: 2;
    margin-left: auto;
    margin-right: 8px;
    padding-inline: 14px;
  }

  .menu-toggle {
    order: 3;
  }

  .nav {
    order: 4;
  }

  .footer-ribbon-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .tracking-form-wide {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .header-meta {
    display: none;
  }

  .topbar-inner {
    min-height: 62px;
    gap: 8px;
  }

  .brand-logo {
    height: 36px;
    max-width: 152px;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 56px;
    padding: 6px;
    gap: 0;
  }

  .floating-whatsapp-label {
    display: none;
  }

  .floating-whatsapp-icon {
    width: 44px;
    height: 44px;
  }


  .header-cta {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-right: 0;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(11, 66, 141, 0.14);
  }

  .header-cta-label {
    display: none;
  }

  .hero-slider {
    aspect-ratio: 4 / 3;
    min-height: 200px;
    max-height: 300px;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 40px rgba(5, 24, 52, 0.18);
  }

  .hero-dots {
    gap: 8px;
    padding: 8px 12px;
    bottom: 10px;
  }

  .hero-dot.is-active {
    width: 22px;
  }

  .utility-surface {
    padding: 14px;
    border-radius: 20px;
  }

  .utility-tabs-wide {
    grid-template-columns: 1fr;
  }

  .utility-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-topbar,
  .admin-form-section-head {
    flex-direction: column;
  }

  .admin-tracking-builder-head {
    flex-direction: column;
  }

  .admin-tracking-builder-actions {
    width: 100%;
    justify-content: stretch;
  }

  .admin-tracking-builder-actions .btn,
  .admin-tracking-special-buttons .btn {
    width: 100%;
  }

  .admin-tracking-flow-tags span,
  .admin-tracking-special-buttons .btn {
    min-height: 40px;
  }

  .admin-form-highlight,
  .tracking-summary-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-section {
    padding: 18px;
  }

  .tracking-cost-grid {
    grid-template-columns: 1fr;
  }

  .tracking-hero-meta-grid {
    grid-template-columns: 1fr;
  }

  .tracking-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-feedback-grid {
    grid-template-columns: 1fr;
  }

  .tracking-result-shell {
    align-items: start;
  }

  .tracking-hero-routebar {
    grid-template-columns: 1fr;
  }

  .admin-resi-group {
    grid-template-columns: 1fr;
  }

  .admin-tracking-item {
    padding: 16px;
    border-radius: 18px;
  }

  .admin-tracking-item-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-form-footer .btn {
    width: 100%;
  }

  .tracking-hero-card {
    gap: 14px;
    padding: 16px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .tracking-hero-routeitem,
  .tracking-hero-meta-card,
  .tracking-summary-card {
    min-height: 0;
  }

  .tracking-feedback-card {
    padding: 16px 14px;
    border-radius: 20px;
  }

  .tracking-feedback-head {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .tracking-feedback-item {
    min-height: 0;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .tracking-feedback-note {
    padding: 14px;
    border-radius: 16px;
  }

  .tracking-feedback-tag {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .tracking-hero-copy h2 {
    font-size: 1.2rem;
    margin: 6px 0 8px;
  }

  .tracking-hero-note {
    padding: 12px;
    gap: 5px;
    border-radius: 16px;
  }

  .tracking-hero-routeitem,
  .tracking-hero-meta-card {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .tracking-hero-routeitem strong,
  .tracking-hero-meta-card strong {
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .tracking-hero-resi {
    min-height: 42px;
    width: 100%;
    justify-content: center;
    font-size: 0.94rem;
    letter-spacing: 0.03em;
    margin-top: 14px;
    border-radius: 14px;
    padding: 0 14px;
  }

  .tracking-card-head {
    align-items: flex-start;
  }

  .tracking-card-chip {
    width: 100%;
    justify-content: center;
  }

  .tracking-cost-total,
  .tracking-detail-card .detail-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tracking-detail-card .detail-row strong {
    text-align: left;
  }

  .tracking-cost-total strong,
  .tracking-timeline-resi-row strong {
    text-align: left;
  }

  .tracking-dashboard-panel {
    padding: 12px;
    border-radius: 22px;
  }

  .tracking-summary-card {
    min-height: 0;
    padding: 12px;
    border-radius: 14px;
  }

  .tracking-summary-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tracking-summary-value {
    min-height: 0;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .tracking-summary-meta,
  .tracking-card-intro {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .tracking-cost-item,
  .tracking-info-item {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .tracking-info-grid,
  .tracking-cost-grid {
    gap: 10px;
  }

  .tracking-info-item strong,
  .tracking-cost-value {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .tracking-cost-total {
    gap: 8px;
    margin-top: 12px;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .tracking-cost-total strong {
    font-size: 1.05rem;
  }

  .tracking-timeline-card .timeline-item {
    gap: 10px;
    grid-template-columns: 64px 20px minmax(0, 1fr);
    padding: 0 0 12px;
  }

  .tracking-event-card {
    padding: 6px 0 6px;
  }

  .tracking-timeline-scroll {
    max-height: none;
    min-height: auto;
    flex: initial;
    overflow: visible;
    padding-right: 0;
  }

  .tracking-timeline-resi-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0 12px;
    margin-bottom: 10px;
  }

  .tracking-timeline-resi-row strong,
  .tracking-event-head strong {
    font-size: 0.88rem;
  }

  .tracking-timeline-time {
    padding-top: 6px;
  }

  .tracking-timeline-time strong {
    font-size: 0.78rem;
  }

  .tracking-timeline-time span {
    font-size: 0.7rem;
  }

  .tracking-event-chip,
  .tracking-event-current {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .tracking-event-location {
    margin-bottom: 5px;
  }

  .tracking-event-location strong,
  .timeline-content p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .tracking-timeline-icon {
    width: 16px;
    height: 16px;
    margin-top: 10px;
    box-shadow: 0 0 0 3px rgba(48, 190, 180, 0.12);
  }

  .tracking-timeline-line {
    width: 3px;
    min-height: 44px;
    margin-top: 8px;
  }

  .tracking-timeline-icon svg {
    width: 9px;
    height: 9px;
  }

  .tracking-event-topline {
    gap: 8px;
    margin-bottom: 8px;
  }

  .tracking-event-head {
    align-items: flex-start;
  }

  .tracking-event-chip {
    min-height: 28px;
    font-size: 0.72rem;
  }

  .tracking-event-meta {
    margin: 8px 0 10px;
  }

  .tracking-event-location {
    margin-bottom: 6px;
  }

  .tracking-event-location strong {
    font-size: 0.94rem;
  }

  .tracking-event-current {
    font-size: 0.68rem;
  }

  .table-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .table-actions form,
  .table-actions .btn,
  .table-actions .table-link {
    width: 100%;
  }

  .table-actions .table-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(11, 66, 141, 0.08);
  }

  .table-actions .table-link-button {
    text-align: center;
  }

  .table-actions-separator {
    display: none;
  }


  .ref-tool-shell {
    padding: 14px;
  }

  .home-toolbox {
    margin-top: 0;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(5, 24, 52, 0.08);
  }

  .home-toolbox-panel {
    padding: 18px 14px 16px;
  }

  .home-toolbox-tab {
    min-height: 54px;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  .home-toolbox-copy h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .home-toolbox-copy p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .home-toolbox-form-tracking,
  .home-toolbox-form-rates {
    grid-template-columns: 1fr;
  }

  .home-toolbox-form {
    margin-top: 14px;
  }

  .home-toolbox-form input,
  .home-toolbox-form select,
  .home-toolbox-form .btn {
    min-height: 48px;
    border-radius: 12px;
  }

  .ref-result-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-summary-grid,
  .utility-meta-grid,
  .utility-form-grid-rates {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:not(.footer-brand) {
    padding-top: 0;
  }

  .footer-brand {
    padding: 20px 18px;
  }

  .footer-logo {
    width: min(100%, 206px);
  }


  .utility-inline-cta {
    flex-direction: column;
  }

  .utility-inline-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(11, 66, 141, 0.12);
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
    box-shadow: 0 8px 18px rgba(8, 30, 64, 0.08);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.99));
    border: 1px solid rgba(11, 66, 141, 0.1);
    box-shadow: 0 14px 28px rgba(5, 24, 52, 0.1);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(11, 66, 141, 0.06);
    color: #1b456f;
    font-size: 0.9rem;
  }

  .nav a:hover {
    background: linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 255, 255, 1));
    color: var(--red);
  }

  .nav a:after {
    display: none;
  }

  .metric-grid,
  .card-grid,
  .workflow-grid,
  .coverage-grid,
  .footer-grid,
  .form-grid,
  .branch-grid,
  .admin-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4px 0 20px;
  }

  .hero-media-full {
    margin-bottom: 6px;
  }

  .hero-slide img {
    object-fit: cover;
    object-position: center center;
  }

  .hero-brand-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo,
  .hero-brand-logo {
    width: 190px;
  }

  .footer-brand {
    padding: 18px;
  }

  .footer-logo-panel {
    justify-content: center;
    padding: 12px 14px;
  }

  .footer-logo-link {
    justify-content: center;
  }

  .footer-logo {
    width: min(100%, 230px);
  }

  .service-card {
    border-radius: 22px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }


  .hero-point-item {
    align-items: flex-start;
  }

  .inline-form,
  .detail-header,
  .detail-row,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    margin-top: 24px;
    padding: 18px 0 4px;
  }
}
